管道基础大数据平台系统开发-【后端】-Server
13693261870
2022-12-28 049e8125cd972b564c20dcdc153dfec55b6ae810
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
package com.lf.server.entity.show;
 
import com.alibaba.fastjson.annotation.JSONField;
import com.fasterxml.jackson.annotation.JsonInclude;
 
import java.io.Serializable;
import java.util.List;
 
/**
 * 管道分析实体类
 *
 * @author xingjinshuang@smartearth.cn
 * @date 2022/12/26
 */
public class PipelineEntity implements Serializable {
    private static final long serialVersionUID = 1L;
 
    /**
     * 表名
     */
    @JSONField(serialize = false)
    @JsonInclude(JsonInclude.Include.NON_NULL)
    private List<String> tabs;
 
    /**
     * 主键ID
     */
    private Integer gid;
 
    /**
     * 管线
     */
    private String pipeName;
 
    /**
     * 管段
     */
    private String segName;
 
    /**
     * 穿越名称
     */
    private String acrossName;
 
    /**
     * 穿越长度
     */
    private double acrossLength;
 
    /**
     * 备注
     */
    private String remarks;
 
    /**
     * wkt
     */
    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 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;
    }
}