ScmShdzb.cs 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. namespace Admin.NET.Plugin.AiDOP.ProcurementExecution.Entity;
  2. /// <summary>
  3. /// 供应商发货单子表(scm_shdzb)
  4. /// </summary>
  5. [SugarTable("scm_shdzb")]
  6. public class ScmShdzb
  7. {
  8. [SugarColumn(ColumnName = "id", IsPrimaryKey = true)]
  9. public long Id { get; set; }
  10. [SugarColumn(ColumnName = "glid", IsNullable = true, Length = 255)]
  11. public string? Glid { get; set; }
  12. [SugarColumn(ColumnName = "sh_material_code", IsNullable = true, Length = 255)]
  13. public string? ShMaterialCode { get; set; }
  14. [SugarColumn(ColumnName = "sh_material_name", IsNullable = true, Length = 255)]
  15. public string? ShMaterialName { get; set; }
  16. [SugarColumn(ColumnName = "sh_material_ggxh", IsNullable = true, Length = 255)]
  17. public string? ShMaterialGgxh { get; set; }
  18. [SugarColumn(ColumnName = "sh_delivery_quantity", IsNullable = true)]
  19. public decimal? ShDeliveryQuantity { get; set; }
  20. [SugarColumn(ColumnName = "sh_material_dw", IsNullable = true, Length = 255)]
  21. public string? ShMaterialDw { get; set; }
  22. [SugarColumn(ColumnName = "remarks", IsNullable = true, Length = 255)]
  23. public string? Remarks { get; set; }
  24. [SugarColumn(ColumnName = "bzsl", IsNullable = true)]
  25. public decimal? Bzsl { get; set; }
  26. [SugarColumn(ColumnName = "bqsl", IsNullable = true)]
  27. public decimal? Bqsl { get; set; }
  28. [SugarColumn(ColumnName = "order_type", IsNullable = true, Length = 255)]
  29. public string? OrderType { get; set; }
  30. [SugarColumn(ColumnName = "po_bill", IsNullable = true, Length = 255)]
  31. public string? PoBill { get; set; }
  32. [SugarColumn(ColumnName = "po_billline", IsNullable = true, Length = 50)]
  33. public string? PoBillLine { get; set; }
  34. [SugarColumn(ColumnName = "hh", IsNullable = true)]
  35. public int? Hh { get; set; }
  36. [SugarColumn(ColumnName = "scrq", IsNullable = true, Length = 255)]
  37. public string? Scrq { get; set; }
  38. [SugarColumn(ColumnName = "scph", IsNullable = true, Length = 255)]
  39. public string? Scph { get; set; }
  40. [SugarColumn(ColumnName = "th", IsNullable = true, Length = 255)]
  41. public string? Th { get; set; }
  42. [SugarColumn(ColumnName = "bbh", IsNullable = true, Length = 255)]
  43. public string? Bbh { get; set; }
  44. [SugarColumn(ColumnName = "djsl", IsNullable = true)]
  45. public decimal? Djsl { get; set; }
  46. [SugarColumn(ColumnName = "ccrq", IsNullable = true, Length = 255)]
  47. public string? Ccrq { get; set; }
  48. [SugarColumn(ColumnName = "cgyt", IsNullable = true, Length = 255)]
  49. public string? Cgyt { get; set; }
  50. [SugarColumn(ColumnName = "jybb", IsNullable = true)]
  51. public string? Jybb { get; set; }
  52. [SugarColumn(ColumnName = "jhdbh", IsNullable = true, Length = 50)]
  53. public string? Jhdbh { get; set; }
  54. [SugarColumn(ColumnName = "jhdhh", IsNullable = true, Length = 50)]
  55. public string? Jhdhh { get; set; }
  56. [SugarColumn(ColumnName = "shpc", IsNullable = true, Length = 50)]
  57. public string? Shpc { get; set; }
  58. [SugarColumn(ColumnName = "shzt", IsNullable = true, Length = 255)]
  59. public string? Shzt { get; set; }
  60. [SugarColumn(ColumnName = "rksl", IsNullable = true)]
  61. public decimal? Rksl { get; set; }
  62. [SugarColumn(ColumnName = "thsl", IsNullable = true)]
  63. public decimal? Thsl { get; set; }
  64. [SugarColumn(ColumnName = "po_billno", IsNullable = true, Length = 255)]
  65. public string? PoBillNo { get; set; }
  66. }