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
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
package com.vci.ubcs.code.vo.webserviceModel.person;
 
public class OrgMasterData {
    /**
     * 主键
     */
    private  String id;
    /**
     * 隶属单位代码
     */
    private String company_code;
 
    /**
     * 隶属单位名称/所属公司
     */
    private String company_name;
 
    /**
     * 部门编码
     */
    private String department_code;
 
    /**
     * 部门名称
     */
    private String department_name;
 
    /**
     * 部门类型 1=普通部门,2=决策部门
     */
    private String department_type;
 
    /**
     * 上级部门编码 所屋上级部门,引用部门主数据,集团命名“上级部门代码
     */
    private String parent_department_code;
 
    /**
     * 上级部门名称
     */
    private String parent_department_name;
 
    /**
     * 部门负责人
     */
    private String department_head;
 
    /***
     * 负责人编码
     */
    private String department_head_code;
 
    /***
     * 电话
     */
    private String telephone_number;
 
    /***
     * 排序号
     */
    private String sort_order;
 
    /**
     *启用状态 1=未启用,2=已启用,3e已停用
     */
    private int enable_status;
 
    /**
     * 部门层级
     */
    private String department_level;
 
    /***
     * 是香虚拟部门
     */
    private String is_virtual;
 
    /***
     * 部门状态,有效、作度
     */
    private String department_status;
 
    /***
     * 部门显示状态,显示、不显示
     */
    private String display_status;
 
    /***
     * 部门ID路径
     */
    private String id_route;
 
    /***
     *部门名称路径
     */
    private String name_route;
 
    /***
     *节点类型,当前新加节点的类别,部门,企业(法人单位),默认
     */
    private String node_type;
 
    /***
     * 部门原编码,记录该部门的原有编码,作为换号时的对解
     */
    private String original_code;
 
    /**
     * 创建者
     */
    private String creator;
 
    /***
     * 创建时间
     */
    private String createtime;
 
    /***
     * 修改者
     */
    private  String modifier;
 
    /**
     * 修改时间
     */
    private String modifytime;
 
    private String mdm_parentcode;
 
    private  int mdm_workflow_status;
 
    private String  mdm_datastatus;
 
    private String mdm_cleanstatus;
 
    private String  link_fieldvalue;
 
    private String flow_middatastatus;
 
    private String pk_mdm;
 
    private String mdm_duplicate;
 
    private String mdm_code;
 
    private String mdm_version;
 
    private String original_name;
 
    private String ts;
 
    /***
     *0:正常,1数据被删除,默认为0;
     */
    private int dr;
 
    private String dr_ndm_code;
 
    public String getCompany_code() {
        return company_code;
    }
 
    public void setCompany_code(String company_code) {
        this.company_code = company_code;
    }
 
    public String getCompany_name() {
        return company_name;
    }
 
    public void setCompany_name(String company_name) {
        this.company_name = company_name;
    }
 
    public String getDepartment_code() {
        return department_code;
    }
 
    public void setDepartment_code(String department_code) {
        this.department_code = department_code;
    }
 
    public String getDepartment_name() {
        return department_name;
    }
 
    public void setDepartment_name(String department_name) {
        this.department_name = department_name;
    }
 
    public String getDepartment_type() {
        return department_type;
    }
 
    public void setDepartment_type(String department_type) {
        this.department_type = department_type;
    }
 
    public String getParent_department_code() {
        return parent_department_code;
    }
 
    public void setParent_department_code(String parent_department_code) {
        this.parent_department_code = parent_department_code;
    }
 
    public String getParent_department_name() {
        return parent_department_name;
    }
 
    public void setParent_department_name(String parent_department_name) {
        this.parent_department_name = parent_department_name;
    }
 
    public String getDepartment_head() {
        return department_head;
    }
 
    public void setDepartment_head(String department_head) {
        this.department_head = department_head;
    }
 
    public String getDepartment_head_code() {
        return department_head_code;
    }
 
    public void setDepartment_head_code(String department_head_code) {
        this.department_head_code = department_head_code;
    }
 
    public String getTelephone_number() {
        return telephone_number;
    }
 
    public void setTelephone_number(String telephone_number) {
        this.telephone_number = telephone_number;
    }
 
    public String getSort_order() {
        return sort_order;
    }
 
    public void setSort_order(String sort_order) {
        this.sort_order = sort_order;
    }
 
    public int getEnable_status() {
        return enable_status;
    }
 
    public void setEnable_status(int enable_status) {
        this.enable_status = enable_status;
    }
 
    public String getDepartment_level() {
        return department_level;
    }
 
    public void setDepartment_level(String department_level) {
        this.department_level = department_level;
    }
 
    public String getIs_virtual() {
        return is_virtual;
    }
 
    public void setIs_virtual(String is_virtual) {
        this.is_virtual = is_virtual;
    }
 
    public String getDepartment_status() {
        return department_status;
    }
 
    public void setDepartment_status(String department_status) {
        this.department_status = department_status;
    }
 
    public String getDisplay_status() {
        return display_status;
    }
 
    public void setDisplay_status(String display_status) {
        this.display_status = display_status;
    }
 
    public String getId_route() {
        return id_route;
    }
 
    public void setId_route(String id_route) {
        this.id_route = id_route;
    }
 
    public String getName_route() {
        return name_route;
    }
 
    public void setName_route(String name_route) {
        this.name_route = name_route;
    }
 
    public String getNode_type() {
        return node_type;
    }
 
    public void setNode_type(String node_type) {
        this.node_type = node_type;
    }
 
    public String getOriginal_code() {
        return original_code;
    }
 
