PurOrdRctMaster.cs 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. namespace Admin.NET.Plugin.AiDOP.ProcurementExecution.Entity;
  2. /// <summary>
  3. /// PurOrdRctMaster(aidopdev 采购收货/退货类单头)
  4. /// </summary>
  5. [SugarTable("PurOrdRctMaster")]
  6. public class PurOrdRctMaster
  7. {
  8. [SugarColumn(ColumnName = "RecID", IsPrimaryKey = true, IsIdentity = false)]
  9. public int RecID { get; set; }
  10. [SugarColumn(ColumnName = "Domain", Length = 24, IsNullable = true)]
  11. public string Domain { get; set; }
  12. [SugarColumn(ColumnName = "RctType", Length = 8, IsNullable = false)]
  13. public string RctType { get; set; }
  14. [SugarColumn(ColumnName = "Receiver", Length = 24, IsNullable = false)]
  15. public string Receiver { get; set; }
  16. [SugarColumn(ColumnName = "RctDate", IsNullable = true)]
  17. public DateTime? RctDate { get; set; }
  18. [SugarColumn(ColumnName = "OrdNbr", Length = 24, IsNullable = true)]
  19. public string OrdNbr { get; set; }
  20. [SugarColumn(ColumnName = "PerformDate", IsNullable = true)]
  21. public DateTime? PerformDate { get; set; }
  22. [SugarColumn(ColumnName = "Site", Length = 24, IsNullable = true)]
  23. public string Site { get; set; }
  24. [SugarColumn(ColumnName = "BusinessID")]
  25. public long BusinessID { get; set; }
  26. [SugarColumn(ColumnName = "CreateUser", Length = 24, IsNullable = true)]
  27. public string CreateUser { get; set; }
  28. [SugarColumn(ColumnName = "UpdateUser", Length = 24, IsNullable = true)]
  29. public string UpdateUser { get; set; }
  30. [SugarColumn(ColumnName = "CreateTime", IsNullable = true)]
  31. public DateTime? CreateTime { get; set; }
  32. [SugarColumn(ColumnName = "UpdateTime", IsNullable = true)]
  33. public DateTime? UpdateTime { get; set; }
  34. [SugarColumn(ColumnName = "EffTime", IsNullable = true)]
  35. public DateTime? EffTime { get; set; }
  36. [SugarColumn(ColumnName = "IsActive", ColumnDataType = "bit(1)")]
  37. public bool IsActive { get; set; }
  38. [SugarColumn(ColumnName = "IsConfirm", ColumnDataType = "bit(1)")]
  39. public bool IsConfirm { get; set; }
  40. [SugarColumn(ColumnName = "Typed", Length = 4, IsNullable = true)]
  41. public string Typed { get; set; }
  42. [SugarColumn(ColumnName = "Department", Length = 8, IsNullable = true)]
  43. public string Department { get; set; }
  44. [SugarColumn(ColumnName = "Supp", Length = 20, IsNullable = true)]
  45. public string Supp { get; set; }
  46. [SugarColumn(ColumnName = "Print", ColumnDataType = "bit(1)")]
  47. public bool Print { get; set; }
  48. [SugarColumn(ColumnName = "IsChanged", ColumnDataType = "bit(1)")]
  49. public bool IsChanged { get; set; }
  50. [SugarColumn(ColumnName = "TaxClass", Length = 20, IsNullable = true)]
  51. public string TaxClass { get; set; }
  52. [SugarColumn(ColumnName = "TaxIn", ColumnDataType = "bit(1)")]
  53. public bool TaxIn { get; set; }
  54. [SugarColumn(ColumnName = "Remark", Length = 200, IsNullable = true)]
  55. public string Remark { get; set; }
  56. [SugarColumn(ColumnName = "CustAddress", Length = 200, IsNullable = true)]
  57. public string CustAddress { get; set; }
  58. [SugarColumn(ColumnName = "CustContact", Length = 50, IsNullable = true)]
  59. public string CustContact { get; set; }
  60. [SugarColumn(ColumnName = "CustPhone", Length = 30, IsNullable = true)]
  61. public string CustPhone { get; set; }
  62. [SugarColumn(ColumnName = "Delivery", Length = 60, IsNullable = true)]
  63. public string Delivery { get; set; }
  64. [SugarColumn(ColumnName = "InvoiceNumber", Length = 100, IsNullable = true)]
  65. public string InvoiceNumber { get; set; }
  66. [SugarColumn(ColumnName = "Curr", Length = 8, IsNullable = true)]
  67. public string Curr { get; set; }
  68. [SugarColumn(ColumnName = "IsExport", ColumnDataType = "bit(1)")]
  69. public bool IsExport { get; set; }
  70. [SugarColumn(ColumnName = "Terms", Length = 20, IsNullable = true)]
  71. public string Terms { get; set; }
  72. [SugarColumn(ColumnName = "IsPlan", ColumnDataType = "bit(1)")]
  73. public bool IsPlan { get; set; }
  74. [SugarColumn(ColumnName = "RoleNo", Length = 20, IsNullable = true)]
  75. public string RoleNo { get; set; }
  76. [SugarColumn(ColumnName = "TermsofTrade", Length = 20, IsNullable = true)]
  77. public string TermsofTrade { get; set; }
  78. [SugarColumn(ColumnName = "OrdType", Length = 30, IsNullable = true)]
  79. public string OrdType { get; set; }
  80. [SugarColumn(ColumnName = "Ufld1", Length = 30, IsNullable = true)]
  81. public string Ufld1 { get; set; }
  82. [SugarColumn(ColumnName = "Ufld2", Length = 30, IsNullable = true)]
  83. public string Ufld2 { get; set; }
  84. [SugarColumn(ColumnName = "IsBackwash", ColumnDataType = "bit(1)")]
  85. public bool IsBackwash { get; set; }
  86. [SugarColumn(ColumnName = "ERPfld1", Length = 200, IsNullable = true)]
  87. public string ERPfld1 { get; set; }
  88. }