|
@@ -6,6 +6,7 @@ import io.swagger.annotations.ApiModelProperty;
|
|
|
import lombok.Data;
|
|
|
|
|
|
import java.io.Serializable;
|
|
|
+import java.time.LocalDateTime;
|
|
|
|
|
|
/**
|
|
|
* 能耗概况
|
|
@@ -22,6 +23,8 @@ public class EnergyEntity extends BaseEntity implements Serializable {
|
|
|
@ApiModelProperty(value = "类型, detail:详情, current:当前值, yearAvg:近三年均值,monthUp:月度-同比增长, monthAvg:月度节能情况-均值")
|
|
|
private String type;
|
|
|
|
|
|
+ @ApiModelProperty(value = "用户更新时间")
|
|
|
+ private String userUpdateTime;
|
|
|
|
|
|
|
|
|
|