|
|
@@ -0,0 +1,136 @@
|
|
|
+package com.silence.commonframe.bean;
|
|
|
+
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
+public class AirGuardBean {
|
|
|
+
|
|
|
+ /**
|
|
|
+ * code : 0
|
|
|
+ * msg : success
|
|
|
+ * data : [{"id":"10797825afd744a8b5d6d78bd32bd5c7","deviceId":"H030000000000001","deviceName":"测试空气卫士0001","buzzerState":"1","isValid":"1","userIdCreate":null,"gmtCreate":"2019-06-17 14:42:20","userIdUpdate":null,"gmtUpdate":null}]
|
|
|
+ */
|
|
|
+
|
|
|
+ private int code;
|
|
|
+ private String msg;
|
|
|
+ private List<DataBean> data;
|
|
|
+
|
|
|
+ public int getCode() {
|
|
|
+ return code;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCode(int code) {
|
|
|
+ this.code = code;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getMsg() {
|
|
|
+ return msg;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMsg(String msg) {
|
|
|
+ this.msg = msg;
|
|
|
+ }
|
|
|
+
|
|
|
+ public List<DataBean> getData() {
|
|
|
+ return data;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setData(List<DataBean> data) {
|
|
|
+ this.data = data;
|
|
|
+ }
|
|
|
+
|
|
|
+ public static class DataBean {
|
|
|
+ /**
|
|
|
+ * id : 10797825afd744a8b5d6d78bd32bd5c7
|
|
|
+ * deviceId : H030000000000001
|
|
|
+ * deviceName : 测试空气卫士0001
|
|
|
+ * buzzerState : 1
|
|
|
+ * isValid : 1
|
|
|
+ * userIdCreate : null
|
|
|
+ * gmtCreate : 2019-06-17 14:42:20
|
|
|
+ * userIdUpdate : null
|
|
|
+ * gmtUpdate : null
|
|
|
+ */
|
|
|
+
|
|
|
+ private String id;
|
|
|
+ private String deviceId;
|
|
|
+ private String deviceName;
|
|
|
+ private String buzzerState;
|
|
|
+ private String isValid;
|
|
|
+ private Object userIdCreate;
|
|
|
+ private String gmtCreate;
|
|
|
+ private Object userIdUpdate;
|
|
|
+ private Object gmtUpdate;
|
|
|
+
|
|
|
+ public String getId() {
|
|
|
+ return id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setId(String id) {
|
|
|
+ this.id = id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getDeviceId() {
|
|
|
+ return deviceId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDeviceId(String deviceId) {
|
|
|
+ this.deviceId = deviceId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getDeviceName() {
|
|
|
+ return deviceName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDeviceName(String deviceName) {
|
|
|
+ this.deviceName = deviceName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getBuzzerState() {
|
|
|
+ return buzzerState;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setBuzzerState(String buzzerState) {
|
|
|
+ this.buzzerState = buzzerState;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getIsValid() {
|
|
|
+ return isValid;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setIsValid(String isValid) {
|
|
|
+ this.isValid = isValid;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Object getUserIdCreate() {
|
|
|
+ return userIdCreate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUserIdCreate(Object userIdCreate) {
|
|
|
+ this.userIdCreate = userIdCreate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getGmtCreate() {
|
|
|
+ return gmtCreate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setGmtCreate(String gmtCreate) {
|
|
|
+ this.gmtCreate = gmtCreate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Object getUserIdUpdate() {
|
|
|
+ return userIdUpdate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUserIdUpdate(Object userIdUpdate) {
|
|
|
+ this.userIdUpdate = userIdUpdate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Object getGmtUpdate() {
|
|
|
+ return gmtUpdate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setGmtUpdate(Object gmtUpdate) {
|
|
|
+ this.gmtUpdate = gmtUpdate;
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|