12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- package com.welampiot.vo;
- import com.welampiot.dto.NetInfoDTO;
- import lombok.Data;
- import java.io.Serializable;
- import java.util.List;
- /**
- * ClassName: NetInfoVO
- * Package: com.welampiot.vo
- * Description:
- *
- * @Author: zhj_Start
- * @Create: 2023/7/28 - 10:02
- * @Version: v1.0
- */
- @Data
- public class NetInfoVO implements Serializable {
- private Integer total;
- private Integer page;
- private Integer count;
- private String keyword;
- private Integer areaId;
- private Integer sectionId;
- private List<Integer> sectionList;
- private List<NetInfoDTO> list;
- private Integer onlineCount; // 在线数
- private Integer welCount; // 市电数
- private Integer solarCount; // 太阳能数
- private Integer ethCount; // ETH数
- private Integer fourGCount; // 4G数
- private Integer failCount; // 故障数
- private static final long serialVersionUID = 1L;
- }
|