using DS.Module.Core; using DS.Module.Core.Data; using SqlSugar; namespace DS.WMS.Core.TaskPlat.Entity { /// /// 派车箱信息 /// [SugarTable("task_truck_ctn", "派车箱信息")] public class TaskTruckCtn : BaseModelV2 { /// /// 派车任务主键 /// [SugarColumn(ColumnDescription = "派车任务主键", IsNullable = false)] public long P_ID { 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)] public int? CTNNUM { get; set; } /// /// TEU /// [SugarColumn(ColumnDescription = "TEU", IsNullable = true)] public int? TEU { 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 = 18)] public decimal? TAREWEIGHT { get; set; } /// /// 箱状态 /// [SugarColumn(ColumnDescription = "箱状态", IsNullable = true, Length = 10)] public string? CTNSTATUS { get; set; } /// /// 称重方式 /// [SugarColumn(ColumnDescription = "称重方式", IsNullable = true, Length = 30)] public string? WEIGHTYPE { get; set; } /// /// 称重重量 /// [SugarColumn(ColumnDescription = "称重重量", IsNullable = true, Length = 18)] public decimal? WEIGHKGS { get; set; } /// /// 称重联系人 /// [SugarColumn(ColumnDescription = "称重联系人", IsNullable = true, Length = 30)] public string? WEIGHATTN { get; set; } /// /// VGM联系公司 /// [SugarColumn(ColumnDescription = "VGM联系公司", IsNullable = true, Length = 100)] public string? VGMCONNCOM { get; set; } /// /// VGM联系电话 /// [SugarColumn(ColumnDescription = "VGM联系电话", IsNullable = true, Length = 20)] public string? WEIGHTEL { get; set; } /// /// 称重日期 /// [SugarColumn(ColumnDescription = "称重日期", IsNullable = true, Length = 20)] public string? WEIGHDATE { get; set; } /// /// VGM地址 /// [SugarColumn(ColumnDescription = "VGM地址", IsNullable = true, Length = 100)] public string? VGMADDR { get; set; } /// /// VGM邮箱 /// [SugarColumn(ColumnDescription = "VGM邮箱", IsNullable = true, Length = 60)] public string? VGMEMAIL { get; set; } /// /// 车牌号 /// [SugarColumn(ColumnDescription = "车牌号", IsNullable = true, Length = 30)] public string? CarNumber { get; set; } /// /// 司机 /// [SugarColumn(ColumnDescription = "司机", IsNullable = true, Length = 30)] public string? CarDriver { get; set; } /// /// 司机电话 /// [SugarColumn(ColumnDescription = "司机电话", IsNullable = true, Length = 30)] public string? CarDriverTel { get; set; } /// /// 备注 /// [SugarColumn(ColumnDescription = "备注", IsNullable = true, Length = 100)] public string? REMARK { get; set; } } }