    public void setOriginal_code(String original_code) {
        this.original_code = original_code;
    }
 
    public String getCreator() {
        return creator;
    }
 
    public void setCreator(String creator) {
        this.creator = creator;
    }
 
    public String getCreatetime() {
        return createtime;
    }
 
    public void setCreatetime(String createtime) {
        this.createtime = createtime;
    }
 
    public String getModifier() {
        return modifier;
    }
 
    public void setModifier(String modifier) {
        this.modifier = modifier;
    }
 
    public String getModifytime() {
        return modifytime;
    }
 
    public void setModifytime(String modifytime) {
        this.modifytime = modifytime;
    }
 
    public String getMdm_parentcode() {
        return mdm_parentcode;
    }
 
    public void setMdm_parentcode(String mdm_parentcode) {
        this.mdm_parentcode = mdm_parentcode;
    }
 
    public int getMdm_workflow_status() {
        return mdm_workflow_status;
    }
 
    public void setMdm_workflow_status(int mdm_workflow_status) {
        this.mdm_workflow_status = mdm_workflow_status;
    }
 
    public String getMdm_datastatus() {
        return mdm_datastatus;
    }
 
    public void setMdm_datastatus(String mdm_datastatus) {
        this.mdm_datastatus = mdm_datastatus;
    }
 
    public String getMdm_cleanstatus() {
        return mdm_cleanstatus;
    }
 
    public void setMdm_cleanstatus(String mdm_cleanstatus) {
        this.mdm_cleanstatus = mdm_cleanstatus;
    }
 
    public String getLink_fieldvalue() {
        return link_fieldvalue;
    }
 
    public void setLink_fieldvalue(String link_fieldvalue) {
        this.link_fieldvalue = link_fieldvalue;
    }
 
    public String getFlow_middatastatus() {
        return flow_middatastatus;
    }
 
    public void setFlow_middatastatus(String flow_middatastatus) {
        this.flow_middatastatus = flow_middatastatus;
    }
 
    public String getPk_mdm() {
        return pk_mdm;
    }
 
    public void setPk_mdm(String pk_mdn) {
        this.pk_mdm = pk_mdn;
    }
 
    public String getMdm_duplicate() {
        return mdm_duplicate;
    }
 
    public void setMdm_duplicate(String mdm_duplicate) {
        this.mdm_duplicate = mdm_duplicate;
    }
 
    public String getMdm_code() {
        return mdm_code;
    }
 
    public void setMdm_code(String mdm_code) {
        this.mdm_code = mdm_code;
    }
 
    public String getMdm_version() {
        return mdm_version;
    }
 
    public void setMdm_version(String mdm_version) {
        this.mdm_version = mdm_version;
    }
 
    public String getOriginal_name() {
        return original_name;
    }
 
    public void setOriginal_name(String original_name) {
        this.original_name = original_name;
    }
 
    public String getTs() {
        return ts;
    }
 
    public void setTs(String ts) {
        this.ts = ts;
    }
 
    public int getDr() {
        return dr;
    }
 
    public void setDr(int dr) {
        this.dr = dr;
    }
 
    public String getDr_ndm_code() {
        return dr_ndm_code;
    }
 
    public void setDr_ndm_code(String dr_ndm_code) {
        this.dr_ndm_code = dr_ndm_code;
    }
 
    public String getId() {
        return id;
    }
 
    public void setId(String id) {
        this.id = id;
    }
 
    @Override
    public String toString() {
        return "OrgMasterData{" +
            "id='" + id + '\'' +
            ", company_code='" + company_code + '\'' +
            ", company_name='" + company_name + '\'' +
            ", department_code='" + department_code + '\'' +
            ", department_name='" + department_name + '\'' +
            ", department_type='" + department_type + '\'' +
            ", parent_department_code='" + parent_department_code + '\'' +
            ", parent_department_name='" + parent_department_name + '\'' +
            ", department_head='" + department_head + '\'' +
            ", department_head_code='" + department_head_code + '\'' +
            ", telephone_number='" + telephone_number + '\'' +
            ", sort_order='" + sort_order + '\'' +
            ", enable_status=" + enable_status +
            ", department_level='" + department_level + '\'' +
            ", is_virtual='" + is_virtual + '\'' +
            ", department_status='" + department_status + '\'' +
            ", display_status='" + display_status + '\'' +
            ", id_route='" + id_route + '\'' +
            ", name_route='" + name_route + '\'' +
            ", node_type='" + node_type + '\'' +
            ", original_code='" + original_code + '\'' +
            ", creator='" + creator + '\'' +
            ", createtime='" + createtime + '\'' +
            ", modifier='" + modifier + '\'' +
            ", modifytime='" + modifytime + '\'' +
            ", mdm_parentcode='" + mdm_parentcode + '\'' +
            ", mdm_workflow_status=" + mdm_workflow_status +
            ", mdm_datastatus='" + mdm_datastatus + '\'' +
            ", mdm_cleanstatus='" + mdm_cleanstatus + '\'' +
            ", link_fieldvalue='" + link_fieldvalue + '\'' +
            ", flow_middatastatus='" + flow_middatastatus + '\'' +
            ", pk_mdm='" + pk_mdm + '\'' +
            ", mdm_duplicate='" + mdm_duplicate + '\'' +
            ", mdm_code='" + mdm_code + '\'' +
            ", mdm_version='" + mdm_version + '\'' +
            ", original_name='" + original_name + '\'' +
            ", ts='" + ts + '\'' +
            ", dr=" + dr +
            ", dr_ndm_code='" + dr_ndm_code + '\'' +
            '}';
    }
}