namespace Admin.NET.Plugin.AiDOP.Order; /// /// 閿€鍞彂璐ф槑缁嗚〃锛圓SNBOLShipperDetail锛? /// [SugarTable("ASNBOLShipperDetail", "销售订单发货通知单子表")] public class AsnShipperDetail { [SugarColumn(ColumnName = "RecID", IsPrimaryKey = true, IsIdentity = true)] public int RecID { get; set; } [SugarColumn(ColumnName = "Domain", Length = 64, IsNullable = true)] public string? Domain { get; set; } /// 璐ц繍鍗曞彿锛堝叧鑱斾富琛?Id锛?/summary> [SugarColumn(ColumnName = "Id", Length = 64, IsNullable = true)] public string? Id { get; set; } /// 鍗囬檷搴忔爣璇嗭紙鍏宠仈涓昏〃 RecID锛?/summary> [SugarColumn(ColumnName = "ASNBOLShipperRecID", IsNullable = true)] public int? AsnShipperRecID { get; set; } [SugarColumn(ColumnName = "Line", IsNullable = true)] public int? Line { get; set; } [SugarColumn(ColumnName = "OrdNbr", Length = 64, IsNullable = true)] public string? OrdNbr { get; set; } [SugarColumn(ColumnName = "OrdLine", IsNullable = true)] public int? OrdLine { get; set; } [SugarColumn(ColumnName = "ContainerItem", Length = 64, IsNullable = true)] public string? ContainerItem { get; set; } [SugarColumn(ColumnName = "Descr", Length = 256, IsNullable = true)] public string? Descr { get; set; } [SugarColumn(ColumnName = "UM", Length = 32, IsNullable = true)] public string? UM { get; set; } [SugarColumn(ColumnName = "Location", Length = 64, IsNullable = true)] public string? Location { get; set; } [SugarColumn(ColumnName = "LotSerial", Length = 64, IsNullable = true)] public string? LotSerial { get; set; } [SugarColumn(ColumnName = "QtyToShip", IsNullable = true)] public decimal? QtyToShip { get; set; } [SugarColumn(ColumnName = "PickingQty", IsNullable = true)] public decimal? PickingQty { get; set; } [SugarColumn(ColumnName = "RealQty", IsNullable = true)] public decimal? RealQty { get; set; } [SugarColumn(ColumnName = "Status", Length = 32, IsNullable = true)] public string? Status { get; set; } [SugarColumn(ColumnName = "Remark", Length = 512, IsNullable = true)] public string? Remark { get; set; } [SugarColumn(ColumnName = "ShType", Length = 16, IsNullable = true)] public string? ShType { get; set; } [SugarColumn(ColumnName = "Typed", Length = 16, IsNullable = true)] public string? Typed { get; set; } [SugarColumn(ColumnName = "IsActive", IsNullable = true)] public int? IsActive { get; set; } [SugarColumn(ColumnName = "IsConfirm", IsNullable = true)] public int? IsConfirm { get; set; } [SugarColumn(ColumnName = "ShipDate", IsNullable = true)] public DateTime? ShipDate { get; set; } [SugarColumn(ColumnName = "Site", Length = 64, IsNullable = true)] public string? Site { get; set; } [SugarColumn(ColumnName = "CreateUser", Length = 64, IsNullable = true)] public string? CreateUser { get; set; } [SugarColumn(ColumnName = "UpdateUser", Length = 64, IsNullable = true)] public string? UpdateUser { get; set; } [SugarColumn(ColumnName = "CreateTime2", IsNullable = true)] public DateTime? CreateTime { get; set; } [SugarColumn(ColumnName = "UpdateTime", IsNullable = true)] public DateTime? UpdateTime { get; set; } /// 绉熸埛ID锛堝绉熸埛闅旂锛?/summary> [SugarColumn(ColumnName = "tenant_id", IsNullable = true)] public long? TenantId { get; set; } }