123456789101112131415161718192021222324252627282930313233343536373839404142 |
- package com.welampiot.vo;
- import com.welampiot.dto.CableDTO;
- import lombok.Data;
- import java.io.Serializable;
- import java.util.List;
- /**
- * ClassName: CableVO
- * Package: com.welampiot.vo
- * Description:
- *
- * @Author: zhj_Start
- * @Create: 2023/4/21 - 11:21
- * @Version: v1.0
- */
- @Data
- public class CableVO implements Serializable {
- private Integer total;//设备总数
- private Integer onlineCount;//在线数
- private Integer tempAlarmCount;//高温告警数
- private Integer waterAlarmCount;//水浸告警数
- private Integer manholeAlarmCount;//井盖位移告警数
- private Integer ch4AlarmCount;//ch4告警数
- private Integer co2AlarmCount;//co2告警数
- private Integer h2sAlarmCount;//h2s告警数
- private Integer o2AlarmCount;//o2告警数
- private List<CableDTO> list;
- private static final long serialVersionUID = 1L;
- }
|