|
@@ -0,0 +1,44 @@
|
|
|
+package com.jiayue.ipfcst.console.dto;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 通用查询请求结果 DTO
|
|
|
+ *
|
|
|
+ * @author whc
|
|
|
+ * @version 2.0
|
|
|
+ * @since 2021/9/26
|
|
|
+ */
|
|
|
+public class ResponseResults {
|
|
|
+ //设备id
|
|
|
+ private String deviceId;
|
|
|
+ //结果数组
|
|
|
+ private ResponseRows rows;
|
|
|
+ //测点ID
|
|
|
+ private String[] sensorIds;
|
|
|
+
|
|
|
+ public String getDeviceId() {
|
|
|
+ return deviceId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDeviceId(String deviceId) {
|
|
|
+ this.deviceId = deviceId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public ResponseRows getRows() {
|
|
|
+ return rows;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRows(ResponseRows rows) {
|
|
|
+ this.rows = rows;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String[] getSensorIds() {
|
|
|
+ return sensorIds;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSensorIds(String[] sensorIds) {
|
|
|
+ this.sensorIds = sensorIds;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+}
|