| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- namespace Admin.NET.Plugin.AiDOP.Order;
- /// <summary>
- /// 閿€鍞彂璐ф槑缁嗚〃锛圓SNBOLShipperDetail锛?
- /// </summary>
- [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; }
- /// <summary>璐ц繍鍗曞彿锛堝叧鑱斾富琛?Id锛?/summary>
- [SugarColumn(ColumnName = "Id", Length = 64, IsNullable = true)]
- public string? Id { get; set; }
- /// <summary>鍗囬檷搴忔爣璇嗭紙鍏宠仈涓昏〃 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; }
- /// <summary>绉熸埛ID锛堝绉熸埛闅旂锛?/summary>
- [SugarColumn(ColumnName = "tenant_id", IsNullable = true)]
- public long? TenantId { get; set; }
- }
|