liuxiaolong
2019-05-09 0d1d88cdb668e75ea8609417ac18ae19947e9525
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
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
package com.landy.gum.base.model;
 
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.Table;
 
import com.landy.framework.core.model.BaseModel;
 
/**
 * Model class for ScmHospital
 */
@Entity
@Table(name = "scm_hospital")
@org.hibernate.annotations.Entity(dynamicInsert = true, dynamicUpdate = true)
public class ScmHospitalModel extends BaseModel {
 
    //scmhId
    private Integer scmhId;
    //医院编码
    private String scmhSn;
    //医院名称
    private String scmhName;
    //医院简称
    private String scmhShortName;
    //上级医院
    private Integer scmhPid;
    //医院性质
    private String scmhFeature;
    //医院分类
    private String scmhCategory;
    //管理员
    private String scmhAdministrator;
    //院长
    private String scmhPresident;
    //电子邮件
    private String scmhEmail;
    //联系电话
    private String scmhPhone;
    //传真
    private String scmhFax;
    //所在省
    private String scmhProvince;
    //市
    private String scmhCity;
    //县
    private String scmhCounty;
    //详细地址
    private String scmhAddress;
    //邮编编码
    private String scmhPostCode;
    //网址
    private String scmhSiteUrl;
    //开户信息
    private String scmhBank;
    //显示顺序
    private String scmhOrder;
    //医院状态
    private String scmhState;
    //描述
    private String scmhRemark;
    //医院图标
    private String scmhLogo;
 
    /**
     * Get scmhId
     */
    @Column(name = "scmh_id")
    @Id @GeneratedValue(strategy=GenerationType.AUTO)
    public Integer getScmhId() {
        return scmhId;
    }
 
    /**
     * Set scmhId
     */
    public void setScmhId(Integer scmhId) {
        this.scmhId = scmhId;
        addValidField("scmhId");
    }
 
    /**
     * Get 医院编码
     */
    @Column(name = "scmh_sn")
    public String getScmhSn() {
        return scmhSn;
    }
 
    /**
     * Set 医院编码
     */
    public void setScmhSn(String scmhSn) {
        this.scmhSn = scmhSn;
        addValidField("scmhSn");
    }
 
    /**
     * Get 医院名称
     */
    @Column(name = "scmh_name")
    public String getScmhName() {
        return scmhName;
    }
 
    /**
     * Set 医院名称
     */
    public void setScmhName(String scmhName) {
        this.scmhName = scmhName;
        addValidField("scmhName");
    }
 
    /**
     * Get 医院简称
     */
    @Column(name = "scmh_short_name")
    public String getScmhShortName() {
        return scmhShortName;
    }
 
    /**
     * Set 医院简称
     */
    public void setScmhShortName(String scmhShortName) {
        this.scmhShortName = scmhShortName;
        addValidField("scmhShortName");
    }
 
    /**
     * Get 上级医院
     */
    @Column(name = "scmh_pid")
    public Integer getScmhPid() {
        return scmhPid;
    }
 
    /**
     * Set 上级医院
     */
    public void setScmhPid(Integer scmhPid) {
        this.scmhPid = scmhPid;
        addValidField("scmhPid");
    }
 
    /**
     * Get 医院性质
     */
    @Column(name = "scmh_feature")
    public String getScmhFeature() {
        return scmhFeature;
    }
 
    /**
     * Set 医院性质
     */
    public void setScmhFeature(String scmhFeature) {
        this.scmhFeature = scmhFeature;
        addValidField("scmhFeature");
    }
 
    /**
     * Get 医院分类
     */
    @Column(name = "scmh_category")
    public String getScmhCategory() {
        return scmhCategory;
    }
 
    /**
     * Set 医院分类
     */
    public void setScmhCategory(String scmhCategory) {
        this.scmhCategory = scmhCategory;
        addValidField("scmhCategory");
    }
 
    /**
     * Get 管理员
     */
    @Column(name = "scmh_administrator")
    public String getScmhAdministrator() {
        return scmhAdministrator;
    }
 
    /**
     * Set 管理员
     */
    public void setScmhAdministrator(String scmhAdministrator) {
        this.scmhAdministrator = scmhAdministrator;
        addValidField("scmhAdministrator");
    }
 
    /**
     * Get 院长
     */
    @Column(name = "scmh_president")
    public String getScmhPresident() {
        return scmhPresident;
    }
 
    /**
     * Set 院长
     */
    public void setScmhPresident(String scmhPresident) {
        this.scmhPresident = scmhPresident;
        addValidField("scmhPresident");
    }
 
    /**
     * Get 电子邮件
     */
    @Column(name = "scmh_email")
    public String getScmhEmail() {
        return scmhEmail;
    }
 
