ptBillPushinfo.cs 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  1. using SqlSugar;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace wms.sqlsugar.model.pt
  6. {
  7. [Tenant("pt")]
  8. [SugarTable("Bill_PushInfo", "反馈推送信息表")]
  9. public class ptBillPushinfo : BaseModel
  10. {
  11. /// <summary>
  12. /// DocsNo
  13. /// </summary>
  14. [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)]
  15. public string DocsNo { get; set; }
  16. /// <summary>
  17. /// TypeCode
  18. /// </summary>
  19. [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false)]
  20. public string TypeCode { get; set; }
  21. /// <summary>
  22. /// RFIDBarCode
  23. /// </summary>
  24. [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)]
  25. public string RFIDBarCode { get; set; }
  26. /// <summary>
  27. /// RodBarCode
  28. /// </summary>
  29. [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)]
  30. public string RodBarCode { get; set; }
  31. /// <summary>
  32. /// HWBarCode
  33. /// </summary>
  34. [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)]
  35. public string HWBarCode { get; set; }
  36. /// <summary>
  37. /// CLBarCode
  38. /// </summary>
  39. [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)]
  40. public string CLBarCode { get; set; }
  41. /// <summary>
  42. /// WarehouseId
  43. /// </summary>
  44. [SugarColumn(ColumnDataType = "bigint", IsNullable = true)]
  45. public long? WarehouseId { get; set; }
  46. /// <summary>
  47. /// WarehouseCode
  48. /// </summary>
  49. [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)]
  50. public string WarehouseCode { get; set; }
  51. /// <summary>
  52. /// WareCellId
  53. /// </summary>
  54. [SugarColumn(ColumnDataType = "bigint", IsNullable = true)]
  55. public long? WareCellId { get; set; }
  56. /// <summary>
  57. /// WareCellCode
  58. /// </summary>
  59. [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)]
  60. public string WareCellCode { get; set; }
  61. /// <summary>
  62. /// BoilerNo
  63. /// </summary>
  64. [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)]
  65. public string BoilerNo { get; set; }
  66. /// <summary>
  67. /// PackNo
  68. /// </summary>
  69. [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)]
  70. public string PackNo { get; set; }
  71. /// <summary>
  72. /// BatchNo
  73. /// </summary>
  74. [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)]
  75. public string BatchNo { get; set; }
  76. /// <summary>
  77. /// ResStateCode
  78. /// </summary>
  79. [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)]
  80. public string ResStateCode { get; set; }
  81. /// <summary>
  82. /// ResDesc
  83. /// </summary>
  84. [SugarColumn(ColumnDataType = "nvarchar", Length = 500, IsNullable = true)]
  85. public string ResDesc { get; set; }
  86. /// <summary>
  87. /// MatId
  88. /// </summary>
  89. [SugarColumn(ColumnDataType = "bigint", IsNullable = true)]
  90. public long? MatId { get; set; }
  91. /// <summary>
  92. /// MatCode
  93. /// </summary>
  94. [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)]
  95. public string MatCode { get; set; }
  96. /// <summary>
  97. /// MatName
  98. /// </summary>
  99. [SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = true)]
  100. public string MatName { get; set; }
  101. /// <summary>
  102. /// TolWQty
  103. /// </summary>
  104. [SugarColumn(ColumnDataType = "decimal", Length = 18, IsNullable = false)]
  105. public decimal TolWQty { get; set; }
  106. /// <summary>
  107. /// NetWQty
  108. /// </summary>
  109. [SugarColumn(ColumnDataType = "decimal", Length = 18, IsNullable = false)]
  110. public decimal NetWQty { get; set; }
  111. /// <summary>
  112. /// TareWQty
  113. /// </summary>
  114. [SugarColumn(ColumnDataType = "decimal", Length = 18, IsNullable = false)]
  115. public decimal TareWQty { get; set; }
  116. /// <summary>
  117. /// ReqNo
  118. /// </summary>
  119. [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)]
  120. public string ReqNo { get; set; }
  121. /// <summary>
  122. /// ReqGrpNo
  123. /// </summary>
  124. [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)]
  125. public string ReqGrpNo { get; set; }
  126. /// <summary>
  127. /// PostQty
  128. /// </summary>
  129. [SugarColumn(ColumnDataType = "int", IsNullable = false)]
  130. public int PostQty { get; set; }
  131. /// <summary>
  132. /// PostResult
  133. /// </summary>
  134. [SugarColumn(ColumnDataType = "int", IsNullable = false)]
  135. public int PostResult { get; set; }
  136. }
  137. }