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;
|
}
|
}
|