package com.welampiot.vo; import com.welampiot.dto.ManholeDTO; import lombok.Data; import java.io.Serializable; import java.util.List; /** * ClassName: ManholeVO * Package: com.welampiot.vo * Description: * * @Author: zhj_Start * @Create: 2023/4/10 - 10:36 * @Version: v1.0 */ @Data public class ManholeVO implements Serializable { /** 设备总数 **/ private Integer total; /** 正常设备数 **/ private Integer normalCount; /** 在线设备数 **/ private Integer onlineCount; /** 报警数 **/ private Integer alarmCount; /** 故障数 **/ private Integer faultCount; /** 已完成故障数 **/ private Integer finishFaultCount; /** 处理中故障数 **/ private Integer ingFaultCount; /** 未指派故障数 **/ private Integer notFaultCount; /** 新建设备数 **/ private Integer newCount; private String path; private List list; private static final long serialVersionUID = 1L; }