| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- namespace Admin.NET.Plugin.AiDOP.ProcurementExecution.Entity;
- /// <summary>
- /// 供应商发货单子表(scm_shdzb)
- /// </summary>
- [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; }
- }
|