package com.ld.igds.es.dto; import lombok.Data; import com.bstek.dorado.annotation.PropertyDef; /** * 能耗统计信息 * @author: andy.jia * @description: * @version: * @data:2020年2月17日 * */ @Data public class EsSummary { @PropertyDef(label = "有功电能") private Double epSum = 0.0; @PropertyDef(label = "无功电能") private Double eqSum = 0.0; @PropertyDef(label = "总电能") private Double esSum = 0.0; @PropertyDef(label = "当前用能,可能是当日,当月或者某段时间") private Double esCur = 0.0; @PropertyDef(label = "环比") private Double esMom = 0.0; @PropertyDef(label = "同比") private Double esYoy = 0.0; @PropertyDef(label = "分组标记,有可能是仓库编码,有可能是年月日,根据需要而定") private String groupTag; private String depotName; }