月球大数据地理空间分析展示平台-【后端】-月球后台服务
13693261870
2023-09-11 64208929b109627e5563ddceecca17551998c4d3
src/main/java/com/moon/server/entity/data/AnalysisResultEntity.java
@@ -11,6 +11,7 @@
    private static final long serialVersionUID = -1237623414044281355L;
    public AnalysisResultEntity() {
        code = 200;
    }
    private String layerName;
@@ -20,6 +21,10 @@
    private Double avg;
    private Double max;
    private int code;
    private String info;
    public String getLayerName() {
        return layerName;
@@ -52,4 +57,20 @@
    public void setMax(Double max) {
        this.max = max;
    }
    public int getCode() {
        return code;
    }
    public void setCode(int code) {
        this.code = code;
    }
    public String getInfo() {
        return info;
    }
    public void setInfo(String info) {
        this.info = info;
    }
}