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.
27 lines
406 B
27 lines
406 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 EnergyPreDTO { |
|
|
|
/** |
|
* 顶部数据 |
|
*/ |
|
private EnergyPreTopDataDTO topData; |
|
|
|
/** |
|
* 折线图数据 |
|
*/ |
|
private EnergyPreEchartDataDTO echartData; |
|
|
|
}
|
|
|