|
@@ -0,0 +1,279 @@
|
|
|
+package com.bosshand.virgo.api.test.model;
|
|
|
+
|
|
|
+import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 模拟设备监测
|
|
|
+ */
|
|
|
+public class Monitoring {
|
|
|
+
|
|
|
+ private long id;
|
|
|
+ private long organizationId;
|
|
|
+ private long projectId;
|
|
|
+ private long projectItemId;
|
|
|
+ private long projectItemTargetId;
|
|
|
+ private long projectItemTargetRoomId;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 系统类型 1、电气系统 2、暖通系统 3、给排水系统 4、安防系统 5、电梯系统 6、环境系统
|
|
|
+ */
|
|
|
+ private int type;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 设备id
|
|
|
+ */
|
|
|
+ private long deviceId;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 设备类型
|
|
|
+ */
|
|
|
+ private long deviceType;
|
|
|
+
|
|
|
+ private String startDate;
|
|
|
+ private String endDate;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 记录时间
|
|
|
+ */
|
|
|
+ @JsonFormat(shape=JsonFormat.Shape.STRING,pattern="yyyy-MM-dd HH:mm:ss",timezone="GMT+8")
|
|
|
+ private String date;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 控制温度
|
|
|
+ */
|
|
|
+ private String controlTemperature;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 供水温度
|
|
|
+ */
|
|
|
+ private String supplyWaterTemperature;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 回水温度
|
|
|
+ */
|
|
|
+ private String backWaterTemperature;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 非烟温度
|
|
|
+ */
|
|
|
+ private String nonSmokingTemperature;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 介质压力
|
|
|
+ */
|
|
|
+ private String mediumPressure;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 介质温度
|
|
|
+ */
|
|
|
+ private String mediumTemperature;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 瞬时流量
|
|
|
+ */
|
|
|
+ private String instantaneousFlowRate;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 机组负荷
|
|
|
+ */
|
|
|
+ private String unitLoad;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 故障
|
|
|
+ */
|
|
|
+ private String fault;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 设定温度
|
|
|
+ */
|
|
|
+ private String setTemperature;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 设启停状态 0、关闭 1、开始 2、故障
|
|
|
+ */
|
|
|
+ private int state;
|
|
|
+
|
|
|
+ public long getId() {
|
|
|
+ return id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setId(long id) {
|
|
|
+ this.id = id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public long getOrganizationId() {
|
|
|
+ return organizationId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setOrganizationId(long organizationId) {
|
|
|
+ this.organizationId = organizationId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public long getProjectId() {
|
|
|
+ return projectId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setProjectId(long projectId) {
|
|
|
+ this.projectId = projectId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public long getProjectItemId() {
|
|
|
+ return projectItemId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setProjectItemId(long projectItemId) {
|
|
|
+ this.projectItemId = projectItemId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public long getProjectItemTargetId() {
|
|
|
+ return projectItemTargetId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setProjectItemTargetId(long projectItemTargetId) {
|
|
|
+ this.projectItemTargetId = projectItemTargetId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public long getProjectItemTargetRoomId() {
|
|
|
+ return projectItemTargetRoomId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setProjectItemTargetRoomId(long projectItemTargetRoomId) {
|
|
|
+ this.projectItemTargetRoomId = projectItemTargetRoomId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public int getType() {
|
|
|
+ return type;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setType(int type) {
|
|
|
+ this.type = type;
|
|
|
+ }
|
|
|
+
|
|
|
+ public long getDeviceId() {
|
|
|
+ return deviceId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDeviceId(long deviceId) {
|
|
|
+ this.deviceId = deviceId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public long getDeviceType() {
|
|
|
+ return deviceType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDeviceType(long deviceType) {
|
|
|
+ this.deviceType = deviceType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getStartDate() {
|
|
|
+ return startDate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setStartDate(String startDate) {
|
|
|
+ this.startDate = startDate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getEndDate() {
|
|
|
+ return endDate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setEndDate(String endDate) {
|
|
|
+ this.endDate = endDate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getDate() {
|
|
|
+ return date;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDate(String date) {
|
|
|
+ this.date = date;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getControlTemperature() {
|
|
|
+ return controlTemperature;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setControlTemperature(String controlTemperature) {
|
|
|
+ this.controlTemperature = controlTemperature;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getSupplyWaterTemperature() {
|
|
|
+ return supplyWaterTemperature;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSupplyWaterTemperature(String supplyWaterTemperature) {
|
|
|
+ this.supplyWaterTemperature = supplyWaterTemperature;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getBackWaterTemperature() {
|
|
|
+ return backWaterTemperature;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setBackWaterTemperature(String backWaterTemperature) {
|
|
|
+ this.backWaterTemperature = backWaterTemperature;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getNonSmokingTemperature() {
|
|
|
+ return nonSmokingTemperature;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setNonSmokingTemperature(String nonSmokingTemperature) {
|
|
|
+ this.nonSmokingTemperature = nonSmokingTemperature;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getMediumPressure() {
|
|
|
+ return mediumPressure;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMediumPressure(String mediumPressure) {
|
|
|
+ this.mediumPressure = mediumPressure;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getMediumTemperature() {
|
|
|
+ return mediumTemperature;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMediumTemperature(String mediumTemperature) {
|
|
|
+ this.mediumTemperature = mediumTemperature;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getInstantaneousFlowRate() {
|
|
|
+ return instantaneousFlowRate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setInstantaneousFlowRate(String instantaneousFlowRate) {
|
|
|
+ this.instantaneousFlowRate = instantaneousFlowRate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getUnitLoad() {
|
|
|
+ return unitLoad;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUnitLoad(String unitLoad) {
|
|
|
+ this.unitLoad = unitLoad;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getFault() {
|
|
|
+ return fault;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setFault(String fault) {
|
|
|
+ this.fault = fault;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getSetTemperature() {
|
|
|
+ return setTemperature;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSetTemperature(String setTemperature) {
|
|
|
+ this.setTemperature = setTemperature;
|
|
|
+ }
|
|
|
+
|
|
|
+ public int getState() {
|
|
|
+ return state;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setState(int state) {
|
|
|
+ this.state = state;
|
|
|
+ }
|
|
|
+}
|