月球大数据地理空间分析展示平台-【后端】-月球后台服务
1
13693261870
2024-11-11 fee67ca8a0760315047a52fc4101a8f4f80b7a7f
src/main/java/com/moon/server/entity/data/AnalysisResultEntity.java
@@ -6,11 +6,7 @@
import java.util.ArrayList;
import java.util.List;
/**
 * 分析结果
 * @author WWW
 * @date 2023-09-11
 */
@SuppressWarnings("ALL")
public class AnalysisResultEntity implements Serializable {
    private static final long serialVersionUID = -1237623414044281355L;
@@ -20,6 +16,11 @@
        this.avgList = new ArrayList<>();
        this.maxList = new ArrayList<>();
        this.points = new ArrayList<>();
    }
    public AnalysisResultEntity(String token) {
        this();
        this.token = token;
    }
    /**
@@ -39,6 +40,8 @@
        this.maxList.add(WebHelper.round(max, 3));
    }
    private String token;
    private String layerName;
    private List<Double> minList;
@@ -51,7 +54,17 @@
    private String info;
    private String unit;
    private List<Point> points;
    public String getToken() {
        return token;
    }
    public void setToken(String token) {
        this.token = token;
    }
    public String getLayerName() {
        return layerName;
@@ -101,6 +114,14 @@
        this.info = info;
    }
    public String getUnit() {
        return unit;
    }
    public void setUnit(String unit) {
        this.unit = unit;
    }
    public List<Point> getPoints() {
        return points;
    }