12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- package com.bizmatics.service.vo;
- import lombok.Data;
- import org.bouncycastle.asn1.cmc.LraPopWitness;
- /**
- * @author yq
- * @date 2021/7/7 15:10
- */
- @Data
- public class DeviceCountVO {
- /**
- * 正常
- */
- private Integer normalCount;
- /**
- * 离线
- */
- private Integer offLineCount;
- /**
- * 故障
- */
- private Integer faultCount;
- /**
- * 告警
- */
- private Integer deviceCount;
- /**
- * 站点数量/设备数量
- */
- private Integer count;
- /**
- * 设备数量
- */
- private Integer siteDeviceCount;
- /**
- * 用电量
- */
- private Integer epCount;
- /**
- * 视频量
- */
- private Integer videoCount;
- }
|