using DS.Module.Core.Data; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DS.WMS.Core.Op.Entity { /// /// 舱位甩货或换舱信息 /// [SqlSugar.SugarTable("op_sea_booking_slot_rolling", "舱位甩货或换舱信息")] public class BookingSlotRolling : BaseModel { /// /// 舱位主键 /// [SqlSugar.SugarColumn(ColumnDescription = "舱位主键", IsNullable = false)] public long SlotId { get; set; } /// /// 延期原因类型(Rolling-甩货,Change-换舱) /// [SqlSugar.SugarColumn(ColumnDescription = "延期原因类型(Rolling-甩货,Change-换舱)", Length = 20, IsNullable = false)] public string DelayReasonType { get; set; } /// /// 延期原因名称(Rolling-甩货,Change-换舱) /// [SqlSugar.SugarColumn(ColumnDescription = "延期原因名称(Rolling-甩货,Change-换舱)", Length = 30, IsNullable = false)] public string DelayReasonTypeName { get; set; } /// /// 延期次数 /// [SqlSugar.SugarColumn(ColumnDescription = "延期次数", IsNullable = false)] public int DelayNum { get; set; } /// /// 船名 /// [SqlSugar.SugarColumn(ColumnDescription = "船名", Length = 30, IsNullable = true)] public string Vessel { get; set; } /// /// 航次号 /// [SqlSugar.SugarColumn(ColumnDescription = "航次号", Length = 20, IsNullable = true)] public string Voyno { get; set; } /// /// 船公司ID /// [SqlSugar.SugarColumn(ColumnDescription = "船公司ID", IsNullable = true)] public Nullable CarrierId { get; set; } /// /// 船公司代码 /// [SqlSugar.SugarColumn(ColumnDescription = "船公司代码", Length = 20, IsNullable = true)] public string CarrierCode { get; set; } /// /// 船公司 /// [SqlSugar.SugarColumn(ColumnDescription = "船公司", Length = 20, IsNullable = true)] public string Carrier { get; set; } /// /// 预计开船日期 /// [SqlSugar.SugarColumn(ColumnDescription = "预计开船日期", IsNullable = true)] public Nullable ETD { get; set; } /// /// 预计到港日期 /// [SqlSugar.SugarColumn(ColumnDescription = "预计到港日期", IsNullable = true)] public Nullable ETA { get; set; } /// /// 装货港代码 /// [SqlSugar.SugarColumn(ColumnDescription = "装货港代码", Length = 10, IsNullable = true)] public string PortLoadCode { get; set; } /// /// 装货港主键 /// [SqlSugar.SugarColumn(ColumnDescription = "装货港主键", IsNullable = true)] public Nullable PortLoadId { get; set; } /// /// 装货港 /// [SqlSugar.SugarColumn(ColumnDescription = "装货港", Length = 120, IsNullable = true)] public string PortLoad { get; set; } /// /// 卸货港代码 /// [SqlSugar.SugarColumn(ColumnDescription = "卸货港代码", Length = 10, IsNullable = true)] public string PortDischargeCode { get; set; } /// /// 卸货港主键 /// [SqlSugar.SugarColumn(ColumnDescription = "卸货港主键", IsNullable = true)] public Nullable PortDischargeId { get; set; } /// /// 卸货港 /// [SqlSugar.SugarColumn(ColumnDescription = "卸货港", Length = 120, IsNullable = true)] public string PortDischarge { get; set; } } }