ludc
2023-04-26 7f0570d20aac189f1b170942bd7100b281a1c824
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
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
package com.vci.ubcs.code.dto;
 
 
import com.vci.ubcs.code.vo.pagemodel.BaseModelVO;
 
import java.util.List;
 
/**
 * 系统集成基础信息数据传输对象
 *
 * @author lihang
 * @date 2022-03-07
 */
public class SysIntInfoDTO extends BaseModelVO {
 
    /**
     * 禁止修改这个值
     */
    private static final long serialVersionUID = 4615707120053955466L;
 
    /**
     * 认证方式
     */
    private String authorityoid;
 
    /**
     * 认证方式显示文本
     */
    private String authorityoidName;
    /**
     * 接口函数
     */
    private String interfaceFunction;
 
    /**
     * 接口类型
     */
    private String interfacetype;
 
    /**
     * 接口类型显示文本
     */
    private String interfacetypeText;
    /**
     * 参数类型
     */
    private String paramtype;
 
    /**
     * 参数类型显示文本
     */
    private String paramtypeText;
    /**
     * 请求方式
     */
    private String requestmethod;
 
    /**
     * 请求方式显示文本
     */
    private String requestmethodText;
    /**
     * 分类oid
     */
    private String classifyoid;
    /**
     * 启用、停用true/false,不用平台的枚举,减少对平台的耦合
     */
    private String usedflag;
    /**
     * 推送系统oid
     */
    private String sysbaseoid;
    /**
     * 推送系统编号
     */
    private String sysbaseid;
    /**
     * 推送系统名称
     */
    private String sysbasename;
    /**
     * 请求地址
     */
    private String requesturl;
 
    /**
     * 返回值类型
     */
    private String returntype;
 
    /**
     * 返回值类型显示文本
     */
    private String returntypeText;
    /**
     * 来源系统主键
     */
    private String sourcesystemoid;
 
    /**
     * 来源系统主键显示文本
     */
    private String sourcesystemoidName;
 
    /**
     * 来源系统名称
     */
    private String sourceSysName;
 
    /**
     * 来源系统标识
     */
    private String sourceSysId;
 
    /**
     * 目标系统主键
     */
    private String targetsystemoid;
 
    /**
     * 目标系统主键显示文本
     */
    private String targetsystemoidName;
 
    /**
     * 目标系统名称
     */
    private String targetSysName;
 
    /**
     * 目标系统标识
     */
    private String targetSysId;
 
 
 
    /**
     * 接口描述
     */
    private String description;
 
    /**
     * 类路径
     */
    private String classPath;
 
    /**
     * 数据流向方式
     */
    private String dataFlowType;
 
    /**
     * 数据流向方式的显示字段
     */
    private String dataFlowTypeText;
 
    /**
     * 存储的业务类型
     */
    private String btmTypeId;
 
    /**
     * 存储的业务类型的中文名称
     */
    private String btmTypeName;
 
    /**
     * 命名空间
     */
    private String namespace;
 
    /**
     * soapAction
     */
    private String soapaction;
 
    /**
     * 参数名称
     */
    private String targName;
 
    /**
     * cxfaxis
     */
    private String cxfaxis;
 
    /**
     * 分类id
     */
    private String classifyid;
 
    /**
     * 分类名称
     */
    private String classifyname;
    /***
     * 参数信息对象
     */
    private List<SysIntParamDTO> sysIntParamDTOs;
    /***
     * header信息对象
     */
    private List<SysIntHeaderDTO> sysIntHeaderDTOS;
 
    public String pushType;
 
    public String getClassifyid() {
        return classifyid;
    }
 
    public void setClassifyid(String classifyid) {
        this.classifyid = classifyid;
    }
 
    public String getClassifyname() {
        return classifyname;
    }
 
    public void setClassifyname(String classifyname) {
        this.classifyname = classifyname;
    }
 
    public String getTargName() {
        return targName;
    }
 
    public void setTargName(String targName) {
        this.targName = targName;
    }
 
    public String getSoapaction() {
        return soapaction;
    }
 
    public void setSoapaction(String soapaction) {
        this.soapaction = soapaction;
    }
 
    public String getCxfaxis() {
        return cxfaxis;
    }
 
    public void setCxfaxis(String cxfaxis) {
        this.cxfaxis = cxfaxis;
    }
 
    public String getNamespace() {
        return namespace;
    }
 
    public void setNamespace(String namespace) {
        this.namespace = namespace;
    }
 
    public String getBtmTypeId() {
        return btmTypeId;
    }
 
    public void setBtmTypeId(String btmTypeId) {
        this.btmTypeId = btmTypeId;
    }
 
    public String getBtmTypeName() {
        return btmTypeName;
    }
 
    public void setBtmTypeName(String btmTypeName) {
        this.btmTypeName = btmTypeName;
    }
    /**
     * 获取 认证方式
     */
    public String getAuthorityoid (){
        return authorityoid;
    }
 
