admin
2022-03-25 17055fd8d36504b79a5def28f5d4b4740faf012d
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
package org.yeshi.utils.statistic;
 
import java.math.BigDecimal;
 
/**
 * @author hxh
 * @title: StatisticNumberResult
 * @description: 统计数值结果
 * @date 2021/11/18 18:53
 */
public class StatisticValueResult {
    private String time;
    private BigDecimal value;
 
    public String getTime() {
        return time;
    }
 
    public void setTime(String time) {
        this.time = time;
    }
 
    public BigDecimal getValue() {
        return value;
    }
 
    public void setValue(BigDecimal value) {
        this.value = value;
    }
}