package com.ruoyi.http.vo;
|
|
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
|
import lombok.Data;
|
|
/**
|
* 电表统计数据记录
|
*/
|
@Data
|
public class StatisticEleRecordVo {
|
|
private Long id;
|
|
@Excel(name = "时间标识")
|
private String timeKey;
|
|
@Excel(name = "电表ID")
|
private Long meterId;
|
|
@Excel(name = "电表名称")
|
private String meterName;
|
|
@Excel(name = "表地址")
|
private String address;
|
|
@Excel(name = "倍率")
|
private Integer ratio;
|
|
@Excel(name = "上次电量")
|
private Double prevReading;
|
|
@Excel(name = "本次电量")
|
private Double currReading;
|
|
@Excel(name = "本次用电量(kWh)")
|
private Double totalConsumption;
|
|
@Excel(name = "抄表方式")
|
private String readingMethod;
|
|
@Excel(name = "开始时间")
|
private String startTime;
|
|
@Excel(name = "结束时间")
|
private String endTime;
|
|
@Excel(name = "尖峰(kWh)")
|
private Double sharpConsumption;
|
|
@Excel(name = "峰(kWh)")
|
private Double peakConsumption;
|
|
@Excel(name = "平(kWh)")
|
private Double flatConsumption;
|
|
@Excel(name = "谷(kWh)")
|
private Double valleyConsumption;
|
|
@Excel(name = "起始读数")
|
private String startReading;
|
|
@Excel(name = "结束读数")
|
private String endReading;
|
|
/** 兼容字段,页面不展示 */
|
private String collectorNo;
|
}
|