using DS.Module.Core; using DS.Module.Core.Data; using SqlSugar; namespace DS.WMS.Core.TaskPlat.Entity { /// /// 任务账单费用明细 /// [SugarTable("task_bill_fee_detail", "任务账单费用明细")] public class TaskBillFeeDetail : BaseModelV2 { /// /// 任务主键ID /// [SugarColumn(ColumnDescription = "任务主键ID", IsNullable = false)] public long TASK_PKID { get; set; } /// /// 顺序号 /// [SugarColumn(ColumnDescription = "顺序号", IsNullable = true)] public int? SORT_NO { get; set; } /// /// 费用代码 /// [SugarColumn(ColumnDescription = "费用代码", IsNullable = true, Length = 64)] public string? FEE_CODE { get; set; } /// /// 费用名称 /// [SugarColumn(ColumnDescription = "费用名称", IsNullable = true, Length = 100)] public string? FEE_NAME { get; set; } /// /// 费用金额 /// [SugarColumn(ColumnDescription = "费用金额", IsNullable = true, Length = 12)] public decimal? AMOUNT { get; set; } /// /// 币制 /// [SugarColumn(ColumnDescription = "币制", IsNullable = true, Length = 100)] public string? CURRENCY { get; set; } /// /// S20 /// [SugarColumn(ColumnDescription = "S20", IsNullable = true)] public int? S20 { get; set; } /// /// S40 /// [SugarColumn(ColumnDescription = "S40", IsNullable = true)] public int? S40 { get; set; } /// /// S45 /// [SugarColumn(ColumnDescription = "S45", IsNullable = true)] public int? S45 { get; set; } /// /// 箱型 /// [SugarColumn(ColumnDescription = "箱型", IsNullable = true, Length = 500)] public string? CTNALL { get; set; } /// /// 数量 /// [SugarColumn(ColumnDescription = "数量", IsNullable = true)] public int? QTY { get; set; } /// /// 单位 /// [SugarColumn(ColumnDescription = "单位", IsNullable = true, Length = 255)] public string? UNIT { get; set; } /// /// 税率类型 /// [SugarColumn(ColumnDescription = "税率类型", IsNullable = true, Length = 255)] public string? TAX_TYPE { get; set; } /// /// 税率 /// [SugarColumn(ColumnDescription = "税率", IsNullable = true, Length = 10)] public decimal? RATE { get; set; } /// /// 合计金额 /// [SugarColumn(ColumnDescription = "合计金额", IsNullable = true, Length = 10)] public decimal? TOTAL_AMOUNT { get; set; } /// /// 是否东胜接收 1-是 0-否 /// [SugarColumn(ColumnDescription = "是否东胜接收 1-是 0-否", IsNullable = true)] public int? IS_DONGSHENG { get; set; } /// /// 主单号 /// [SugarColumn(ColumnDescription = "主单号", IsNullable = true, Length = 255)] public string? MBL_NO { get; set; } /// /// 是否合计项 /// [SugarColumn(ColumnDescription = "是否合计项", IsNullable = true)] public int? IS_TOTAL { get; set; } } }