BodyAiAlarm.java 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267
  1. package com.genersoft.iot.vmp.vmanager.bean;
  2. import io.swagger.v3.oas.annotations.media.Schema;
  3. import org.springframework.web.multipart.MultipartFile;
  4. public class BodyAiAlarm {
  5. @Schema(description = "设备id")
  6. private String dev_id;
  7. @Schema(description = "通道id")
  8. private String channelId;
  9. @Schema(description = "算法类型")
  10. private String arithmetic;
  11. @Schema(description = "识别结果")
  12. private String reco_info;
  13. @Schema(description = "固件版本")
  14. private String firmware_version;
  15. @Schema(description = "时间戳")
  16. private String timestamp;
  17. @Schema(description = "电池电压")
  18. private String battery;
  19. @Schema(description = "信号值")
  20. private String signal;
  21. @Schema(description = "环境温度")
  22. private String temp_env;
  23. @Schema(description = "cpu温度")
  24. private String cpu_env;
  25. @Schema(description = "算法类型,等效 arithmetic")
  26. private String type;
  27. @Schema(description = "icharge")
  28. private String icharge;
  29. @Schema(description = "iload")
  30. private String iload;
  31. @Schema(description = "vcharge")
  32. private String vcharge;
  33. @Schema(description = "焦距,放大倍数")
  34. private String zoom_rate;
  35. @Schema(description = "设备ccid")
  36. private String ccid;
  37. @Schema(description = "upload")
  38. private MultipartFile upload;
  39. @Schema(description = "upload0")
  40. private MultipartFile upload0;
  41. @Schema(description = "upload1")
  42. private MultipartFile upload1;
  43. @Schema(description = "upload2")
  44. private MultipartFile upload2;
  45. @Schema(description = "upload3")
  46. private MultipartFile upload3;
  47. @Schema(description = "upload4")
  48. private MultipartFile upload4;
  49. @Schema(description = "upload5")
  50. private MultipartFile upload5;
  51. @Schema(description = "upload6")
  52. private MultipartFile upload6;
  53. @Schema(description = "upload7")
  54. private MultipartFile upload7;
  55. public String getDev_id() {
  56. return dev_id;
  57. }
  58. public void setDev_id(String dev_id) {
  59. this.dev_id = dev_id;
  60. }
  61. public String getChannelId() {
  62. return channelId;
  63. }
  64. public void setChannelId(String channelId) {
  65. this.channelId = channelId;
  66. }
  67. public String getArithmetic() {
  68. return arithmetic;
  69. }
  70. public void setArithmetic(String arithmetic) {
  71. this.arithmetic = arithmetic;
  72. }
  73. public String getReco_info() {
  74. return reco_info;
  75. }
  76. public void setReco_info(String reco_info) {
  77. this.reco_info = reco_info;
  78. }
  79. public String getFirmware_version() {
  80. return firmware_version;
  81. }
  82. public void setFirmware_version(String firmware_version) {
  83. this.firmware_version = firmware_version;
  84. }
  85. public String getTimestamp() {
  86. return timestamp;
  87. }
  88. public void setTimestamp(String timestamp) {
  89. this.timestamp = timestamp;
  90. }
  91. public String getBattery() {
  92. return battery;
  93. }
  94. public void setBattery(String battery) {
  95. this.battery = battery;
  96. }
  97. public String getSignal() {
  98. return signal;
  99. }
  100. public void setSignal(String signal) {
  101. this.signal = signal;
  102. }
  103. public String getTemp_env() {
  104. return temp_env;
  105. }
  106. public void setTemp_env(String temp_env) {
  107. this.temp_env = temp_env;
  108. }
  109. public String getCpu_env() {
  110. return cpu_env;
  111. }
  112. public void setCpu_env(String cpu_env) {
  113. this.cpu_env = cpu_env;
  114. }
  115. public String getType() {
  116. return type;
  117. }
  118. public void setType(String type) {
  119. this.type = type;
  120. }
  121. public String getIcharge() {
  122. return icharge;
  123. }
  124. public void setIcharge(String icharge) {
  125. this.icharge = icharge;
  126. }
  127. public String getIload() {
  128. return iload;
  129. }
  130. public void setIload(String iload) {
  131. this.iload = iload;
  132. }
  133. public String getVcharge() {
  134. return vcharge;
  135. }
  136. public void setVcharge(String vcharge) {
  137. this.vcharge = vcharge;
  138. }
  139. public String getZoom_rate() {
  140. return zoom_rate;
  141. }
  142. public void setZoom_rate(String zoom_rate) {
  143. this.zoom_rate = zoom_rate;
  144. }
  145. public String getCcid() {
  146. return ccid;
  147. }
  148. public void setCcid(String ccid) {
  149. this.ccid = ccid;
  150. }
  151. public MultipartFile getUpload() {
  152. return upload;
  153. }
  154. public void setUpload(MultipartFile upload) {
  155. this.upload = upload;
  156. }
  157. public MultipartFile getUpload0() {
  158. return upload0;
  159. }
  160. public void setUpload0(MultipartFile upload0) {
  161. this.upload0 = upload0;
  162. }
  163. public MultipartFile getUpload1() {
  164. return upload1;
  165. }
  166. public void setUpload1(MultipartFile upload1) {
  167. this.upload1 = upload1;
  168. }
  169. public MultipartFile getUpload2() {
  170. return upload2;
  171. }
  172. public void setUpload2(MultipartFile upload2) {
  173. this.upload2 = upload2;
  174. }
  175. public MultipartFile getUpload3() {
  176. return upload3;
  177. }
  178. public void setUpload3(MultipartFile upload3) {
  179. this.upload3 = upload3;
  180. }
  181. public MultipartFile getUpload4() {
  182. return upload4;
  183. }
  184. public void setUpload4(MultipartFile upload4) {
  185. this.upload4 = upload4;
  186. }
  187. public MultipartFile getUpload5() {
  188. return upload5;
  189. }
  190. public void setUpload5(MultipartFile upload5) {
  191. this.upload5 = upload5;
  192. }
  193. public MultipartFile getUpload6() {
  194. return upload6;
  195. }
  196. public void setUpload6(MultipartFile upload6) {
  197. this.upload6 = upload6;
  198. }
  199. public MultipartFile getUpload7() {
  200. return upload7;
  201. }
  202. public void setUpload7(MultipartFile upload7) {
  203. this.upload7 = upload7;
  204. }
  205. }