月球大数据地理空间分析展示平台-【后端】-月球后台服务
13693261870
2023-09-10 1052cd1f5ea5d3e9fad2c332e5bd8fba4af6710c
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
77
78
79
package com.moon.server.entity.data;
 
import com.fasterxml.jackson.annotation.JsonIgnore;
 
import java.io.Serializable;
 
/**
 * @author LJW
 * @date 2023-09-07 20:08
 */
public class ImageEntity implements Serializable {
    private static final long serialVersionUID = -3501191218555394360L;
 
    private String id;
 
    private String name;
 
    @JsonIgnore
    private String path;
 
    @JsonIgnore
    private String geometryString;
 
    @JsonIgnore
    private int pointSize = 1;
 
    private Object result;
 
    public ImageEntity() {
    }
 
    public String getId() {
        return id;
    }
 
    public void setId(String id) {
        this.id = id;
    }
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public String getPath() {
        return path;
    }
 
    public void setPath(String path) {
        this.path = path;
    }
 
    public String getGeometryString() {
        return geometryString;
    }
 
    public void setGeometryString(String geometryString) {
        this.geometryString = geometryString;
    }
 
    public int getPointSize() {
        return pointSize;
    }
 
    public void setPointSize(int pointSize) {
        this.pointSize = pointSize;
    }
 
    public Object getResult() {
        return result;
    }
 
    public void setResult(Object result) {
        this.result = result;
    }
}