ChatReq.java 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361
  1. package com.slibra.business.req;
  2. import com.alibaba.fastjson2.annotation.JSONField;
  3. import com.fasterxml.jackson.annotation.JsonFormat;
  4. import com.slibra.business.domain.TXinyiChatRecord;
  5. import com.slibra.common.annotation.Excel;
  6. import lombok.AllArgsConstructor;
  7. import lombok.Builder;
  8. import lombok.Data;
  9. import lombok.NoArgsConstructor;
  10. import java.util.Date;
  11. public class ChatReq extends TXinyiChatRecord {
  12. //决策里是否携带alert的
  13. // private String feedback = "{}";
  14. private String feedback;
  15. //2024年5月28日17:38:00 新增的请求参数 调用预测接口需要传该值
  16. // private String simulate = "{}";
  17. private String simulate;
  18. /** 告警记录ID */
  19. @Excel(name = "告警记录ID")
  20. private String warningId;
  21. @Excel(name = "报警指标", readConverterExp = "存储的是字符串")
  22. private String category;
  23. //用户输入的自定义的最新数据
  24. private String rows;
  25. //2024年5月29日15:34:06 新增字段 工单的日期
  26. @JsonFormat(pattern = "yyyy-MM-dd")
  27. private Date reportDate;//yyyy-MM-dd格式的
  28. //2024年6月17日09:46:53 自定义工单相关参数新增
  29. /** 开始时间 */
  30. // @JsonFormat(pattern = "yyyy-MM-dd")
  31. private String timeBegin;
  32. /** 截止时间 */
  33. // @JsonFormat(pattern = "yyyy-MM-dd")
  34. private String timeEnd;
  35. private int whichWay;//统计方式 0:日报 1:工业库(在线仪表)
  36. /** 进水水量Q进 */
  37. private Boolean jsSlq = false;
  38. /** 进水化学需氧量COD */
  39. private Boolean jsCod = false;
  40. /** 进水总氮TN */
  41. private Boolean jsTn = false;
  42. /** 进水总磷TP */
  43. private Boolean jsTp = false;
  44. /** 进水氨氮NH₃-N */
  45. private Boolean jsNh3 = false;
  46. /** 进水悬浮物SS */
  47. private Boolean jsSs = false;
  48. /** 出水水量Q出 */
  49. private Boolean csSlqc = false;
  50. /** 出水化学需氧量COD */
  51. private Boolean csCod = false;
  52. /** 出水总氮TN */
  53. private Boolean csTn = false;
  54. /** 出水总磷TP */
  55. private Boolean csTp = false;
  56. /** 出水氨氮NH₃-N */
  57. private Boolean csNh3 = false;
  58. /** 出水悬浮物SS */
  59. private Boolean csSs = false;
  60. /** 1#好氧池硝酸盐(内回流)+ 回流进水化验机器人有效值1(硝氮1池回流机器人) */
  61. private Boolean no3Hlj1Jqr = false;
  62. /** 2#好氧池硝酸盐(内回流) + 回流进水化验机器人有效值2(硝氮2池回流机器人) */
  63. private Boolean no3Hlj2Jqr = false;
  64. /** 1#缺氧氨氮 + 化验机器人氨氮化验有效值1(氨氮1池缺氧机器人) */
  65. private Boolean nh31Jqr = false;
  66. /** 2#缺氧氨氮 + 化验机器人氨氮化验有效值2(氨氮2池缺氧机器人) */
  67. private Boolean nh32Jqr = false;
  68. /** 1#缺氧出口硝酸盐 + 缺氧出水化验机器人有效值1(硝氮1池缺氧机器人) */
  69. private Boolean no3Qyc1Jqr = false;
  70. /** 2#缺氧出-硝酸盐 + 缺氧出水化验机器人有效值2(硝氮2池缺氧机器人) */
  71. private Boolean no3Qyc2Jqr = false;
  72. /** 二沉池-正磷酸盐 + 化验机器人正磷化验有效值二沉池(正磷二沉池机器人) */
  73. private Boolean tpRccJqr = false;
  74. //2024年7月5日17:12:06 新增参数 (方便前端调试获取结果)
  75. private Double topP;
  76. private Double temperature;
  77. public Double getTopP() {
  78. return topP;
  79. }
  80. public void setTopP(Double topP) {
  81. this.topP = topP;
  82. }
  83. public Double getTemperature() {
  84. return temperature;
  85. }
  86. public void setTemperature(Double temperature) {
  87. this.temperature = temperature;
  88. }
  89. public String getFeedback() {
  90. return feedback;
  91. }
  92. public void setFeedback(String feedback) {
  93. this.feedback = feedback;
  94. }
  95. @Override
  96. public String getWarningId() {
  97. return warningId;
  98. }
  99. @Override
  100. public void setWarningId(String warningId) {
  101. this.warningId = warningId;
  102. }
  103. public String getCategory() {
  104. return category;
  105. }
  106. public void setCategory(String category) {
  107. this.category = category;
  108. }
  109. public String getRows() {
  110. return rows;
  111. }
  112. public void setRows(String rows) {
  113. this.rows = rows;
  114. }
  115. public String getSimulate() {
  116. return simulate;
  117. }
  118. public void setSimulate(String simulate) {
  119. this.simulate = simulate;
  120. }
  121. public Date getReportDate() {
  122. return reportDate;
  123. }
  124. public void setReportDate(Date reportDate) {
  125. this.reportDate = reportDate;
  126. }
  127. public String getTimeBegin() {
  128. return timeBegin;
  129. }
  130. public void setTimeBegin(String timeBegin) {
  131. this.timeBegin = timeBegin;
  132. }
  133. public String getTimeEnd() {
  134. return timeEnd;
  135. }
  136. public void setTimeEnd(String timeEnd) {
  137. this.timeEnd = timeEnd;
  138. }
  139. public int getWhichWay() {
  140. return whichWay;
  141. }
  142. public void setWhichWay(int whichWay) {
  143. this.whichWay = whichWay;
  144. }
  145. public Boolean getJsSlq() {
  146. return jsSlq;
  147. }
  148. public void setJsSlq(Boolean jsSlq) {
  149. this.jsSlq = jsSlq;
  150. }
  151. public Boolean getJsCod() {
  152. return jsCod;
  153. }
  154. public void setJsCod(Boolean jsCod) {
  155. this.jsCod = jsCod;
  156. }
  157. public Boolean getJsTn() {
  158. return jsTn;
  159. }
  160. public void setJsTn(Boolean jsTn) {
  161. this.jsTn = jsTn;
  162. }
  163. public Boolean getJsTp() {
  164. return jsTp;
  165. }
  166. public void setJsTp(Boolean jsTp) {
  167. this.jsTp = jsTp;
  168. }
  169. public Boolean getJsNh3() {
  170. return jsNh3;
  171. }
  172. public void setJsNh3(Boolean jsNh3) {
  173. this.jsNh3 = jsNh3;
  174. }
  175. public Boolean getJsSs() {
  176. return jsSs;
  177. }
  178. public void setJsSs(Boolean jsSs) {
  179. this.jsSs = jsSs;
  180. }
  181. public Boolean getCsSlqc() {
  182. return csSlqc;
  183. }
  184. public void setCsSlqc(Boolean csSlqc) {
  185. this.csSlqc = csSlqc;
  186. }
  187. public Boolean getCsCod() {
  188. return csCod;
  189. }
  190. public void setCsCod(Boolean csCod) {
  191. this.csCod = csCod;
  192. }
  193. public Boolean getCsTn() {
  194. return csTn;
  195. }
  196. public void setCsTn(Boolean csTn) {
  197. this.csTn = csTn;
  198. }
  199. public Boolean getCsTp() {
  200. return csTp;
  201. }
  202. public void setCsTp(Boolean csTp) {
  203. this.csTp = csTp;
  204. }
  205. public Boolean getCsNh3() {
  206. return csNh3;
  207. }
  208. public void setCsNh3(Boolean csNh3) {
  209. this.csNh3 = csNh3;
  210. }
  211. public Boolean getCsSs() {
  212. return csSs;
  213. }
  214. public void setCsSs(Boolean csSs) {
  215. this.csSs = csSs;
  216. }
  217. public Boolean getNo3Hlj1Jqr() {
  218. return no3Hlj1Jqr;
  219. }
  220. public void setNo3Hlj1Jqr(Boolean no3Hlj1Jqr) {
  221. this.no3Hlj1Jqr = no3Hlj1Jqr;
  222. }
  223. public Boolean getNo3Hlj2Jqr() {
  224. return no3Hlj2Jqr;
  225. }
  226. public void setNo3Hlj2Jqr(Boolean no3Hlj2Jqr) {
  227. this.no3Hlj2Jqr = no3Hlj2Jqr;
  228. }
  229. public Boolean getNh31Jqr() {
  230. return nh31Jqr;
  231. }
  232. public void setNh31Jqr(Boolean nh31Jqr) {
  233. this.nh31Jqr = nh31Jqr;
  234. }
  235. public Boolean getNh32Jqr() {
  236. return nh32Jqr;
  237. }
  238. public void setNh32Jqr(Boolean nh32Jqr) {
  239. this.nh32Jqr = nh32Jqr;
  240. }
  241. public Boolean getNo3Qyc1Jqr() {
  242. return no3Qyc1Jqr;
  243. }
  244. public void setNo3Qyc1Jqr(Boolean no3Qyc1Jqr) {
  245. this.no3Qyc1Jqr = no3Qyc1Jqr;
  246. }
  247. public Boolean getNo3Qyc2Jqr() {
  248. return no3Qyc2Jqr;
  249. }
  250. public void setNo3Qyc2Jqr(Boolean no3Qyc2Jqr) {
  251. this.no3Qyc2Jqr = no3Qyc2Jqr;
  252. }
  253. public Boolean getTpRccJqr() {
  254. return tpRccJqr;
  255. }
  256. public void setTpRccJqr(Boolean tpRccJqr) {
  257. this.tpRccJqr = tpRccJqr;
  258. }
  259. }