    /**
     * 设置 认证方式
     */
    public void setAuthorityoid (String authorityoid){
        this.authorityoid = authorityoid;
    }
 
    /**
     * 获取认证方式显示文本
     */
    public String getAuthorityoidName (){
        return authorityoidName;
    }
 
    /**
     * 设置认证方式显示文本
     */
    public void setAuthorityoidName (String authorityoidName){
        this.authorityoidName = authorityoidName;
    }
    /**
     * 获取 接口函数
     */
    public String getInterfaceFunction (){
        return interfaceFunction;
    }
 
    /**
     * 设置 接口函数
     */
    public void setInterfaceFunction (String interfaceFunction){
        this.interfaceFunction = interfaceFunction;
    }
 
    /**
     * 获取 接口类型
     */
    public String getInterfacetype (){
        return interfacetype;
    }
 
    /**
     * 设置 接口类型
     */
    public void setInterfacetype (String interfacetype){
        this.interfacetype = interfacetype;
    }
 
    /**
     * 获取接口类型显示文本
     */
    public String getInterfacetypeText (){
        return interfacetypeText;
    }
 
    /**
     * 设置接口类型显示文本
     */
    public void setInterfacetypeText (String interfacetypeText){
        this.interfacetypeText = interfacetypeText;
    }
    /**
     * 获取 参数类型
     */
    public String getParamtype (){
        return paramtype;
    }
 
    /**
     * 设置 参数类型
     */
    public void setParamtype (String paramtype){
        this.paramtype = paramtype;
    }
 
    /**
     * 获取参数类型显示文本
     */
    public String getParamtypeText (){
        return paramtypeText;
    }
 
    /**
     * 设置参数类型显示文本
     */
    public void setParamtypeText (String paramtypeText){
        this.paramtypeText = paramtypeText;
    }
    /**
     * 获取 请求方式
     */
    public String getRequestmethod (){
        return requestmethod;
    }
 
    /**
     * 设置 请求方式
     */
    public void setRequestmethod (String requestmethod){
        this.requestmethod = requestmethod;
    }
 
    /**
     * 获取请求方式显示文本
     */
    public String getRequestmethodText (){
        return requestmethodText;
    }
 
    /**
     * 设置请求方式显示文本
     */
    public void setRequestmethodText (String requestmethodText){
        this.requestmethodText = requestmethodText;
    }
    /**
     * 获取 请求地址
     */
    public String getRequesturl (){
        return requesturl;
    }
 
    /**
     * 设置 请求地址
     */
    public void setRequesturl (String requesturl){
        this.requesturl = requesturl;
    }
 
    /**
     * 获取 返回值类型
     */
    public String getReturntype (){
        return returntype;
    }
 
    /**
     * 设置 返回值类型
     */
    public void setReturntype (String returntype){
        this.returntype = returntype;
    }
 
    /**
     * 获取返回值类型显示文本
     */
    public String getReturntypeText (){
        return returntypeText;
    }
 
    /**
     * 设置返回值类型显示文本
     */
    public void setReturntypeText (String returntypeText){
        this.returntypeText = returntypeText;
    }
    /**
     * 获取 来源系统主键
     */
    public String getSourcesystemoid (){
        return sourcesystemoid;
    }
 
    /**
     * 设置 来源系统主键
     */
    public void setSourcesystemoid (String sourcesystemoid){
        this.sourcesystemoid = sourcesystemoid;
    }
 
    /**
     * 获取来源系统主键显示文本
     */
    public String getSourcesystemoidName (){
        return sourcesystemoidName;
    }
 
    /**
     * 设置来源系统主键显示文本
     */
    public void setSourcesystemoidName (String sourcesystemoidName){
        this.sourcesystemoidName = sourcesystemoidName;
    }
    /**
     * 获取 目标系统主键
     */
    public String getTargetsystemoid (){
        return targetsystemoid;
    }
 
    /**
     * 设置 目标系统主键
     */
    public void setTargetsystemoid (String targetsystemoid){
        this.targetsystemoid = targetsystemoid;
    }
 
    /**
     * 获取目标系统主键显示文本
     */
    public String getTargetsystemoidName (){
        return targetsystemoidName;
    }
 
    /**
     * 设置目标系统主键显示文本
     */
    public void setTargetsystemoidName (String targetsystemoidName){
        this.targetsystemoidName = targetsystemoidName;
    }
 
    @Override
    public String getDescription() {
        return description;
    }
 
    @Override
    public void setDescription(String description) {
        this.description = description;
    }
 
    public String getClassPath() {
        return classPath;
    }
 
    public void setClassPath(String classPath) {
        this.classPath = classPath;
    }
 
    public String getDataFlowType() {
        return dataFlowType;
    }
 
    public void setDataFlowType(String dataFlowType) {
        this.dataFlowType = dataFlowType;
    }
 
    public String getDataFlowTypeText() {
        return dataFlowTypeText;
    }
 
