using DS.Module.Core; using DS.Module.Core.Data; using SqlSugar; namespace DS.WMS.Core.TaskPlat.Entity { /// /// 任务预甩货明细 /// [SugarTable("task_rolling_nomination_detail", "任务预甩货明细")] public class TaskRollingNominationDetail : BaseModel { /// /// 预甩船主键 /// [SugarColumn(ColumnDescription = "预甩船主键", IsNullable = false ) ] public long NomShipId { get; set; } /// /// 父主键 /// [SugarColumn(ColumnDescription = "父主键", IsNullable = false ) ] public long NomId { get; set; } /// /// 预甩状态描述 /// [SugarColumn(ColumnDescription = "预甩状态描述", IsNullable = true , Length = 100 ) ] public string? NomStatusNote { get; set; } /// /// 委托客户ID /// [SugarColumn(ColumnDescription = "委托客户ID", IsNullable = true ) ] public long? Customerid { get; set; } /// /// 委托单位名称 /// [SugarColumn(ColumnDescription = "委托单位名称", IsNullable = true , Length = 100 ) ] public string? Customername { get; set; } /// /// 订舱ID /// [SugarColumn(ColumnDescription = "订舱ID", IsNullable = true ) ] public long? BookingId { get; set; } /// /// 订舱抬头 /// [SugarColumn(ColumnDescription = "订舱抬头", IsNullable = true , Length = 150 ) ] public string? BookedBy { get; set; } /// /// 合约抬头 /// [SugarColumn(ColumnDescription = "合约抬头", IsNullable = true , Length = 150 ) ] public string? ContractualName { get; set; } /// /// 提单号 /// [SugarColumn(ColumnDescription = "提单号", IsNullable = true , Length = 100 ) ] public string? Shipment { get; set; } /// /// 集装箱号 /// [SugarColumn(ColumnDescription = "集装箱号", IsNullable = true , Length = 64 ) ] public string? EquipmentNumber { get; set; } /// /// 集装箱尺码 /// [SugarColumn(ColumnDescription = "集装箱尺码", IsNullable = true , Length = 10 ) ] public string? EquSize { get; set; } /// /// 集装箱类型 /// [SugarColumn(ColumnDescription = "集装箱类型", IsNullable = true , Length = 10 ) ] public string? ContainerType { get; set; } /// /// 集装箱高 /// [SugarColumn(ColumnDescription = "集装箱高", IsNullable = true , Length = 10 ) ] public string? ContainerHeight { get; set; } /// /// TEU箱量 1-40尺,0.5-20尺 /// [SugarColumn(ColumnDescription = "TEU箱量 1-40尺,0.5-20尺", IsNullable = true , Length = 19 ) ] public decimal? Fee { get; set; } /// /// 箱型代码 /// [SugarColumn(ColumnDescription = "箱型代码", IsNullable = true , Length = 20 ) ] public string? Ctncode { get; set; } /// /// 箱型 /// [SugarColumn(ColumnDescription = "箱型", IsNullable = true , Length = 20 ) ] public string? Ctnall { get; set; } /// /// 箱量 /// [SugarColumn(ColumnDescription = "箱量", IsNullable = true ) ] public int? Ctnnum { get; set; } /// /// 货重 /// [SugarColumn(ColumnDescription = "货重", IsNullable = true , Length = 19 ) ] public decimal? Weight { get; set; } /// /// 箱型备注,箱型出现翻译错误是提醒 /// [SugarColumn(ColumnDescription = "箱型备注,箱型出现翻译错误是提醒", IsNullable = true , Length = 150 ) ] public string? Ctnnote { get; set; } /// /// 收货地 /// [SugarColumn(ColumnDescription = "收货地", IsNullable = true , Length = 100 ) ] public string? PlaceofReceipt { get; set; } /// /// 装货港名称 /// [SugarColumn(ColumnDescription = "装货港名称", IsNullable = true , Length = 100 ) ] public string? LoadportName { get; set; } /// /// 卸货港名称 /// [SugarColumn(ColumnDescription = "卸货港名称", IsNullable = true , Length = 100 ) ] public string? DischargeportName { get; set; } /// /// 交货地名称 /// [SugarColumn(ColumnDescription = "交货地名称", IsNullable = true , Length = 100 ) ] public string? PlaceofDelivery { get; set; } /// /// 联系邮件 /// [SugarColumn(ColumnDescription = "联系邮件", IsNullable = true , Length = 150 ) ] public string? Bbymail { get; set; } /// /// 备注 /// [SugarColumn(ColumnDescription = "备注", IsNullable = true , Length = 100 ) ] public string? Remark { get; set; } /// /// 批次全局顺序号 /// [SugarColumn(ColumnDescription = "批次全局顺序号", IsNullable = true ) ] public int? SortNo { get; set; } } }