using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Myshipping.Application { /// /// /// public class TaskPerBillFeeDto { /// /// 主键 /// public string PKId { get; set; } /// /// 任务主键 /// public string TaskPKId { get; set; } /// /// 费用代码 /// public string FeeCode { get; set; } /// /// 费用名称 /// public string FeeName { get; set; } /// /// 费用金额 /// public decimal Amount { get; set; } /// /// 币制 /// public string Currency { get; set; } /// /// 顺序号 /// public int SortNo { get; set; } /// /// 集装箱型 /// public string CTNALL { get; set; } /// /// 数量 /// public int Qty { get; set; } /// /// 单位 /// public string Unit { get; set; } /// /// 税率类型 /// public string Tax { get; set; } /// /// 税率 /// public decimal? Rate { get; set; } /// /// 费用金额(美金) /// public decimal AmountUSD { get; set; } } }