|
@@ -0,0 +1,145 @@
|
|
|
+package com.project.zcustom.domain.addional;
|
|
|
+
|
|
|
+import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
+import com.fasterxml.jackson.annotation.JsonInclude;
|
|
|
+import io.swagger.annotations.ApiModel;
|
|
|
+import io.swagger.annotations.ApiModelProperty;
|
|
|
+import lombok.Data;
|
|
|
+import lombok.EqualsAndHashCode;
|
|
|
+import lombok.ToString;
|
|
|
+import lombok.experimental.Accessors;
|
|
|
+
|
|
|
+@Data
|
|
|
+@Accessors(chain = true)
|
|
|
+@ToString(callSuper = true)
|
|
|
+@EqualsAndHashCode(callSuper = false)
|
|
|
+@TableName("large_plat_building_control")
|
|
|
+@ApiModel(value = "large_plat_building_control实体类")
|
|
|
+@JsonInclude(JsonInclude.Include.NON_NULL)
|
|
|
+public class LargeBuildingControl {
|
|
|
+ /**
|
|
|
+ * id
|
|
|
+ */
|
|
|
+ @TableId(value = "id")
|
|
|
+ @ApiModelProperty("id")
|
|
|
+ private Long id;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 分类用电初始化数据json(楼宇本周用电量)
|
|
|
+ */
|
|
|
+ @ApiModelProperty("分类用电初始化数据json(楼宇本周用电量)")
|
|
|
+ private String weekElectricity;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 机房总用电量二级分类json(楼宇本周用电量)
|
|
|
+ */
|
|
|
+ @ApiModelProperty("机房总用电量二级分类json(楼宇本周用电量)")
|
|
|
+ private String roomElectricity;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 楼宇今日用电量json
|
|
|
+ */
|
|
|
+ @ApiModelProperty("楼宇今日用电量json")
|
|
|
+ private String todayElectricity;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 楼宇每月用电量json (配电室1)
|
|
|
+ */
|
|
|
+ @ApiModelProperty("楼宇每月用电量json (配电室1)")
|
|
|
+ private String monthElectricityOne;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 楼宇每月用电量json (配电室2)
|
|
|
+ */
|
|
|
+ @ApiModelProperty("楼宇每月用电量json (配电室2)")
|
|
|
+ private String monthElectricityTwo;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 楼宇每月用电量json (配电室3)
|
|
|
+ */
|
|
|
+ @ApiModelProperty("楼宇每月用电量json (配电室3)")
|
|
|
+ private String monthElectricityThree;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 配电室重要回路负荷情况json (配电室1)
|
|
|
+ */
|
|
|
+ @ApiModelProperty("配电室重要回路负荷情况json (配电室1)")
|
|
|
+ private String roomLoadOne;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 配电室重要回路负荷情况json (配电室2)
|
|
|
+ */
|
|
|
+ @ApiModelProperty("配电室重要回路负荷情况json (配电室2)")
|
|
|
+ private String roomLoadTwo;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 配电室重要回路负荷情况json (配电室3)
|
|
|
+ */
|
|
|
+ @ApiModelProperty("配电室重要回路负荷情况json (配电室3)")
|
|
|
+ private String roomLoadThree;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 楼宇中当前告警的设备json
|
|
|
+ */
|
|
|
+ @ApiModelProperty("楼宇中当前告警的设备json")
|
|
|
+ private String warnDevice;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 空调水浸总数
|
|
|
+ */
|
|
|
+ @ApiModelProperty("空调水浸总数")
|
|
|
+ private Long waterDeviceAirNum;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 水箱水位情况json(23层)
|
|
|
+ */
|
|
|
+ @ApiModelProperty("水箱水位情况json(23层)")
|
|
|
+ private String waterStateOne;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 水箱水位情况json(-2层)
|
|
|
+ */
|
|
|
+ @ApiModelProperty("水箱水位情况json(-2层)")
|
|
|
+ private String waterStateTwo;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 中控水浸正常数
|
|
|
+ */
|
|
|
+ @ApiModelProperty("中控水浸正常数")
|
|
|
+ private Long waterControlNormalNum;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 中控水浸异常数
|
|
|
+ */
|
|
|
+ @ApiModelProperty("中控水浸异常数")
|
|
|
+ private Long waterControlAbnormalNum;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 告警事件的历史统计json
|
|
|
+ */
|
|
|
+ @ApiModelProperty("告警事件的历史统计json")
|
|
|
+ private String warnEventStatistics;
|
|
|
+
|
|
|
+ public LargeBuildingControl() {
|
|
|
+ }
|
|
|
+
|
|
|
+ public LargeBuildingControl(String weekElectricity, String roomElectricity, String todayElectricity, String monthElectricityOne, String monthElectricityTwo, String monthElectricityThree, String roomLoadOne, String roomLoadTwo, String roomLoadThree, String warnDevice, Long waterDeviceAirNum, String waterStateOne, String waterStateTwo, Long waterControlNormalNum, Long waterControlAbnormalNum, String warnEventStatistics) {
|
|
|
+ this.weekElectricity = weekElectricity;
|
|
|
+ this.roomElectricity = roomElectricity;
|
|
|
+ this.todayElectricity = todayElectricity;
|
|
|
+ this.monthElectricityOne = monthElectricityOne;
|
|
|
+ this.monthElectricityTwo = monthElectricityTwo;
|
|
|
+ this.monthElectricityThree = monthElectricityThree;
|
|
|
+ this.roomLoadOne = roomLoadOne;
|
|
|
+ this.roomLoadTwo = roomLoadTwo;
|
|
|
+ this.roomLoadThree = roomLoadThree;
|
|
|
+ this.warnDevice = warnDevice;
|
|
|
+ this.waterDeviceAirNum = waterDeviceAirNum;
|
|
|
+ this.waterStateOne = waterStateOne;
|
|
|
+ this.waterStateTwo = waterStateTwo;
|
|
|
+ this.waterControlNormalNum = waterControlNormalNum;
|
|
|
+ this.waterControlAbnormalNum = waterControlAbnormalNum;
|
|
|
+ this.warnEventStatistics = warnEventStatistics;
|
|
|
+ }
|
|
|
+}
|