    public void setDataFlowTypeText(String dataFlowTypeText) {
        this.dataFlowTypeText = dataFlowTypeText;
    }
 
    public String getClassifyoid() {
        return classifyoid;
    }
 
    public void setClassifyoid(String classifyoid) {
        this.classifyoid = classifyoid;
    }
 
    public String getUsedflag() {
        return usedflag;
    }
 
    public void setUsedflag(String usedflag) {
        this.usedflag = usedflag;
    }
 
    public String getSysbaseoid() {
        return sysbaseoid;
    }
 
    public void setSysbaseoid(String sysbaseoid) {
        this.sysbaseoid = sysbaseoid;
    }
 
    public String getSysbasename() {
        return sysbasename;
    }
 
    public void setSysbasename(String sysbasename) {
        this.sysbasename = sysbasename;
    }
 
    public String getSysbaseid() {
        return sysbaseid;
    }
 
    public void setSysbaseid(String sysbaseid) {
        this.sysbaseid = sysbaseid;
    }
 
    public List<SysIntParamDTO> getSysIntParamDTOs() {
        return sysIntParamDTOs;
    }
 
    public void setSysIntParamDTOs(List<SysIntParamDTO> sysIntParamDTOs) {
        this.sysIntParamDTOs = sysIntParamDTOs;
    }
 
    public List<SysIntHeaderDTO> getSysIntHeaderDTOS() {
        return sysIntHeaderDTOS;
    }
 
    public void setSysIntHeaderDTOS(List<SysIntHeaderDTO> sysIntHeaderDTOS) {
        this.sysIntHeaderDTOS = sysIntHeaderDTOS;
    }
 
    public String getPushType() {
        return pushType;
    }
 
    public void setPushType(String pushType) {
        this.pushType = pushType;
    }
 
    public String getSourceSysName() {
        return sourceSysName;
    }
 
    public void setSourceSysName(String sourceSysName) {
        this.sourceSysName = sourceSysName;
    }
 
    public String getSourceSysId() {
        return sourceSysId;
    }
 
    public void setSourceSysId(String sourceSysId) {
        this.sourceSysId = sourceSysId;
    }
 
    public String getTargetSysName() {
        return targetSysName;
    }
 
    public void setTargetSysName(String targetSysName) {
        this.targetSysName = targetSysName;
    }
 
    public String getTargetSysId() {
        return targetSysId;
    }
 
    public void setTargetSysId(String targetSysId) {
        this.targetSysId = targetSysId;
    }
 
    @Override
    public String toString() {
        return "SysIntInfoDTO{" +
                "authorityoid='" + authorityoid + '\'' +
                ", authorityoidName='" + authorityoidName + '\'' +
                ", interfaceFunction='" + interfaceFunction + '\'' +
                ", interfacetype='" + interfacetype + '\'' +
                ", interfacetypeText='" + interfacetypeText + '\'' +
                ", paramtype='" + paramtype + '\'' +
                ", paramtypeText='" + paramtypeText + '\'' +
                ", requestmethod='" + requestmethod + '\'' +
                ", requestmethodText='" + requestmethodText + '\'' +
                ", classifyoid='" + classifyoid + '\'' +
                ", usedflag='" + usedflag + '\'' +
                ", sysbaseoid='" + sysbaseoid + '\'' +
                ", sysbaseid='" + sysbaseid + '\'' +
                ", sysbasename='" + sysbasename + '\'' +
                ", requesturl='" + requesturl + '\'' +
                ", returntype='" + returntype + '\'' +
                ", returntypeText='" + returntypeText + '\'' +
                ", sourcesystemoid='" + sourcesystemoid + '\'' +
                ", sourcesystemoidName='" + sourcesystemoidName + '\'' +
                ", sourceSysName='" + sourceSysName + '\'' +
                ", sourceSysId='" + sourceSysId + '\'' +
                ", targetsystemoid='" + targetsystemoid + '\'' +
                ", targetsystemoidName='" + targetsystemoidName + '\'' +
                ", targetSysName='" + targetSysName + '\'' +
                ", targetSysId='" + targetSysId + '\'' +
                ", description='" + description + '\'' +
                ", classPath='" + classPath + '\'' +
                ", dataFlowType='" + dataFlowType + '\'' +
                ", dataFlowTypeText='" + dataFlowTypeText + '\'' +
                ", btmTypeId='" + btmTypeId + '\'' +
                ", btmTypeName='" + btmTypeName + '\'' +
                ", namespace='" + namespace + '\'' +
                ", soapaction='" + soapaction + '\'' +
                ", targName='" + targName + '\'' +
                ", cxfaxis='" + cxfaxis + '\'' +
                ", classifyid='" + classifyid + '\'' +
                ", classifyname='" + classifyname + '\'' +
                ", sysIntParamDTOs=" + sysIntParamDTOs +
                ", sysIntHeaderDTOS=" + sysIntHeaderDTOS +
                ", pushType='" + pushType + '\'' +
                '}';
    }
}