cpBillPushinfoHty.cs 5.5 KB

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