月球大数据地理空间分析展示平台-【后端】-月球后台服务
13693261870
2023-09-11 64208929b109627e5563ddceecca17551998c4d3
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
package com.moon.server.entity.data;
 
import java.io.Serializable;
 
/**
 * 分析结果
 * @author WWW
 * @date 2023-09-11
 */
public class AnalysisResultEntity implements Serializable {
    private static final long serialVersionUID = -1237623414044281355L;
 
    public AnalysisResultEntity() {
        code = 200;
    }
 
    private String layerName;
 
    private Double min;
 
    private Double avg;
 
    private Double max;
 
    private int code;
 
    private String info;
 
    public String getLayerName() {
        return layerName;
    }
 
    public void setLayerName(String layerName) {
        this.layerName = layerName;
    }
 
    public Double getMin() {
        return min;
    }
 
    public void setMin(Double min) {
        this.min = min;
    }
 
    public Double getAvg() {
        return avg;
    }
 
    public void setAvg(Double avg) {
        this.avg = avg;
    }
 
    public Double getMax() {
        return max;
    }
 
    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;
    }
}