You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
711 B
C#
29 lines
711 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Myshipping.Application.Service.ExpressDelivery.Dto.SF
|
|
{
|
|
public class ReceiveSfFeeDto
|
|
{
|
|
public string content { get; set; }
|
|
}
|
|
public class ContentModel
|
|
{
|
|
public string orderNo { get; set; }
|
|
public string waybillNo { get; set; }
|
|
public string meterageWeightQty { get; set; }
|
|
public List<Fee> feeList { get; set; }
|
|
|
|
}
|
|
|
|
|
|
public class Fee
|
|
{
|
|
public decimal feeAmt { get; set; }
|
|
public string settlementTypeCode { get; set; }
|
|
public string feeTypeCode { get; set; }
|
|
public string customerAcctCode { get; set; }
|
|
public string waybillNo { get; set; }
|
|
|
|
}
|
|
}
|