ScmJhjhJq.cs 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. namespace Admin.NET.Plugin.AiDOP.ProcurementExecution.Entity;
  2. /// <summary>
  3. /// 交期发布/回复表(scm_jhjh_jq)
  4. /// </summary>
  5. [SugarTable("scm_jhjh_jq")]
  6. public class ScmJhjhJq
  7. {
  8. [SugarColumn(ColumnName = "id", IsPrimaryKey = true, Length = 36)]
  9. public string Id { get; set; } = string.Empty;
  10. [SugarColumn(ColumnName = "glid", IsNullable = true, Length = 50)]
  11. public string? Glid { get; set; }
  12. [SugarColumn(ColumnName = "wlbm", IsNullable = true, Length = 500)]
  13. public string? Wlbm { get; set; }
  14. [SugarColumn(ColumnName = "wlms", IsNullable = true, Length = 500)]
  15. public string? Wlms { get; set; }
  16. [SugarColumn(ColumnName = "wlgg", IsNullable = true, Length = 500)]
  17. public string? Wlgg { get; set; }
  18. [SugarColumn(ColumnName = "cgdd", IsNullable = true, Length = 500)]
  19. public string? Cgdd { get; set; }
  20. [SugarColumn(ColumnName = "jhdsl", IsNullable = true, Length = 500)]
  21. public string? Jhdsl { get; set; }
  22. [SugarColumn(ColumnName = "wjhsl", IsNullable = true, Length = 500)]
  23. public string? Wjhsl { get; set; }
  24. [SugarColumn(ColumnName = "jhd", IsNullable = true, Length = 500)]
  25. public string? Jhd { get; set; }
  26. [SugarColumn(ColumnName = "yjjhrq", IsNullable = true, Length = 500)]
  27. public string? Yjjhrq { get; set; }
  28. [SugarColumn(ColumnName = "jqhf", IsNullable = true, Length = 500)]
  29. public string? Jqhf { get; set; }
  30. [SugarColumn(ColumnName = "type", IsNullable = true, Length = 50)]
  31. public string? Type { get; set; }
  32. [SugarColumn(ColumnName = "flag", IsNullable = true)]
  33. public int? Flag { get; set; }
  34. [SugarColumn(ColumnName = "scrq", IsNullable = true, Length = 500)]
  35. public string? Scrq { get; set; }
  36. [SugarColumn(ColumnName = "scrid", IsNullable = true, Length = 500)]
  37. public string? Scrid { get; set; }
  38. [SugarColumn(ColumnName = "scrxm", IsNullable = true, Length = 500)]
  39. public string? Scrxm { get; set; }
  40. [SugarColumn(ColumnName = "gysdm", IsNullable = true, Length = 500)]
  41. public string? Gysdm { get; set; }
  42. [SugarColumn(ColumnName = "gysmc", IsNullable = true, Length = 500)]
  43. public string? Gysmc { get; set; }
  44. [SugarColumn(ColumnName = "hfrid", IsNullable = true, Length = 500)]
  45. public string? Hfrid { get; set; }
  46. [SugarColumn(ColumnName = "hfrxm", IsNullable = true, Length = 500)]
  47. public string? Hfrxm { get; set; }
  48. [SugarColumn(ColumnName = "hfsj", IsNullable = true, Length = 500)]
  49. public string? Hfsj { get; set; }
  50. [SugarColumn(ColumnName = "qhdj", IsNullable = true, Length = 500)]
  51. public string? Qhdj { get; set; }
  52. [SugarColumn(ColumnName = "ddhh", IsNullable = true)]
  53. public int? Ddhh { get; set; }
  54. [SugarColumn(ColumnName = "dw", IsNullable = true, Length = 50)]
  55. public string? Dw { get; set; }
  56. [SugarColumn(ColumnName = "bzsl", IsNullable = true, Length = 50)]
  57. public string? Bzsl { get; set; }
  58. [SugarColumn(ColumnName = "ly", IsNullable = true, Length = 50)]
  59. public string? Ly { get; set; }
  60. [SugarColumn(ColumnName = "glid1", IsNullable = true, Length = 50)]
  61. public string? Glid1 { get; set; }
  62. }