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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
package com.zhitan.peakvalley.domain.vo.peakvalley;
 
/**
 * description 尖峰平谷饼状图
 *
 * @author hmj
 * @date 2024-09-24 16:39
 */
public class PeakValleyPieChatVO {
    /**
     * tip : 35.69
     * peak : 64.31
     * flat : 0.00
     * trough : 0.00
     */
 
    private String tip;
    private String peak;
    private String flat;
    private String trough;
 
    public String getTip() {
        return tip;
    }
 
    public void setTip(String tip) {
        this.tip = tip;
    }
 
    public String getPeak() {
        return peak;
    }
 
    public void setPeak(String peak) {
        this.peak = peak;
    }
 
    public String getFlat() {
        return flat;
    }
 
    public void setFlat(String flat) {
        this.flat = flat;
    }
 
    public String getTrough() {
        return trough;
    }
 
    public void setTrough(String trough) {
        this.trough = trough;
    }
}