| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- namespace Admin.NET.Plugin.AiDOP.Order;
- /// <summary>
- /// 销售发货明细表(ASNBOLShipperDetail)
- /// </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; }
- }
|