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_demand_ctn", "舱位需求预报记录箱信息")] public class BookingSlotDemandCtn : BaseModel { /// /// 舱位需求预报记录ID /// [SqlSugar.SugarColumn(ColumnDescription = "舱位需求预报记录ID", IsNullable = false)] public long DemandId { get; set; } /// /// 箱型代码 /// [SqlSugar.SugarColumn(ColumnDescription = "箱型代码", Length = 10, IsNullable = true)] public string CtnCode { get; set; } /// /// 箱型名称 /// [SqlSugar.SugarColumn(ColumnDescription = "箱型名称", Length = 20, IsNullable = true)] public string CtnAll { get; set; } /// /// 箱量 /// [SqlSugar.SugarColumn(ColumnDescription = "箱量", IsNullable = true, DefaultValue = "0")] public int CtnNum { get; set; } } }