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_part_ctn", "海运出口舱单分票信息")] public class SeaExportShippingBillPartCtn : BaseModel { /// /// 业务Id /// [SugarColumn(ColumnDescription = "业务Id", IsNullable = false)] public long Pid { get; set; } /// /// 分单号 /// [SqlSugar.SugarColumn(ColumnDescription = "分单号", IsNullable = true, Length = 30)] public string HBLNO { 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; } } }