    /**
     * Set 电子邮件
     */
    public void setScmhEmail(String scmhEmail) {
        this.scmhEmail = scmhEmail;
        addValidField("scmhEmail");
    }
 
    /**
     * Get 联系电话
     */
    @Column(name = "scmh_phone")
    public String getScmhPhone() {
        return scmhPhone;
    }
 
    /**
     * Set 联系电话
     */
    public void setScmhPhone(String scmhPhone) {
        this.scmhPhone = scmhPhone;
        addValidField("scmhPhone");
    }
 
    /**
     * Get 传真
     */
    @Column(name = "scmh_fax")
    public String getScmhFax() {
        return scmhFax;
    }
 
    /**
     * Set 传真
     */
    public void setScmhFax(String scmhFax) {
        this.scmhFax = scmhFax;
        addValidField("scmhFax");
    }
 
    /**
     * Get 所在省
     */
    @Column(name = "scmh_province")
    public String getScmhProvince() {
        return scmhProvince;
    }
 
    /**
     * Set 所在省
     */
    public void setScmhProvince(String scmhProvince) {
        this.scmhProvince = scmhProvince;
        addValidField("scmhProvince");
    }
 
    /**
     * Get 市
     */
    @Column(name = "scmh_city")
    public String getScmhCity() {
        return scmhCity;
    }
 
    /**
     * Set 市
     */
    public void setScmhCity(String scmhCity) {
        this.scmhCity = scmhCity;
        addValidField("scmhCity");
    }
 
    /**
     * Get 县
     */
    @Column(name = "scmh_county")
    public String getScmhCounty() {
        return scmhCounty;
    }
 
    /**
     * Set 县
     */
    public void setScmhCounty(String scmhCounty) {
        this.scmhCounty = scmhCounty;
        addValidField("scmhCounty");
    }
 
    /**
     * Get 详细地址
     */
    @Column(name = "scmh_address")
    public String getScmhAddress() {
        return scmhAddress;
    }
 
    /**
     * Set 详细地址
     */
    public void setScmhAddress(String scmhAddress) {
        this.scmhAddress = scmhAddress;
        addValidField("scmhAddress");
    }
 
    /**
     * Get 邮编编码
     */
    @Column(name = "scmh_post_code")
    public String getScmhPostCode() {
        return scmhPostCode;
    }
 
    /**
     * Set 邮编编码
     */
    public void setScmhPostCode(String scmhPostCode) {
        this.scmhPostCode = scmhPostCode;
        addValidField("scmhPostCode");
    }
 
    /**
     * Get 网址
     */
    @Column(name = "scmh_site_url")
    public String getScmhSiteUrl() {
        return scmhSiteUrl;
    }
 
    /**
     * Set 网址
     */
    public void setScmhSiteUrl(String scmhSiteUrl) {
        this.scmhSiteUrl = scmhSiteUrl;
        addValidField("scmhSiteUrl");
    }
 
    /**
     * Get 开户信息
     */
    @Column(name = "scmh_bank")
    public String getScmhBank() {
        return scmhBank;
    }
 
    /**
     * Set 开户信息
     */
    public void setScmhBank(String scmhBank) {
        this.scmhBank = scmhBank;
        addValidField("scmhBank");
    }
 
    /**
     * Get 显示顺序
     */
    @Column(name = "scmh_order")
    public String getScmhOrder() {
        return scmhOrder;
    }
 
    /**
     * Set 显示顺序
     */
    public void setScmhOrder(String scmhOrder) {
        this.scmhOrder = scmhOrder;
        addValidField("scmhOrder");
    }
 
    /**
     * Get 医院状态
     * 01有效  02停用
     */
    @Column(name = "scmh_state")
    public String getScmhState() {
        return scmhState;
    }
 
    /**
     * Set 医院状态
     * 01有效  02停用
     */
    public void setScmhState(String scmhState) {
        this.scmhState = scmhState;
        addValidField("scmhState");
    }
 
    /**
     * Get 描述
     */
    @Column(name = "scmh_remark")
    public String getScmhRemark() {
        return scmhRemark;
    }
 
    /**
     * Set 描述
     */
    public void setScmhRemark(String scmhRemark) {
        this.scmhRemark = scmhRemark;
        addValidField("scmhRemark");
    }
 
    /**
     * Get 医院图标
     */
    @Column(name = "scmh_logo")
    public String getScmhLogo() {
        return scmhLogo;
    }
 
    /**
     * Set 医院图标
     */
    public void setScmhLogo(String scmhLogo) {
        this.scmhLogo = scmhLogo;
        addValidField("scmhLogo");
    }
 
}