1
|
package com.sunyo.wlpt.base.model;
|
1
|
package com.sunyo.wlpt.base.model;
|
2
|
|
2
|
|
3
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
3
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
4
|
+import lombok.Data;
|
4
|
|
5
|
|
5
|
import java.math.BigDecimal;
|
6
|
import java.math.BigDecimal;
|
6
|
import java.util.Date;
|
7
|
import java.util.Date;
|
7
|
|
8
|
|
|
|
9
|
+@Data
|
8
|
public class NMMS_CUSTOM_RESPONSE {
|
10
|
public class NMMS_CUSTOM_RESPONSE {
|
9
|
private String id;
|
11
|
private String id;
|
10
|
|
12
|
|
|
@@ -62,211 +64,5 @@ public class NMMS_CUSTOM_RESPONSE { |
|
@@ -62,211 +64,5 @@ public class NMMS_CUSTOM_RESPONSE { |
62
|
|
64
|
|
63
|
private String opertel;
|
65
|
private String opertel;
|
64
|
|
66
|
|
65
|
- public String getId() {
|
|
|
66
|
- return id;
|
|
|
67
|
- }
|
|
|
68
|
-
|
|
|
69
|
- public void setId(String id) {
|
|
|
70
|
- this.id = id == null ? null : id.trim();
|
|
|
71
|
- }
|
|
|
72
|
-
|
|
|
73
|
- public Date getFlightdate() {
|
|
|
74
|
- return flightdate;
|
|
|
75
|
- }
|
|
|
76
|
-
|
|
|
77
|
- public void setFlightdate(Date flightdate) {
|
|
|
78
|
- this.flightdate = flightdate;
|
|
|
79
|
- }
|
|
|
80
|
-
|
|
|
81
|
- public String getFlightno() {
|
|
|
82
|
- return flightno;
|
|
|
83
|
- }
|
|
|
84
|
-
|
|
|
85
|
- public void setFlightno(String flightno) {
|
|
|
86
|
- this.flightno = flightno == null ? null : flightno.trim();
|
|
|
87
|
- }
|
|
|
88
|
-
|
|
|
89
|
- public String getCarrier() {
|
|
|
90
|
- return carrier;
|
|
|
91
|
- }
|
|
|
92
|
-
|
|
|
93
|
- public void setCarrier(String carrier) {
|
|
|
94
|
- this.carrier = carrier == null ? null : carrier.trim();
|
|
|
95
|
- }
|
|
|
96
|
-
|
|
|
97
|
- public String getAwbano() {
|
|
|
98
|
- return awbano;
|
|
|
99
|
- }
|
|
|
100
|
-
|
|
|
101
|
- public void setAwbano(String awbano) {
|
|
|
102
|
- this.awbano = awbano == null ? null : awbano.trim();
|
|
|
103
|
- }
|
|
|
104
|
-
|
|
|
105
|
- public String getAwbhno() {
|
|
|
106
|
- return awbhno;
|
|
|
107
|
- }
|
|
|
108
|
-
|
|
|
109
|
- public void setAwbhno(String awbhno) {
|
|
|
110
|
- this.awbhno = awbhno == null ? null : awbhno.trim();
|
|
|
111
|
- }
|
|
|
112
|
-
|
|
|
113
|
- public String getBustype() {
|
|
|
114
|
- return bustype;
|
|
|
115
|
- }
|
|
|
116
|
-
|
|
|
117
|
- public void setBustype(String bustype) {
|
|
|
118
|
- this.bustype = bustype == null ? null : bustype.trim();
|
|
|
119
|
- }
|
|
|
120
|
-
|
|
|
121
|
- public Date getBusdate() {
|
|
|
122
|
- return busdate;
|
|
|
123
|
- }
|
|
|
124
|
-
|
|
|
125
|
- public void setBusdate(Date busdate) {
|
|
|
126
|
- this.busdate = busdate;
|
|
|
127
|
- }
|
|
|
128
|
-
|
|
|
129
|
- public BigDecimal getBusweight() {
|
|
|
130
|
- return busweight;
|
|
|
131
|
- }
|
|
|
132
|
-
|
|
|
133
|
- public void setBusweight(BigDecimal busweight) {
|
|
|
134
|
- this.busweight = busweight;
|
|
|
135
|
- }
|
|
|
136
|
-
|
|
|
137
|
- public Integer getBuspiece() {
|
|
|
138
|
- return buspiece;
|
|
|
139
|
- }
|
|
|
140
|
-
|
|
|
141
|
- public void setBuspiece(Integer buspiece) {
|
|
|
142
|
- this.buspiece = buspiece;
|
|
|
143
|
- }
|
|
|
144
|
-
|
|
|
145
|
- public String getOpertype() {
|
|
|
146
|
- return opertype;
|
|
|
147
|
- }
|
|
|
148
|
-
|
|
|
149
|
- public void setOpertype(String opertype) {
|
|
|
150
|
- this.opertype = opertype == null ? null : opertype.trim();
|
|
|
151
|
- }
|
|
|
152
|
-
|
|
|
153
|
- public String getCusmsgid() {
|
|
|
154
|
- return cusmsgid;
|
|
|
155
|
- }
|
|
|
156
|
-
|
|
|
157
|
- public void setCusmsgid(String cusmsgid) {
|
|
|
158
|
- this.cusmsgid = cusmsgid == null ? null : cusmsgid.trim();
|
|
|
159
|
- }
|
|
|
160
|
-
|
|
|
161
|
- public String getCussenderid() {
|
|
|
162
|
- return cussenderid;
|
|
|
163
|
- }
|
|
|
164
|
-
|
|
|
165
|
- public void setCussenderid(String cussenderid) {
|
|
|
166
|
- this.cussenderid = cussenderid == null ? null : cussenderid.trim();
|
|
|
167
|
- }
|
|
|
168
|
-
|
|
|
169
|
- public String getCusreciverid() {
|
|
|
170
|
- return cusreciverid;
|
|
|
171
|
- }
|
|
|
172
|
-
|
|
|
173
|
- public void setCusreciverid(String cusreciverid) {
|
|
|
174
|
- this.cusreciverid = cusreciverid == null ? null : cusreciverid.trim();
|
|
|
175
|
- }
|
|
|
176
|
-
|
|
|
177
|
- public String getCusversion() {
|
|
|
178
|
- return cusversion;
|
|
|
179
|
- }
|
|
|
180
|
-
|
|
|
181
|
- public void setCusversion(String cusversion) {
|
|
|
182
|
- this.cusversion = cusversion == null ? null : cusversion.trim();
|
|
|
183
|
- }
|
|
|
184
|
-
|
|
|
185
|
- public String getCusfunctioncode() {
|
|
|
186
|
- return cusfunctioncode;
|
|
|
187
|
- }
|
|
|
188
|
-
|
|
|
189
|
- public void setCusfunctioncode(String cusfunctioncode) {
|
|
|
190
|
- this.cusfunctioncode = cusfunctioncode == null ? null : cusfunctioncode.trim();
|
|
|
191
|
- }
|
|
|
192
|
-
|
|
|
193
|
- public Date getCusresrcvtime() {
|
|
|
194
|
- return cusresrcvtime;
|
|
|
195
|
- }
|
|
|
196
|
-
|
|
|
197
|
- public void setCusresrcvtime(Date cusresrcvtime) {
|
|
|
198
|
- this.cusresrcvtime = cusresrcvtime;
|
|
|
199
|
- }
|
|
|
200
|
-
|
|
|
201
|
- public Date getCusressendtime() {
|
|
|
202
|
- return cusressendtime;
|
|
|
203
|
- }
|
|
|
204
|
-
|
|
|
205
|
- public void setCusressendtime(Date cusressendtime) {
|
|
|
206
|
- this.cusressendtime = cusressendtime;
|
|
|
207
|
- }
|
|
|
208
|
-
|
|
|
209
|
- public String getCusrescode() {
|
|
|
210
|
- return cusrescode;
|
|
|
211
|
- }
|
|
|
212
|
-
|
|
|
213
|
- public void setCusrescode(String cusrescode) {
|
|
|
214
|
- this.cusrescode = cusrescode == null ? null : cusrescode.trim();
|
|
|
215
|
- }
|
|
|
216
|
-
|
|
|
217
|
- public String getCusresstatus() {
|
|
|
218
|
- return cusresstatus;
|
|
|
219
|
- }
|
|
|
220
|
-
|
|
|
221
|
- public void setCusresstatus(String cusresstatus) {
|
|
|
222
|
- this.cusresstatus = cusresstatus == null ? null : cusresstatus.trim();
|
|
|
223
|
- }
|
|
|
224
|
-
|
|
|
225
|
- public String getOperusername() {
|
|
|
226
|
- return operusername;
|
|
|
227
|
- }
|
|
|
228
|
-
|
|
|
229
|
- public void setOperusername(String operusername) {
|
|
|
230
|
- this.operusername = operusername == null ? null : operusername.trim();
|
|
|
231
|
- }
|
|
|
232
|
-
|
|
|
233
|
- public String getOpersystemname() {
|
|
|
234
|
- return opersystemname;
|
|
|
235
|
- }
|
|
|
236
|
-
|
|
|
237
|
- public void setOpersystemname(String opersystemname) {
|
|
|
238
|
- this.opersystemname = opersystemname == null ? null : opersystemname.trim();
|
|
|
239
|
- }
|
|
|
240
|
-
|
|
|
241
|
- public String getCusrestext() {
|
|
|
242
|
- return cusrestext;
|
|
|
243
|
- }
|
|
|
244
|
-
|
|
|
245
|
- public void setCusrestext(String cusrestext) {
|
|
|
246
|
- this.cusrestext = cusrestext == null ? null : cusrestext.trim();
|
|
|
247
|
- }
|
|
|
248
|
-
|
|
|
249
|
- public String getOperreason() {
|
|
|
250
|
- return operreason;
|
|
|
251
|
- }
|
|
|
252
|
-
|
|
|
253
|
- public void setOperreason(String operreason) {
|
|
|
254
|
- this.operreason = operreason;
|
|
|
255
|
- }
|
|
|
256
|
-
|
|
|
257
|
- public String getOperperson() {
|
|
|
258
|
- return operperson;
|
|
|
259
|
- }
|
|
|
260
|
-
|
|
|
261
|
- public void setOperperson(String operperson) {
|
|
|
262
|
- this.operperson = operperson;
|
|
|
263
|
- }
|
|
|
264
|
-
|
|
|
265
|
- public String getOpertel() {
|
|
|
266
|
- return opertel;
|
|
|
267
|
- }
|
|
|
268
|
-
|
|
|
269
|
- public void setOpertel(String opertel) {
|
|
|
270
|
- this.opertel = opertel;
|
|
|
271
|
- }
|
67
|
+ private String userId;
|
272
|
} |
68
|
} |