管道基础大数据平台系统开发-【后端】-Server
1
13693261870
2022-11-15 28b15bc4a2439fb5844bee5793d051b67fe95c1f
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
package com.lf.server.entity.bs;
 
import com.alibaba.excel.annotation.ExcelProperty;
import com.lf.server.annotation.HeadRowNumber;
import lombok.Data;
 
/**
 * 管道成果表
 * @author WWW
 */
@Data
@HeadRowNumber(value = 3)
public class Gxcg {
    @ExcelProperty(index = 0)
    private String bh;
 
    @ExcelProperty(index = 1)
    private String gxdh;
 
    @ExcelProperty(index = 2)
    private String bh2;
 
    @ExcelProperty(index = 3)
    private String msfs;
 
    @ExcelProperty(index = 4)
    private String chiChun;
 
    @ExcelProperty(index = 5)
    private String tz;
 
    @ExcelProperty(index = 6)
    private String fsw;
 
    @ExcelProperty(index = 7)
    private double x;
 
    @ExcelProperty(index = 8)
    private double y;
 
    @ExcelProperty(index = 9)
    private String gnd;
 
    @ExcelProperty(index = 10)
    private double ms;
 
    @ExcelProperty(index = 11)
    private String zks;
 
    @ExcelProperty(index = 12)
    private String gkpl;
 
    @ExcelProperty(index = 13)
    private String dy;
 
    @ExcelProperty(index = 14)
    private String bz;
 
    public String getBh() {
        return bh;
    }
 
    public void setBh(String bh) {
        this.bh = bh;
    }
 
    public String getGxdh() {
        return gxdh;
    }
 
    public void setGxdh(String gxdh) {
        this.gxdh = gxdh;
    }
 
    public String getBh2() {
        return bh2;
    }
 
    public void setBh2(String bh2) {
        this.bh2 = bh2;
    }
 
    public String getMsfs() {
        return msfs;
    }
 
    public void setMsfs(String msfs) {
        this.msfs = msfs;
    }
 
    public String getChiChun() {
        return chiChun;
    }
 
    public void setChiChun(String chiChun) {
        this.chiChun = chiChun;
    }
 
    public String getTz() {
        return tz;
    }
 
    public void setTz(String tz) {
        this.tz = tz;
    }
 
    public String getFsw() {
        return fsw;
    }
 
    public void setFsw(String fsw) {
        this.fsw = fsw;
    }
 
    public double getX() {
        return x;
    }
 
    public void setX(double x) {
        this.x = x;
    }
 
    public double getY() {
        return y;
    }
 
    public void setY(double y) {
        this.y = y;
    }
 
    public String getGnd() {
        return gnd;
    }
 
    public void setGnd(String gnd) {
        this.gnd = gnd;
    }
 
    public double getMs() {
        return ms;
    }
 
    public void setMs(double ms) {
        this.ms = ms;
    }
 
    public String getZks() {
        return zks;
    }
 
    public void setZks(String zks) {
        this.zks = zks;
    }
 
    public String getGkpl() {
        return gkpl;
    }
 
    public void setGkpl(String gkpl) {
        this.gkpl = gkpl;
    }
 
    public String getDy() {
        return dy;
    }
 
    public void setDy(String dy) {
        this.dy = dy;
    }
 
    public String getBz() {
        return bz;
    }
 
    public void setBz(String bz) {
        this.bz = bz;
    }
}