月球大数据地理空间分析展示平台-【后端】-月球后台服务
1
13693261870
2024-11-11 fee67ca8a0760315047a52fc4101a8f4f80b7a7f
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
package com.moon.server.entity.show;
 
import com.alibaba.fastjson.annotation.JSONField;
import com.fasterxml.jackson.annotation.JsonInclude;
 
import java.io.Serializable;
import java.util.List;
 
@SuppressWarnings("ALL")
public class PipelineEntity implements Serializable {
    private static final long serialVersionUID = 1L;
 
    @JSONField(serialize = false)
    @JsonInclude(JsonInclude.Include.NON_NULL)
    private List<String> tabs;
 
    @JSONField(serialize = false)
    @JsonInclude(JsonInclude.Include.NON_NULL)
    private String pwd;
 
    private Integer gid;
 
    private String pipeName;
 
    private String segName;
 
    private String acrossName;
 
    private double acrossLength;
 
    private String remarks;
 
    private String wkt;
 
    public Integer getGid() {
        return gid;
    }
 
    public void setGid(Integer gid) {
        this.gid = gid;
    }
 
    public List<String> getTabs() {
        return tabs;
    }
 
    public void setTabs(List<String> tabs) {
        this.tabs = tabs;
    }
 
    public String getPwd() {
        return pwd;
    }
 
    public void setPwd(String pwd) {
        this.pwd = pwd;
    }
 
    public String getPipeName() {
        return pipeName;
    }
 
    public void setPipeName(String pipeName) {
        this.pipeName = pipeName;
    }
 
    public String getSegName() {
        return segName;
    }
 
    public void setSegName(String segName) {
        this.segName = segName;
    }
 
    public String getAcrossName() {
        return acrossName;
    }
 
    public void setAcrossName(String acrossName) {
        this.acrossName = acrossName;
    }
 
    public double getAcrossLength() {
        return acrossLength;
    }
 
    public void setAcrossLength(double acrossLength) {
        this.acrossLength = acrossLength;
    }
 
    public String getRemarks() {
        return remarks;
    }
 
    public void setRemarks(String remarks) {
        this.remarks = remarks;
    }
 
    public String getWkt() {
        return wkt;
    }
 
    public void setWkt(String wkt) {
        this.wkt = wkt;
    }
}