using DS.Module.Core.Data; using SqlSugar; 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_ctn", "舱位集装箱管理")] public class BookingSlotCtn : BaseModel { /// /// 舱位主键 /// [SqlSugar.SugarColumn(ColumnDescription = "舱位主键", IsNullable = false)] public long SlotId { 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; } /// /// 箱号 /// [SqlSugar.SugarColumn(ColumnDescription = "箱号", Length = 30, IsNullable = true)] public string CNTRNo { get; set; } /// /// 箱封号 /// [SqlSugar.SugarColumn(ColumnDescription = "箱封号", Length = 20, IsNullable = true)] public string SealNo { get; set; } /// /// 件数 /// [SqlSugar.SugarColumn(ColumnDescription = "件数", IsNullable = true)] public Nullable PKGS { get; set; } /// /// 包装 /// [SqlSugar.SugarColumn(ColumnDescription = "件数", Length = 20, IsNullable = true)] public string KindPKGs { get; set; } /// /// 毛重 /// [SqlSugar.SugarColumn(ColumnDescription = "毛重", Length = 18, DecimalDigits = 4, IsNullable = true)] public Nullable KGS { get; set; } /// /// 尺码 /// [SqlSugar.SugarColumn(ColumnDescription = "尺码", Length = 18, DecimalDigits = 4, IsNullable = true)] public Nullable CBM { get; set; } /// /// 皮重 /// [SqlSugar.SugarColumn(ColumnDescription = "皮重", Length = 18, DecimalDigits = 4, IsNullable = true)] public Nullable TareWeight { get; set; } /// /// 箱状态 /// [SqlSugar.SugarColumn(ColumnDescription = "箱状态", Length = 10, IsNullable = true)] public string CtnStatus { get; set; } /// /// 称重方式 /// [SqlSugar.SugarColumn(ColumnDescription = "称重方式", Length = 30, IsNullable = true)] public string WeighType { get; set; } /// /// 称重重量 /// [SqlSugar.SugarColumn(ColumnDescription = "称重重量", Length = 18, DecimalDigits = 4, IsNullable = true)] public Nullable WeighKGS { get; set; } /// /// 称重联系人 /// [SqlSugar.SugarColumn(ColumnDescription = "称重联系人", Length = 30, IsNullable = true)] public string WeighAttn { get; set; } } }