代码提交

This commit is contained in:
2023-06-21 09:20:53 +08:00
parent c5d469f6d1
commit 879d90d579
4 changed files with 44 additions and 0 deletions

View File

@@ -32,11 +32,30 @@ public class StatisticalDataDTO {
@Column(name = "value_type")
private String valueType;
/**
* 指标值
*/
private Double value;
/**
* 指标名称
*/
private String statisticalName;
/**
* 指标
*/
private String target;
/**
* 指标最大值
*/
private Double maxValue;
/**
* 指标最小值
*/
private Double minValue;
}