ScmShd.cs 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. namespace Admin.NET.Plugin.AiDOP.ProcurementExecution.Entity;
  2. /// <summary>
  3. /// 供应商发货单主表(scm_shd)
  4. /// </summary>
  5. [SugarTable("scm_shd")]
  6. public class ScmShd
  7. {
  8. [SugarColumn(ColumnName = "id", IsPrimaryKey = true)]
  9. public long Id { get; set; }
  10. [SugarColumn(ColumnName = "sh_purchase_id", IsNullable = true)]
  11. public long? ShPurchaseId { get; set; }
  12. [SugarColumn(ColumnName = "sh_purchase_name", IsNullable = true, Length = 255)]
  13. public string? ShPurchaseName { get; set; }
  14. [SugarColumn(ColumnName = "sh_purchase_num", IsNullable = true, Length = 255)]
  15. public string? ShPurchaseNum { get; set; }
  16. [SugarColumn(ColumnName = "sh_purchase_address", IsNullable = true, Length = 255)]
  17. public string? ShPurchaseAddress { get; set; }
  18. [SugarColumn(ColumnName = "sh_purchase_lxr", IsNullable = true, Length = 255)]
  19. public string? ShPurchaseLxr { get; set; }
  20. [SugarColumn(ColumnName = "sh_purchase_phone", IsNullable = true, Length = 255)]
  21. public string? ShPurchasePhone { get; set; }
  22. [SugarColumn(ColumnName = "client", IsNullable = true)]
  23. public long? Client { get; set; }
  24. [SugarColumn(ColumnName = "delivery_Address", IsNullable = true, Length = 255)]
  25. public string? DeliveryAddress { get; set; }
  26. [SugarColumn(ColumnName = "expected_consignee", IsNullable = true, Length = 255)]
  27. public string? ExpectedConsignee { get; set; }
  28. [SugarColumn(ColumnName = "consignee_phone", IsNullable = true, Length = 255)]
  29. public string? ConsigneePhone { get; set; }
  30. [SugarColumn(ColumnName = "estimated_delivery_date", IsNullable = true)]
  31. public DateTime? EstimatedDeliveryDate { get; set; }
  32. [SugarColumn(ColumnName = "po_billno", IsNullable = true, Length = 255)]
  33. public string? PoBillNo { get; set; }
  34. [SugarColumn(ColumnName = "shddh", IsNullable = true, Length = 255)]
  35. public string? Shddh { get; set; }
  36. [SugarColumn(ColumnName = "jhshrq", IsNullable = true, Length = 50)]
  37. public string? Jhshrq { get; set; }
  38. [SugarColumn(ColumnName = "tjrid", IsNullable = true, Length = 50)]
  39. public string? Tjrid { get; set; }
  40. [SugarColumn(ColumnName = "tjrxm", IsNullable = true, Length = 50)]
  41. public string? Tjrxm { get; set; }
  42. [SugarColumn(ColumnName = "tjrq", IsNullable = true, Length = 50)]
  43. public string? Tjrq { get; set; }
  44. [SugarColumn(ColumnName = "scbq", IsNullable = true)]
  45. public int? Scbq { get; set; }
  46. [SugarColumn(ColumnName = "chbg", IsNullable = true)]
  47. public string? Chbg { get; set; }
  48. [SugarColumn(ColumnName = "sfpc", IsNullable = true)]
  49. public int? Sfpc { get; set; }
  50. [SugarColumn(ColumnName = "pcsm", IsNullable = true)]
  51. public string? Pcsm { get; set; }
  52. [SugarColumn(ColumnName = "wlsc", IsNullable = true, Length = 500)]
  53. public string? Wlsc { get; set; }
  54. [SugarColumn(ColumnName = "yjdhrq", IsNullable = true, Length = 500)]
  55. public string? Yjdhrq { get; set; }
  56. [SugarColumn(ColumnName = "state", IsNullable = true)]
  57. public int? State { get; set; }
  58. [SugarColumn(ColumnName = "shzt", IsNullable = true, Length = 50)]
  59. public string? Shzt { get; set; }
  60. [SugarColumn(ColumnName = "wldh", IsNullable = true, Length = 50)]
  61. public string? Wldh { get; set; }
  62. [SugarColumn(ColumnName = "dycs", IsNullable = true)]
  63. public int? Dycs { get; set; }
  64. }