using DS.Module.Core.Data; using SqlSugar; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DS.WMS.Core.Op.Entity { /// /// 海运出口舱单箱信息 /// [SqlSugar.SugarTable("op_sea_export_shippingbill_ctn", "海运出口舱单箱信息")] public class SeaExportShippingBillCtn : BaseModel { /// /// 业务Id /// [SugarColumn(ColumnDescription = "业务Id", IsNullable = false)] public long Pid { get; set; } /// /// 尺寸 /// [SugarColumn(ColumnDescription = "尺寸", IsNullable = true, Length = 3)] public string Size { get; set; } /// /// 箱型 /// [SugarColumn(ColumnDescription = "箱型", IsNullable = true, Length = 10)] public string Ctn { get; set; } /// /// 箱型Id /// [SugarColumn(ColumnDescription = "箱型Id")] public long CtnId { get; set; } /// /// 表现形式 /// [SugarColumn(ColumnDescription = "表现形式", IsNullable = true, Length = 10)] public string CtnAll { 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 = 18, DecimalDigits = 3, DefaultValue = "0")] public decimal? KGS { get; set; } /// /// 尺码 /// [SugarColumn(ColumnDescription = "尺码", IsNullable = true, Length = 18, DecimalDigits = 3, DefaultValue = "0")] public decimal? CBM { get; set; } /// /// 包装Code /// [SugarColumn(ColumnDescription = "包装", IsNullable = true, Length = 20)] public string KindPkgs { get; set; } /// /// 包装 t_code_package /// [SugarColumn(ColumnDescription = "包装", IsNullable = true, Length = 20)] public string KindPkgsName { get; set; } } }