liulingling.177216
2024-08-26 349f1cfc5fa77fbc636d542df0d8050fddec48c2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
package com.dingzhuo.energy.project.home.domain.vo;
 
import java.util.List;
 
 
/**
 * 能源监测柱状图数据 VO
 *
 * @Author: Zhujw
 * @Date: 2023/3/1
 */
//@Data
public class HomeEnergyMonitoringHistogramVO {
    private static final long serialVersionUID = 1L;
 
    /**
     * 单位信息
     */
    private String unit;
 
    /**
     * 图形数据
     */
    private List<HomeEnergyDetectionChart> chartData;
 
    public String getUnit() {
        return unit;
    }
 
    public void setUnit(String unit) {
        this.unit = unit;
    }
 
    public List<HomeEnergyDetectionChart> getChartData() {
        return chartData;
    }
 
    public void setChartData(List<HomeEnergyDetectionChart> chartData) {
        this.chartData = chartData;
    }
}