TVentilationOperation.java 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327
  1. package com.chinaitop.depot.storage.model;
  2. import java.math.BigDecimal;
  3. import java.util.Date;
  4. import com.fasterxml.jackson.annotation.JsonFormat;
  5. import io.swagger.annotations.ApiModelProperty;
  6. import lombok.Getter;
  7. import lombok.Setter;
  8. @Getter
  9. @Setter
  10. public class TVentilationOperation {
  11. //业务参数
  12. @ApiModelProperty(value = "仓房ID,业务参数")
  13. private String houseId;
  14. @ApiModelProperty(value = "主键唯一uuid")
  15. private String id;
  16. @ApiModelProperty(value = "仓房编号")
  17. private String cfbh;
  18. @ApiModelProperty(value = "仓房名称")
  19. private String cfmc;
  20. @ApiModelProperty(value = "仓房类型")
  21. private String cflx;
  22. @ApiModelProperty(value = "仓内长度")
  23. private String cncd;
  24. @ApiModelProperty(value = "仓内宽度")
  25. private String cnkd;
  26. @ApiModelProperty(value = "直径(内径)")
  27. private String zjnj;
  28. @ApiModelProperty(value = "设计存粮线高度")
  29. private String sjclxgd;
  30. @ApiModelProperty(value = "品种")
  31. private Integer pz;
  32. @ApiModelProperty(value = "数量")
  33. private String sl;
  34. @ApiModelProperty(value = "孔隙度")
  35. private String kxd;
  36. @ApiModelProperty(value = "长度")
  37. private String cd;
  38. @ApiModelProperty(value = "宽度")
  39. private String kd;
  40. @ApiModelProperty(value = "直径")
  41. private String zj;
  42. @ApiModelProperty(value = "粮堆高度")
  43. private String ldgd;
  44. @ApiModelProperty(value = "堆粮形式")
  45. private String dlxs;
  46. @ApiModelProperty(value = "通风类型")
  47. private String tflx;
  48. @ApiModelProperty(value = "风网类型")
  49. private String fwlx;
  50. @ApiModelProperty(value = "风网设置方式")
  51. private String fwszfs;
  52. @ApiModelProperty(value = "主风道截面积")
  53. private String zfdjmj;
  54. @ApiModelProperty(value = "风网开孔率")
  55. private String fwkkl;
  56. @ApiModelProperty(value = "空气途径比")
  57. private String kqtjb;
  58. @ApiModelProperty(value = "通风口设置个数")
  59. private String tfkszgs;
  60. @ApiModelProperty(value = "通风开始时间")
  61. @JsonFormat(pattern = "yyyy-MM-dd", timezone="GMT+8")
  62. private Date tfkssj;
  63. @ApiModelProperty(value = "通风结束时间")
  64. @JsonFormat(pattern = "yyyy-MM-dd", timezone="GMT+8")
  65. private Date tfjssj;
  66. @ApiModelProperty(value = "通风目的")
  67. private String tfmd;
  68. @ApiModelProperty(value = "通风作业负责人")
  69. private String tfzyfzr;
  70. @ApiModelProperty(value = "登记日期")
  71. @JsonFormat(pattern = "yyyy-MM-dd", timezone="GMT+8")
  72. private Date djrq;
  73. @ApiModelProperty(value = "通风机型号")
  74. private String tfjxh;
  75. @ApiModelProperty(value = "通风机台数")
  76. private String tfjts;
  77. @ApiModelProperty(value = "单台风机额定全压")
  78. private String dtfjedqy;
  79. @ApiModelProperty(value = "单台风机额定风量")
  80. private String dtfjedfl;
  81. @ApiModelProperty(value = "单台风机额定功率")
  82. private String dtfjedgl;
  83. @ApiModelProperty(value = "送风方式")
  84. private String sffs;
  85. @ApiModelProperty(value = "单台风机实测风量")
  86. private String dtfjscfl;
  87. @ApiModelProperty(value = "单台风机轴功率")
  88. private String dtfjzgl;
  89. @ApiModelProperty(value = "总风量")
  90. private String zfl;
  91. @ApiModelProperty(value = "单位通风量")
  92. private String dwtfl;
  93. @ApiModelProperty(value = "实测系统阻力")
  94. private String scxtzl;
  95. @ApiModelProperty(value = "总耗电量")
  96. private String zhdl;
  97. @ApiModelProperty(value = "第一阶段气温")
  98. private String oneQw;
  99. @ApiModelProperty(value = "第一阶段通风前平均粮温")
  100. private String oneTfqpjlw;
  101. @ApiModelProperty(value = "第一阶段作业时长")
  102. private String oneZysc;
  103. @ApiModelProperty(value = "第一阶段平均气湿")
  104. private String onePjqs;
  105. @ApiModelProperty(value = "第二阶段气温")
  106. private String twoQw;
  107. @ApiModelProperty(value = "第二阶段通风前平均粮温")
  108. private String twoTfqpjlw;
  109. @ApiModelProperty(value = "第二阶段作业时长")
  110. private String twoZysc;
  111. @ApiModelProperty(value = "第二阶段平均气湿")
  112. private String twoPjqs;
  113. @ApiModelProperty(value = "第三阶段气温")
  114. private String threeQw;
  115. @ApiModelProperty(value = "第三阶段通风前平均粮温")
  116. private String threeTfqpjlw;
  117. @ApiModelProperty(value = "第三阶段作业时长")
  118. private String threeZysc;
  119. @ApiModelProperty(value = "第三阶段平均气湿")
  120. private String threePjqs;
  121. @ApiModelProperty(value = "第四阶段气温")
  122. private String fourQw;
  123. @ApiModelProperty(value = "第四阶段通风前平均粮温")
  124. private String fourTfqpjlw;
  125. @ApiModelProperty(value = "第四阶段平均气湿")
  126. private String fourPjqs;
  127. @ApiModelProperty(value = "第四阶段作业时长")
  128. private String fourZysc;
  129. @ApiModelProperty(value = "通风前平均粮温")
  130. private String tfqpjlw;
  131. @ApiModelProperty(value = "通风后平均粮温")
  132. private String tfhpjlw;
  133. @ApiModelProperty(value = "降温幅度")
  134. private String jwfd;
  135. @ApiModelProperty(value = "吨粮降温能耗")
  136. private String dljwnh;
  137. @ApiModelProperty(value = "失水率")
  138. private String sslssl;
  139. @ApiModelProperty(value = "通风前平均水分")
  140. private String tfqpjsf;
  141. @ApiModelProperty(value = "通风后平均水分")
  142. private String tfhpjsf;
  143. @ApiModelProperty(value = "降水幅度")
  144. private String jsfd;
  145. @ApiModelProperty(value = "吨粮降水能耗")
  146. private String dljsnh;
  147. @ApiModelProperty(value = "保水效果评价结果")
  148. private String bsxgpjjg;
  149. @ApiModelProperty(value = "均匀性整仓")
  150. private String jyxzx;
  151. @ApiModelProperty(value = "均匀性上层")
  152. private String jyxsc;
  153. @ApiModelProperty(value = "均匀性中层")
  154. private String jyxzc;
  155. @ApiModelProperty(value = "均匀性下层")
  156. private String jyxxc;
  157. @ApiModelProperty(value = "通风前仓内温")
  158. private String tfqcnw;
  159. @ApiModelProperty(value = "通风前仓内湿")
  160. private String tfqcns;
  161. @ApiModelProperty(value = "通风前仓外温")
  162. private String tfqcww;
  163. @ApiModelProperty(value = "通风前仓外湿")
  164. private String tfqcws;
  165. @ApiModelProperty(value = "通风前最高粮温")
  166. private String tfqzglw;
  167. @ApiModelProperty(value = "通风前最低粮温")
  168. private String tfqzdlw;
  169. @ApiModelProperty(value = "通风后仓内温")
  170. private String tfhcnw;
  171. @ApiModelProperty(value = "通风后仓内湿")
  172. private String tfhcns;
  173. @ApiModelProperty(value = "通风后仓外温")
  174. private String tfhcww;
  175. @ApiModelProperty(value = "通风后仓外湿")
  176. private String tfhcws;
  177. @ApiModelProperty(value = "通风后最高粮温")
  178. private String tfhzglw;
  179. @ApiModelProperty(value = "通风后最低粮温")
  180. private String tfhzdlw;
  181. @ApiModelProperty(value = "通风前氧气")
  182. private String tfqyq;
  183. @ApiModelProperty(value = "通风前二氧化碳")
  184. private String tfqeyht;
  185. @ApiModelProperty(value = "通风前磷化氢")
  186. private String tfqlhq;
  187. @ApiModelProperty(value = "通风后氧气")
  188. private String tfhyq;
  189. @ApiModelProperty(value = "通风后二氧化碳")
  190. private String tfheyht;
  191. @ApiModelProperty(value = "通风后磷化氢")
  192. private String tfhlhq;
  193. @ApiModelProperty(value = "作业结束信息备注")
  194. private String bz;
  195. @ApiModelProperty(value = "组织id")
  196. private Integer orgId;
  197. @ApiModelProperty(value = "风道型式")
  198. private String fdxs;
  199. @ApiModelProperty(value = "支风道总长度(米)")
  200. private BigDecimal zfdzcd;
  201. @ApiModelProperty(value = "支风道截面积(平方米)")
  202. private BigDecimal zfdjmjZhi;
  203. @ApiModelProperty(value = "通风作业人员")
  204. private String tfzyry;
  205. // @ApiModelProperty(value = "作业开始信息记录时间")
  206. // private Date updatetime;
  207. @ApiModelProperty(value = "数据状态(0:作业开始保存,1:作业开始提交,2:作业结束保存,3:作业结束提交)")
  208. private String dataStatus;
  209. @ApiModelProperty(value = "作业开始信息记录人")
  210. private String zyksxxjlr;
  211. @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
  212. @ApiModelProperty(value = "作业开始信息记录时间")
  213. private Date zyksxxjlsj;
  214. @ApiModelProperty(value = "作业开始信息备注")
  215. private String zyksbz;
  216. @ApiModelProperty(value = "作业结束信息记录人")
  217. private String zyjsxxjlr;
  218. @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
  219. @ApiModelProperty(value = "作业结束信息记录时间")
  220. private Date zyjsxxjlsj;
  221. }