using DS.Module.Core; using DS.Module.Core.Data; using SqlSugar; namespace DS.WMS.Core.TaskPlat.Entity { /// /// 任务截单回执箱明细 /// [SugarTable("task_si_submitted_ctn", "任务截单回执箱明细")] public class TaskSiSubmittedCtn : BaseModelV2 { /// /// 任务主键ID /// [SugarColumn(ColumnDescription = "任务主键ID", IsNullable = false)] public long P_PKID { get; set; } /// /// 箱型代码 /// [SugarColumn(ColumnDescription = "箱型代码", IsNullable = true, Length = 20)] public string? CTNCODE { get; set; } /// /// 箱型名称 /// [SugarColumn(ColumnDescription = "箱型名称", IsNullable = true, Length = 10)] public string? CTNALL { get; set; } /// /// 箱号 /// [SugarColumn(ColumnDescription = "箱号", IsNullable = true, Length = 30)] public string? CNTRNO { get; set; } /// /// 箱封号 /// [SugarColumn(ColumnDescription = "箱封号", IsNullable = true, Length = 20)] public string? SEALNO { get; set; } /// /// 件数 /// [SugarColumn(ColumnDescription = "件数", IsNullable = true)] public int? PKGS { get; set; } /// /// 包装 /// [SugarColumn(ColumnDescription = "包装", IsNullable = true, Length = 20)] public string? KINDPKGS { get; set; } /// /// 毛重 /// [SugarColumn(ColumnDescription = "毛重", IsNullable = true, Length = 18)] public decimal? KGS { get; set; } /// /// 尺码 /// [SugarColumn(ColumnDescription = "尺码", IsNullable = true, Length = 18)] public decimal? CBM { get; set; } /// /// 称重方式 /// [SugarColumn(ColumnDescription = "称重方式", IsNullable = true, Length = 30)] public string? WEIGHTYPE { get; set; } /// /// 称重重量 /// [SugarColumn(ColumnDescription = "称重重量", IsNullable = true, Length = 18)] public decimal? WEIGHKGS { get; set; } } }