zj
2025-02-25 dd315d5732e14fcf3df71e0cf213cc442bd8607b
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
package project.data.internal;
 
public class HighLow {
    
    private Double high;
 
    private Double low;
 
    public Double getHigh() {
        return high;
    }
 
    public void setHigh(Double high) {
        this.high = high;
    }
 
    public Double getLow() {
        return low;
    }
 
    public void setLow(Double low) {
        this.low = low;
    }
 
}