You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
498 B
37 lines
498 B
package com.mh.user.dto; |
|
|
|
import lombok.Getter; |
|
import lombok.Setter; |
|
|
|
/** |
|
* @author LJF |
|
* @version 1.0 |
|
* @project CHWS |
|
* @description 用能预测前端类 |
|
* @date 2024-05-09 17:31:27 |
|
*/ |
|
@Setter |
|
@Getter |
|
public class EnergyPreEchartDataDTO { |
|
|
|
/** |
|
* 时间 |
|
*/ |
|
private String curDate; |
|
|
|
/** |
|
* 实际值 |
|
*/ |
|
private String curData; |
|
|
|
/** |
|
* 预测值 |
|
*/ |
|
private String preData; |
|
|
|
/** |
|
* 误差值 |
|
*/ |
|
private String errorData; |
|
|
|
}
|
|
|