using MiniExcelLibs.Attributes; namespace DS.WMS.Core.Fee.Dtos { /// /// 费用模板导入模型 /// public class FeeCustTemplateModel { /// /// 状态 /// [ExcelColumnName("状态")] public string? StatusText { get; set; } /// /// 费用名称 /// [ExcelColumnName("费用名称")] public string? FeeName { get; set; } /// /// 船公司 /// [ExcelColumnName("船公司")] public string? CarrierName { get; set; } /// /// 起运港 /// [ExcelColumnName("起运港")] public string? POL { get; set; } /// /// 目的港 /// [ExcelColumnName("目的港")] public string? POD { get; set; } /// /// 航线 /// [ExcelColumnName("航线")] public string? LaneName { get; set; } /// /// 付费方式 /// [ExcelColumnName("付费方式")] public string? PaymentType { get; set; } /// /// 业务来源代码 /// [ExcelColumnName("业务来源代码")] public string? SourceCode { get; set; } /// /// 20GP /// [ExcelColumnName("20GP")] public int? GP20 { get; set; } /// /// 40GP /// [ExcelColumnName("40GP")] public int? GP40 { get; set; } /// /// 40HQ /// [ExcelColumnName("40HQ")] public int? HQ40 { get; set; } /// /// 单票 /// [ExcelColumnName("单票")] public int? UnitPrice { get; set; } /// /// 币种 /// [ExcelColumnName("币种")] public string? Currency { get; set; } /// /// 应收对象 /// [ExcelColumnName("应收对象")] public string? CustomerName { get; set; } /// /// 有效期 /// [ExcelColumnName("有效期")] public DateTime? StartTime { get; set; } /// /// 失效期 /// [ExcelColumnName("失效期")] public DateTime? EndTime { get; set; } } }