ustcyc
2025-01-07 de5d55508afd27fb2b47e6d4d6fd9984525c222c
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
package com.zhitan.home.domain.vo;
 
import lombok.Getter;
import lombok.Setter;
 
/**
 * description todu
 *
 * @author hmj
 * @date 2024-11-01 15:12
 */
@Getter
@Setter
public class HomePeakValleyVO {
    //尖、峰、平、谷 时段
    public String timeType;
 
    //尖、峰、平、谷 时段
    public String timeName;
    
    //使用量
    public Double count;
    
    //百分比
    public Double percentage;
}