Casement.java
9.93 KB
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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
package com.canrd.patent.dal.model;
import java.util.Date;
public class Casement {
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column casement.id
*
* @mbggenerated
*/
private Long id;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column casement.name
*
* @mbggenerated
*/
private String name;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column casement.case_sn
*
* @mbggenerated
*/
private String caseSn;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column casement.case_type
*
* @mbggenerated
*/
private String caseType;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column casement.service_type
*
* @mbggenerated
*/
private String serviceType;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column casement.paid_type
*
* @mbggenerated
*/
private String paidType;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column casement.reduce_type
*
* @mbggenerated
*/
private String reduceType;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column casement.expense
*
* @mbggenerated
*/
private Long expense;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column casement.case_status
*
* @mbggenerated
*/
private String caseStatus;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column casement.member_id
*
* @mbggenerated
*/
private String memberId;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column casement.create_date
*
* @mbggenerated
*/
private Date createDate;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column casement.update_date
*
* @mbggenerated
*/
private Date updateDate;
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column casement.id
*
* @return the value of casement.id
*
* @mbggenerated
*/
public Long getId() {
return id;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column casement.id
*
* @param id the value for casement.id
*
* @mbggenerated
*/
public void setId(Long id) {
this.id = id;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column casement.name
*
* @return the value of casement.name
*
* @mbggenerated
*/
public String getName() {
return name;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column casement.name
*
* @param name the value for casement.name
*
* @mbggenerated
*/
public void setName(String name) {
this.name = name == null ? null : name.trim();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column casement.case_sn
*
* @return the value of casement.case_sn
*
* @mbggenerated
*/
public String getCaseSn() {
return caseSn;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column casement.case_sn
*
* @param caseSn the value for casement.case_sn
*
* @mbggenerated
*/
public void setCaseSn(String caseSn) {
this.caseSn = caseSn == null ? null : caseSn.trim();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column casement.case_type
*
* @return the value of casement.case_type
*
* @mbggenerated
*/
public String getCaseType() {
return caseType;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column casement.case_type
*
* @param caseType the value for casement.case_type
*
* @mbggenerated
*/
public void setCaseType(String caseType) {
this.caseType = caseType == null ? null : caseType.trim();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column casement.service_type
*
* @return the value of casement.service_type
*
* @mbggenerated
*/
public String getServiceType() {
return serviceType;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column casement.service_type
*
* @param serviceType the value for casement.service_type
*
* @mbggenerated
*/
public void setServiceType(String serviceType) {
this.serviceType = serviceType == null ? null : serviceType.trim();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column casement.paid_type
*
* @return the value of casement.paid_type
*
* @mbggenerated
*/
public String getPaidType() {
return paidType;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column casement.paid_type
*
* @param paidType the value for casement.paid_type
*
* @mbggenerated
*/
public void setPaidType(String paidType) {
this.paidType = paidType == null ? null : paidType.trim();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column casement.reduce_type
*
* @return the value of casement.reduce_type
*
* @mbggenerated
*/
public String getReduceType() {
return reduceType;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column casement.reduce_type
*
* @param reduceType the value for casement.reduce_type
*
* @mbggenerated
*/
public void setReduceType(String reduceType) {
this.reduceType = reduceType == null ? null : reduceType.trim();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column casement.expense
*
* @return the value of casement.expense
*
* @mbggenerated
*/
public Long getExpense() {
return expense;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column casement.expense
*
* @param expense the value for casement.expense
*
* @mbggenerated
*/
public void setExpense(Long expense) {
this.expense = expense;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column casement.case_status
*
* @return the value of casement.case_status
*
* @mbggenerated
*/
public String getCaseStatus() {
return caseStatus;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column casement.case_status
*
* @param caseStatus the value for casement.case_status
*
* @mbggenerated
*/
public void setCaseStatus(String caseStatus) {
this.caseStatus = caseStatus == null ? null : caseStatus.trim();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column casement.member_id
*
* @return the value of casement.member_id
*
* @mbggenerated
*/
public String getMemberId() {
return memberId;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column casement.member_id
*
* @param memberId the value for casement.member_id
*
* @mbggenerated
*/
public void setMemberId(String memberId) {
this.memberId = memberId == null ? null : memberId.trim();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column casement.create_date
*
* @return the value of casement.create_date
*
* @mbggenerated
*/
public Date getCreateDate() {
return createDate;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column casement.create_date
*
* @param createDate the value for casement.create_date
*
* @mbggenerated
*/
public void setCreateDate(Date createDate) {
this.createDate = createDate;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column casement.update_date
*
* @return the value of casement.update_date
*
* @mbggenerated
*/
public Date getUpdateDate() {
return updateDate;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column casement.update_date
*
* @param updateDate the value for casement.update_date
*
* @mbggenerated
*/
public void setUpdateDate(Date updateDate) {
this.updateDate = updateDate;
}
}