using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Myshipping.Application { /// /// 航次账单费用 /// public class TaskInvoiceBillFeeDto { /// /// 主键 /// public string PKId { get; set; } /// /// 任务主键 /// public string TaskPKId { get; set; } /// /// 主单号 /// public string MBLNo { 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 int S20 { get; set; } /// /// /// public int S40 { get; set; } /// /// /// public int S45 { get; set; } } }