namespace Admin.NET.Plugin.AiDOP.ProcurementExecution.Entity;
///
/// 供应商发货单子表(scm_shdzb)
///
[SugarTable("scm_shdzb")]
public class ScmShdzb
{
[SugarColumn(ColumnName = "id", IsPrimaryKey = true)]
public long Id { get; set; }
[SugarColumn(ColumnName = "glid", IsNullable = true, Length = 255)]
public string? Glid { get; set; }
[SugarColumn(ColumnName = "sh_material_code", IsNullable = true, Length = 255)]
public string? ShMaterialCode { get; set; }
[SugarColumn(ColumnName = "sh_material_name", IsNullable = true, Length = 255)]
public string? ShMaterialName { get; set; }
[SugarColumn(ColumnName = "sh_material_ggxh", IsNullable = true, Length = 255)]
public string? ShMaterialGgxh { get; set; }
[SugarColumn(ColumnName = "sh_delivery_quantity", IsNullable = true)]
public decimal? ShDeliveryQuantity { get; set; }
[SugarColumn(ColumnName = "sh_material_dw", IsNullable = true, Length = 255)]
public string? ShMaterialDw { get; set; }
[SugarColumn(ColumnName = "remarks", IsNullable = true, Length = 255)]
public string? Remarks { get; set; }
[SugarColumn(ColumnName = "bzsl", IsNullable = true)]
public decimal? Bzsl { get; set; }
[SugarColumn(ColumnName = "bqsl", IsNullable = true)]
public decimal? Bqsl { get; set; }
[SugarColumn(ColumnName = "order_type", IsNullable = true, Length = 255)]
public string? OrderType { get; set; }
[SugarColumn(ColumnName = "po_bill", IsNullable = true, Length = 255)]
public string? PoBill { get; set; }
[SugarColumn(ColumnName = "po_billline", IsNullable = true, Length = 50)]
public string? PoBillLine { get; set; }
[SugarColumn(ColumnName = "hh", IsNullable = true)]
public int? Hh { get; set; }
[SugarColumn(ColumnName = "scrq", IsNullable = true, Length = 255)]
public string? Scrq { get; set; }
[SugarColumn(ColumnName = "scph", IsNullable = true, Length = 255)]
public string? Scph { get; set; }
[SugarColumn(ColumnName = "th", IsNullable = true, Length = 255)]
public string? Th { get; set; }
[SugarColumn(ColumnName = "bbh", IsNullable = true, Length = 255)]
public string? Bbh { get; set; }
[SugarColumn(ColumnName = "djsl", IsNullable = true)]
public decimal? Djsl { get; set; }
[SugarColumn(ColumnName = "ccrq", IsNullable = true, Length = 255)]
public string? Ccrq { get; set; }
[SugarColumn(ColumnName = "cgyt", IsNullable = true, Length = 255)]
public string? Cgyt { get; set; }
[SugarColumn(ColumnName = "jybb", IsNullable = true)]
public string? Jybb { get; set; }
[SugarColumn(ColumnName = "jhdbh", IsNullable = true, Length = 50)]
public string? Jhdbh { get; set; }
[SugarColumn(ColumnName = "jhdhh", IsNullable = true, Length = 50)]
public string? Jhdhh { get; set; }
[SugarColumn(ColumnName = "shpc", IsNullable = true, Length = 50)]
public string? Shpc { get; set; }
[SugarColumn(ColumnName = "shzt", IsNullable = true, Length = 255)]
public string? Shzt { get; set; }
[SugarColumn(ColumnName = "rksl", IsNullable = true)]
public decimal? Rksl { get; set; }
[SugarColumn(ColumnName = "thsl", IsNullable = true)]
public decimal? Thsl { get; set; }
[SugarColumn(ColumnName = "po_billno", IsNullable = true, Length = 255)]
public string? PoBillNo { get; set; }
///
/// 租户Id
///
[SugarColumn(ColumnName = "tenant_id", ColumnDescription = "租户Id")]
public long? TenantId { get; set; }
}