namespace Admin.NET.Plugin.AiDOP.Order;
///
/// 销售发货明细表(ASNBOLShipperDetail)
///
[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)
[SugarColumn(ColumnName = "Id", Length = 64, IsNullable = true)]
public string? Id { get; set; }
/// 升降序标识(关联主表 RecID)
[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; }
}