| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 |
- package com.welampiot.dto;
- import lombok.Data;
- import java.io.Serializable;
- import java.util.List;
- /**
- * ClassName: WifiInfoLogDTO
- * Package: com.welampiot.dto
- * Description:
- *
- * @Author: zhj_Start
- * @Create: 2023/4/12 - 11:16
- * @Version: v1.0
- */
- @Data
- public class WifiInfoLogDTO implements Serializable {
- /** 主键 **/
- private Integer id;
- /** WiFi id **/
- private Integer wifiId;
- /** 连接设备数量 **/
- private Integer deviceCount;
- /** 使用流量数 **/
- private String flow;
- /** 数据更新时间 **/
- private String updateTime;
- /** 当天使用流量 **/
- private String dayFlow;
- /** 当天设备连接数 **/
- private Integer dayDeviceCount;
- /** 累计使用流量 **/
- private String totalCom;
- /** 220v输入电压 **/
- private String voltage;
- /** 220v输入电流 **/
- private String current;
- /** 220v输入功率 **/
- private String power;
- /** DC24V输出电压 **/
- private String lna1Vol;
- /** DC24V输出电流 **/
- private String lna1Cur;
- /** DC12V1路输出电压 **/
- private String lna2Vol;
- /** DC12V1路输出电流 **/
- private String lna2Cur;
- /** DC12V2路输出电压 **/
- private String lna3Vol;
- /** DC12V2路输出电流 **/
- private String lna3Cur;
- /** 220V B路电压 **/
- private String voltageB;
- /** 220V B路电流 **/
- private String currentB;
- /** 220V B路功率(WH) **/
- private String powerB;
- /** 220V C路电压 **/
- private String voltageC;
- /** 220V C路电流 **/
- private String currentC;
- /** 220V C路功率(WH) **/
- private String powerC;
- /** 222V A路累计用电量kWh **/
- private String totalComA;
- /** 222V B路累计用电量kWh **/
- private String totalComB;
- /** 222V C路累计用电量kWh **/
- private String totalComC;
- /** 时间类型(0 一天,1 三天,2 七天,3 14天,4 时间范围,不能超过30天)**/
- private Integer dateType;
- /** 日期范围,dateType为4的时候使用,格式为(2020-11-12/2020-11-28)**/
- private Integer date;
- /** 数据类型(0 220V1路输出,1 24V输出,2 12V-1输出,3 12V-2输出,4 220V2路输出,5 220V3路输出)**/
- private Integer dataType;
- /** 获取路段id **/
- private List<Integer> sectionList;
- private Integer dayNumber;
- private Integer dayNum;
- private Integer lampPoleId;
- private String maxFlow;
- private String minFlow;
- private Integer maxDevCount;
- private Integer minDevCount;
- private String startDate;
- private String endDate;
- private static final long serialVersionUID = 1L;
- }
|