fjBillFeedbackPush.cs 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. using SqlSugar;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace wms.sqlsugar.model.fj
  6. {
  7. [Tenant("fj")]
  8. [SugarTable("bill_feedback_push", "反馈推送信息表")]
  9. public class fjBillFeedbackPush : BaseModel
  10. {
  11. /// <summary>
  12. /// 单号
  13. /// </summary>
  14. [SugarColumn(ColumnName = "bill_code", ColumnDataType = "nvarchar", Length = 50)]
  15. public string BillCode { get; set; }
  16. /// <summary>
  17. /// RFID值
  18. /// </summary>
  19. [SugarColumn(ColumnName = "rfid", ColumnDataType = "nvarchar", Length = 50)]
  20. public string RFID { get; set; }
  21. /// <summary>
  22. /// 条码
  23. /// </summary>
  24. [SugarColumn(ColumnName = "rod_bar", ColumnDataType = "nvarchar", Length = 50)]
  25. public string RodBar { get; set; }
  26. /// <summary>
  27. /// 材料号
  28. /// </summary>
  29. [SugarColumn(ColumnName = "mat_barcode", ColumnDataType = "nvarchar", Length = 50)]
  30. public string MatBarCode { get; set; }
  31. /// <summary>
  32. /// 工字轮条码
  33. /// </summary>
  34. [SugarColumn(ColumnName = "spool_code", ColumnDataType = "nvarchar", Length = 100, IsNullable = true)]
  35. public string SpoolCode { get; set; }
  36. /// <summary>
  37. /// 仓库编码
  38. /// </summary>
  39. [SugarColumn(ColumnName = "ware_code", ColumnDataType = "nvarchar", Length = 50)]
  40. public string WareCode { get; set; }
  41. /// <summary>
  42. /// 仓库名称
  43. /// </summary>
  44. [SugarColumn(ColumnName = "ware_name", ColumnDataType = "nvarchar", Length = 50)]
  45. public string WareName { get; set; }
  46. /// <summary>
  47. /// 货位编码
  48. /// </summary>
  49. [SugarColumn(ColumnName = "loc_code", ColumnDataType = "nvarchar", Length = 50)]
  50. public string LocCode { get; set; }
  51. /// <summary>
  52. /// 炉号
  53. /// </summary>
  54. [SugarColumn(ColumnName = "boiler_no", ColumnDataType = "nvarchar", Length = 50, IsNullable = true)]
  55. public string BoilerNo { get; set; }
  56. /// <summary>
  57. /// 包号
  58. /// </summary>
  59. [SugarColumn(ColumnName = "pack_no", ColumnDataType = "nvarchar", Length = 50, IsNullable = true)]
  60. public string PackNo { get; set; }
  61. /// <summary>
  62. /// 生产批号
  63. /// </summary>
  64. [SugarColumn(ColumnName = "batch", ColumnDataType = "nvarchar", Length = 50, IsNullable = true)]
  65. public string Batch { get; set; }
  66. /// <summary>
  67. /// 改判结果
  68. /// </summary>
  69. [SugarColumn(ColumnName = "res_state", ColumnDataType = "nvarchar", Length = 50, IsNullable = true)]
  70. public string ResState { get; set; }
  71. /// <summary>
  72. /// 原因
  73. /// </summary>
  74. [SugarColumn(ColumnName = "res_desc", ColumnDataType = "nvarchar", Length = 500, IsNullable = true)]
  75. public string ResDesc { get; set; }
  76. /// <summary>
  77. /// 物料编码
  78. /// </summary>
  79. [SugarColumn(ColumnName = "mat_code", ColumnDataType = "nvarchar", Length = 50, IsNullable = true)]
  80. public string MatCode { get; set; }
  81. /// <summary>
  82. /// 总重量
  83. /// </summary>
  84. [SugarColumn(ColumnName = "tol_weight", Length = 18, DecimalDigits = 2, IsNullable = true)]
  85. public decimal TolWeight { get; set; }
  86. /// <summary>
  87. /// 净重
  88. /// </summary>
  89. [SugarColumn(ColumnName = "net_weight", Length = 18, DecimalDigits = 2, IsNullable = true)]
  90. public decimal NetWeight { get; set; }
  91. /// <summary>
  92. /// 皮重
  93. /// </summary>
  94. [SugarColumn(ColumnName = "tare_weight", Length = 18, DecimalDigits = 2, IsNullable = true)]
  95. public decimal TareWeight { get; set; }
  96. /// <summary>
  97. /// 过账凭证号
  98. /// </summary>
  99. [SugarColumn(ColumnName = "req_id", ColumnDataType = "nvarchar", Length = 100)]
  100. public string ReqId { get; set; }
  101. /// <summary>
  102. /// 接口编码
  103. /// </summary>
  104. [SugarColumn(ColumnName = "api_code", ColumnDataType = "nvarchar", Length = 100)]
  105. public string ApiCode { get; set; }
  106. /// <summary>
  107. /// 接口名称
  108. /// </summary>
  109. [SugarColumn(ColumnName = "api_name", ColumnDataType = "nvarchar", Length = 100)]
  110. public string ApiName { get; set; }
  111. /// <summary>
  112. /// 推送次数
  113. /// </summary>
  114. [SugarColumn(ColumnName = "post_num")]
  115. public int PostNum { get; set; }
  116. /// <summary>
  117. /// 推送结果
  118. /// </summary>
  119. [SugarColumn(ColumnName = "post_result")]
  120. public int PostResult { get; set; }
  121. }
  122. }