ludc
2023-03-27 82a410d9ec7a5d15eed27e9990cff371feab43a1
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
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
package org.springblade.code.vo.pagemodel;
 
import com.vci.starter.web.annotation.Column;
import com.vci.starter.web.pagemodel.BaseModelVO;
 
/**
 * 主题库分类的模板属性显示对象
 *
 * @author weidy
 * @date 2022-01-24
 */
public class CodeClassifyTemplateAttrVO extends BaseModelVO {
 
    /**
     * 禁止修改这个值
     */
    private static final long serialVersionUID = 4615707119806919617L;
 
    /**
    * 所属模板
    */
    private String classifytemplateoid;
 
    /**
    * 所属模板显示文本
    */
    private String classifytemplateoidName;
 
    /**
    * 所属分类中的属性主键
    */
    private String classifyattributeoid;
 
    /**
    * 所属分类中的属性主键显示文本
    */
    private String classifyattributeoidName;
 
    /**
    * 属性的类型
    */
    private String attributedatatype;
 
    /**
     * 属性类型显示
     */
    private String attributeDataTypeText;
 
 
    /**
    * 是否关键属性
    */
    private String keyattrflag;
 
 
    /**
    * 是否快速查询属性
    */
    private String queryattrflag;
 
 
    /**
    * 是否高级查询属性
    */
    private String seniorqueryattrflag;
 
 
    /**
    * 相似查重属性
    */
    private String samerepeatattrflag;
 
 
    /**
    * 是否排序
    */
    private String sortattrflag;
 
 
    /**
    * 是否生成二维码
    */
    private String qrcodeflag;
 
 
    /**
    * 是否生成一维码
    */
    private String barcodeflag;
 
 
    /**
    * 组合规则
    */
    private String componentrule;
 
 
    /**
    * 验证规则
    */
    private String verifyrule;
 
 
    /**
    * 分类注入层级
    */
    private String classifyinvokelevel;
 
 
    /**
    * 分类注入的属性英文名称
    */
    private String classifyinvokeattr;
 
 
    /**
    * 分类注入的属性中文名称
    */
    private String classifyinvokeattrname;
 
 
    /**
    * 分类注入是否可以编辑
    */
    private String classifyinvokeeditflag;
 
 
    /**
    * 码值序号
    */
    private Integer ordernum;
 
 
    /**
    * 表单里是否显示
    */
    private String formdisplayflag;
 
 
    /**
    * 列表里是否显示
    */
    private String tabledisplayflag;
 
 
    /**
    * 所属属性分组
    */
    private String attributegroup;
 
 
    /**
    * 使用枚举英文编号
    */
    private String enumid;
 
 
    /**
    * 使用枚举中文名称
    */
    private String enumname;
 
 
    /**
    * 枚举是否可以编辑
    */
    private String enumeditflag;
 
 
    /**
    * 参照的业务类型英文名称
    */
    private String referbtmid;
 
 
    /**
    * 参照的业务类型中文名称
    */
    private String referbtmname;
 
 
    /**
    * 参照窗口配置
    */
    private String referConfig;
 
 
    /**
    * 是否必输
    */
    private String requireflag;
 
 
    /**
    * 是否只读
    */
    private String readonlyflag;
 
 
    /**
    * 属性控制输入的长度
    */
    private Integer controllength;
 
 
    /**
    * 表单里显示的样式
    */
    private String formdisplaystyle;
 
 
    /**
    * 表格里显示的样式
    */
    private String tabledisplaystyle;
 
 
    /**
    * 表单中超链接内容
    */
    private String formhref;
 
 
    /**
    * 表格中超链接内容
    */
    private String tablehref;
 
 
    /**
    * 小数精度
    */
    private Integer precisionlength;
 
 
    /**
    * 小数刻度
    */
    private Integer scalelength;
 
 
    /**
    * 取值范围
    */
    private String valuearea;
 
 
    /**
    * 时间格式
    */
    private String codedateformat;
 
 
    /**
    * 表格里显示调用的js
    */
    private String tabledisplayjs;
 
 
    /**
    * 是否显示多行文本
    */
    private String textareaflag;
 
 
    /**
    * 预览图
    */
    private String imageflag;
 
 
    /**
    * 默认值
    */
    private String defaultvalue;
 
 
    /**
    * 前缀
    */
    private String prefixvalue;
 
 
    /**
    * 后缀
    */
    private String suffixvalue;
 
 
    /**
    * 选择数据时过滤的属性
    */
    private String filtersourceattr;
 
 
    /**
    * 选择数据时过滤的属性名称
    */
    private String filtersourceattrname;
 
    /**
     * 使用枚举注入的字符串格式
     */
    private String enumString;
 
    /**
     * 属性列表中的宽度
     */
    private Integer attrTableWidth;
 
    /**
     * 说明
     */
    @Column(columnDefinition = "说明")
    private String explain;
 
    /**
     * 选择库标识
     */
    @Column(columnDefinition = "选择库标识")
    private String libraryIdentification;
 
    /**
     * 级联属性编号
     */
    @Column(columnDefinition = "级联属性编号")
    private String parentCode;
 
    /**
     * 级联属性名称
     */
    @Column(columnDefinition = "级联属性名称")
    private String parentName;
 
    /**
     * 级联查询属性
     */
    @Column(columnDefinition = "级联查询属性")
    private String parentQueryAttr;
 
    public String getExplain() {
        return explain;
    }
 
    public void setExplain(String explain) {
        this.explain = explain;
    }
 
    public String getLibraryIdentification() {
        return libraryIdentification;
    }
 
    public void setLibraryIdentification(String libraryIdentification) {
        this.libraryIdentification = libraryIdentification;
    }
 
    public String getParentCode() {
        return parentCode;
    }
 
    public void setParentCode(String parentCode) {
        this.parentCode = parentCode;
    }
 
    public String getParentName() {
        return parentName;
    }
 
    public void setParentName(String parentName) {
        this.parentName = parentName;
    }
 
    public String getParentQueryAttr() {
        return parentQueryAttr;
    }
 
    public void setParentQueryAttr(String parentQueryAttr) {
        this.parentQueryAttr = parentQueryAttr;
    }
 
    /**
     * 获取 所属模板
     */
    public String getClassifytemplateoid (){
        return classifytemplateoid;
    }
 
    /**
    * 设置 所属模板
    */
    public void setClassifytemplateoid (String classifytemplateoid){
        this.classifytemplateoid = classifytemplateoid;
    }
    /**
     * 获取所属模板显示文本
     */
    public String getClassifytemplateoidName (){
        return classifytemplateoidName;
    }
 
    /**
    * 设置所属模板显示文本
    */
    public void setClassifytemplateoidName (String classifytemplateoidName){
        this.classifytemplateoidName = classifytemplateoidName;
    }
    /**
     * 获取 所属分类中的属性主键
     */
    public String getClassifyattributeoid (){
        return classifyattributeoid;
    }
 
    /**
    * 设置 所属分类中的属性主键
    */
    public void setClassifyattributeoid (String classifyattributeoid){
        this.classifyattributeoid = classifyattributeoid;
    }
    /**
     * 获取所属分类中的属性主键显示文本
     */
    public String getClassifyattributeoidName (){
        return classifyattributeoidName;
    }
 
    /**
    * 设置所属分类中的属性主键显示文本
    */
    public void setClassifyattributeoidName (String classifyattributeoidName){
        this.classifyattributeoidName = classifyattributeoidName;
    }
    /**
     * 获取 属性的类型
     */
    public String getAttributedatatype (){
        return attributedatatype;
    }
 
    /**
    * 设置 属性的类型
    */
    public void setAttributedatatype (String attributedatatype){
        this.attributedatatype = attributedatatype;
    }
    /**
     * 获取 是否关键属性
     */
    public String getKeyattrflag (){
        return keyattrflag;
    }
 
    /**
    * 设置 是否关键属性
    */
    public void setKeyattrflag (String keyattrflag){
        this.keyattrflag = keyattrflag;
    }
    /**
     * 获取 是否快速查询属性
     */
    public String getQueryattrflag (){
        return queryattrflag;
    }
 
    /**
    * 设置 是否快速查询属性
    */
    public void setQueryattrflag (String queryattrflag){
        this.queryattrflag = queryattrflag;
    }
    /**
     * 获取 是否高级查询属性
     */
    public String getSeniorqueryattrflag (){
        return seniorqueryattrflag;
    }
 
    /**
    * 设置 是否高级查询属性
    */
    public void setSeniorqueryattrflag (String seniorqueryattrflag){
        this.seniorqueryattrflag = seniorqueryattrflag;
    }
    /**
     * 获取 相似查重属性
     */
    public String getSamerepeatattrflag (){
        return samerepeatattrflag;
    }
 
    /**
    * 设置 相似查重属性
    */
    public void setSamerepeatattrflag (String samerepeatattrflag){
        this.samerepeatattrflag = samerepeatattrflag;
    }
    /**
     * 获取 是否排序
     */
    public String getSortattrflag (){
        return sortattrflag;
    }
 
    /**
    * 设置 是否排序
    */
    public void setSortattrflag (String sortattrflag){
        this.sortattrflag = sortattrflag;
    }
    /**
     * 获取 是否生成二维码
     */
    public String getQrcodeflag (){
        return qrcodeflag;
    }
 
    /**
    * 设置 是否生成二维码
    */
    public void setQrcodeflag (String qrcodeflag){
        this.qrcodeflag = qrcodeflag;
    }
    /**
     * 获取 是否生成一维码
     */
    public String getBarcodeflag (){
        return barcodeflag;
    }
 
    /**
    * 设置 是否生成一维码
    */
    public void setBarcodeflag (String barcodeflag){
        this.barcodeflag = barcodeflag;
    }
    /**
     * 获取 组合规则
     */
    public String getComponentrule (){
        return componentrule;
    }
 
    /**
    * 设置 组合规则
    */
    public void setComponentrule (String componentrule){
        this.componentrule = componentrule;
    }
    /**
     * 获取 验证规则
     */
    public String getVerifyrule (){
        return verifyrule;
    }
 
    /**
    * 设置 验证规则
    */
    public void setVerifyrule (String verifyrule){
        this.verifyrule = verifyrule;
    }
    /**
     * 获取 分类注入层级
     */
    public String getClassifyinvokelevel (){
        return classifyinvokelevel;
    }
 
    /**
    * 设置 分类注入层级
    */
    public void setClassifyinvokelevel (String classifyinvokelevel){
        this.classifyinvokelevel = classifyinvokelevel;
    }
    /**
     * 获取 分类注入的属性英文名称
     */
    public String getClassifyinvokeattr (){
        return classifyinvokeattr;
    }
 
    /**
    * 设置 分类注入的属性英文名称
    */
    public void setClassifyinvokeattr (String classifyinvokeattr){
        this.classifyinvokeattr = classifyinvokeattr;
    }
    /**
     * 获取 分类注入的属性中文名称
     */
    public String getClassifyinvokeattrname (){
        return classifyinvokeattrname;
    }
 
    /**
    * 设置 分类注入的属性中文名称
    */
    public void setClassifyinvokeattrname (String classifyinvokeattrname){
        this.classifyinvokeattrname = classifyinvokeattrname;
    }
    /**
     * 获取 分类注入是否可以编辑
     */
    public String getClassifyinvokeeditflag (){
        return classifyinvokeeditflag;
    }
 
    /**
    * 设置 分类注入是否可以编辑
    */
    public void setClassifyinvokeeditflag (String classifyinvokeeditflag){
        this.classifyinvokeeditflag = classifyinvokeeditflag;
    }
    /**
     * 获取 码值序号
     */
    public Integer getOrdernum (){
        return ordernum;
    }
 
    /**
    * 设置 码值序号
    */
    public void setOrdernum (Integer ordernum){
        this.ordernum = ordernum;
    }
    /**
     * 获取 表单里是否显示
     */
    public String getFormdisplayflag (){
        return formdisplayflag;
    }
 
    /**
    * 设置 表单里是否显示
    */
    public void setFormdisplayflag (String formdisplayflag){
        this.formdisplayflag = formdisplayflag;
    }
    /**
     * 获取 列表里是否显示
     */
    public String getTabledisplayflag (){
        return tabledisplayflag;
    }
 
    /**
    * 设置 列表里是否显示
    */
    public void setTabledisplayflag (String tabledisplayflag){
        this.tabledisplayflag = tabledisplayflag;
    }
    /**
     * 获取 所属属性分组
     */
    public String getAttributegroup (){
        return attributegroup;
    }
 
    /**
    * 设置 所属属性分组
    */
    public void setAttributegroup (String attributegroup){
        this.attributegroup = attributegroup;
    }
    /**
     * 获取 使用枚举英文编号
     */
    public String getEnumid (){
        return enumid;
    }
 
    /**
    * 设置 使用枚举英文编号
    */
    public void setEnumid (String enumid){
        this.enumid = enumid;
    }
    /**
     * 获取 使用枚举中文名称
     */
    public String getEnumname (){
        return enumname;
    }
 
    /**
    * 设置 使用枚举中文名称
    */
    public void setEnumname (String enumname){
        this.enumname = enumname;
    }
    /**
     * 获取 枚举是否可以编辑
     */
    public String getEnumeditflag (){
        return enumeditflag;
    }
 
    /**
    * 设置 枚举是否可以编辑
    */
    public void setEnumeditflag (String enumeditflag){
        this.enumeditflag = enumeditflag;
    }
    /**
     * 获取 参照的业务类型英文名称
     */
    public String getReferbtmid (){
        return referbtmid;
    }
 
    /**
    * 设置 参照的业务类型英文名称
    */
    public void setReferbtmid (String referbtmid){
        this.referbtmid = referbtmid;
    }
    /**
     * 获取 参照的业务类型中文名称
     */
    public String getReferbtmname (){
        return referbtmname;
    }
 
    /**
    * 设置 参照的业务类型中文名称
    */
    public void setReferbtmname (String referbtmname){
        this.referbtmname = referbtmname;
    }
 
    public String getReferConfig() {
        return referConfig;
    }
 
    public void setReferConfig(String referConfig) {
        this.referConfig = referConfig;
    }
 
    /**
 
    /**
     * 获取 是否必输
     */
    public String getRequireflag (){
        return requireflag;
    }
 
    /**
    * 设置 是否必输
    */
    public void setRequireflag (String requireflag){
        this.requireflag = requireflag;
    }
    /**
     * 获取 是否只读
     */
    public String getReadonlyflag (){
        return readonlyflag;
    }
 
    /**
    * 设置 是否只读
    */
    public void setReadonlyflag (String readonlyflag){
        this.readonlyflag = readonlyflag;
    }
    /**
     * 获取 属性控制输入的长度
     */
    public Integer getControllength (){
        return controllength;
    }
 
    /**
    * 设置 属性控制输入的长度
    */
    public void setControllength (Integer controllength){
        this.controllength = controllength;
    }
    /**
     * 获取 表单里显示的样式
     */
    public String getFormdisplaystyle (){
        return formdisplaystyle;
    }
 
    /**
    * 设置 表单里显示的样式
    */
    public void setFormdisplaystyle (String formdisplaystyle){
        this.formdisplaystyle = formdisplaystyle;
    }
    /**
     * 获取 表格里显示的样式
     */
    public String getTabledisplaystyle (){
        return tabledisplaystyle;
    }
 
    /**
    * 设置 表格里显示的样式
    */
    public void setTabledisplaystyle (String tabledisplaystyle){
        this.tabledisplaystyle = tabledisplaystyle;
    }
    /**
     * 获取 表单中超链接内容
     */
    public String getFormhref (){
        return formhref;
    }
 
    /**
    * 设置 表单中超链接内容
    */
    public void setFormhref (String formhref){
        this.formhref = formhref;
    }
    /**
     * 获取 表格中超链接内容
     */
    public String getTablehref (){
        return tablehref;
    }
 
    /**
    * 设置 表格中超链接内容
    */
    public void setTablehref (String tablehref){
        this.tablehref = tablehref;
    }
    /**
     * 获取 小数精度
     */
    public Integer getPrecisionlength (){
        return precisionlength;
    }
 
    /**
    * 设置 小数精度
    */
    public void setPrecisionlength (Integer precisionlength){
        this.precisionlength = precisionlength;
    }
    /**
     * 获取 小数刻度
     */
    public Integer getScalelength (){
        return scalelength;
    }
 
    /**
    * 设置 小数刻度
    */
    public void setScalelength (Integer scalelength){
        this.scalelength = scalelength;
    }
    /**
     * 获取 取值范围
     */
    public String getValuearea (){
        return valuearea;
    }
 
    /**
    * 设置 取值范围
    */
    public void setValuearea (String valuearea){
        this.valuearea = valuearea;
    }
    /**
     * 获取 时间格式
     */
    public String getCodedateformat (){
        return codedateformat;
    }
 
    /**
    * 设置 时间格式
    */
    public void setCodedateformat (String codedateformat){
        this.codedateformat = codedateformat;
    }
    /**
     * 获取 表格里显示调用的js
     */
    public String getTabledisplayjs (){
        return tabledisplayjs;
    }
 
    /**
    * 设置 表格里显示调用的js
    */
    public void setTabledisplayjs (String tabledisplayjs){
        this.tabledisplayjs = tabledisplayjs;
    }
    /**
     * 获取 是否显示多行文本
     */
    public String getTextareaflag (){
        return textareaflag;
    }
 
    /**
    * 设置 是否显示多行文本
    */
    public void setTextareaflag (String textareaflag){
        this.textareaflag = textareaflag;
    }
    /**
     * 获取 预览图
     */
    public String getImageflag (){
        return imageflag;
    }
 
    /**
    * 设置 预览图
    */
    public void setImageflag (String imageflag){
        this.imageflag = imageflag;
    }
    /**
     * 获取 默认值
     */
    public String getDefaultvalue (){
        return defaultvalue;
    }
 
    /**
    * 设置 默认值
    */
    public void setDefaultvalue (String defaultvalue){
        this.defaultvalue = defaultvalue;
    }
    /**
     * 获取 前缀
     */
    public String getPrefixvalue (){
        return prefixvalue;
    }
 
    /**
    * 设置 前缀
    */
    public void setPrefixvalue (String prefixvalue){
        this.prefixvalue = prefixvalue;
    }
    /**
     * 获取 后缀
     */
    public String getSuffixvalue (){
        return suffixvalue;
    }
 
    /**
    * 设置 后缀
    */
    public void setSuffixvalue (String suffixvalue){
        this.suffixvalue = suffixvalue;
    }
    /**
     * 获取 选择数据时过滤的属性
     */
    public String getFiltersourceattr (){
        return filtersourceattr;
    }
 
    public String getAttributeDataTypeText() {
        return attributeDataTypeText;
    }
 
    public void setAttributeDataTypeText(String attributeDataTypeText) {
        this.attributeDataTypeText = attributeDataTypeText;
    }
 
    /**
    * 设置 选择数据时过滤的属性
    */
    public void setFiltersourceattr (String filtersourceattr){
        this.filtersourceattr = filtersourceattr;
    }
    /**
     * 获取 选择数据时过滤的属性名称
     */
    public String getFiltersourceattrname (){
        return filtersourceattrname;
    }
 
    /**
    * 设置 选择数据时过滤的属性名称
    */
    public void setFiltersourceattrname (String filtersourceattrname){
        this.filtersourceattrname = filtersourceattrname;
    }
 
    public String getEnumString() {
        return enumString;
    }
 
    public void setEnumString(String enumString) {
        this.enumString = enumString;
    }
 
 
    public Integer getAttrTableWidth() {
        return attrTableWidth;
    }
 
    public void setAttrTableWidth(Integer attrTableWidth) {
        this.attrTableWidth = attrTableWidth;
    }
 
    @Override
    public String toString() {
        return "CodeClassifyTemplateAttrVO{" +
                "classifytemplateoid='" + classifytemplateoid + '\'' +
                ", classifytemplateoidName='" + classifytemplateoidName + '\'' +
                ", classifyattributeoid='" + classifyattributeoid + '\'' +
                ", classifyattributeoidName='" + classifyattributeoidName + '\'' +
                ", attributedatatype='" + attributedatatype + '\'' +
                ", attributeDataTypeText='" + attributeDataTypeText + '\'' +
                ", keyattrflag='" + keyattrflag + '\'' +
                ", queryattrflag='" + queryattrflag + '\'' +
                ", seniorqueryattrflag='" + seniorqueryattrflag + '\'' +
                ", samerepeatattrflag='" + samerepeatattrflag + '\'' +
                ", sortattrflag='" + sortattrflag + '\'' +
                ", qrcodeflag='" + qrcodeflag + '\'' +
                ", barcodeflag='" + barcodeflag + '\'' +
                ", componentrule='" + componentrule + '\'' +
                ", verifyrule='" + verifyrule + '\'' +
                ", classifyinvokelevel='" + classifyinvokelevel + '\'' +
                ", classifyinvokeattr='" + classifyinvokeattr + '\'' +
                ", classifyinvokeattrname='" + classifyinvokeattrname + '\'' +
                ", classifyinvokeeditflag='" + classifyinvokeeditflag + '\'' +
                ", ordernum=" + ordernum +
                ", formdisplayflag='" + formdisplayflag + '\'' +
                ", tabledisplayflag='" + tabledisplayflag + '\'' +
                ", attributegroup='" + attributegroup + '\'' +
                ", enumid='" + enumid + '\'' +
                ", enumname='" + enumname + '\'' +
                ", enumeditflag='" + enumeditflag + '\'' +
                ", referbtmid='" + referbtmid + '\'' +
                ", referbtmname='" + referbtmname + '\'' +
                ", referConfig='" + referConfig + '\'' +
                ", requireflag='" + requireflag + '\'' +
                ", readonlyflag='" + readonlyflag + '\'' +
                ", controllength=" + controllength +
                ", formdisplaystyle='" + formdisplaystyle + '\'' +
                ", tabledisplaystyle='" + tabledisplaystyle + '\'' +
                ", formhref='" + formhref + '\'' +
                ", tablehref='" + tablehref + '\'' +
                ", precisionlength=" + precisionlength +
                ", scalelength=" + scalelength +
                ", valuearea='" + valuearea + '\'' +
                ", codedateformat='" + codedateformat + '\'' +
                ", tabledisplayjs='" + tabledisplayjs + '\'' +
                ", textareaflag='" + textareaflag + '\'' +
                ", imageflag='" + imageflag + '\'' +
                ", defaultvalue='" + defaultvalue + '\'' +
                ", prefixvalue='" + prefixvalue + '\'' +
                ", suffixvalue='" + suffixvalue + '\'' +
                ", filtersourceattr='" + filtersourceattr + '\'' +
                ", filtersourceattrname='" + filtersourceattrname + '\'' +
                ", enumString='" + enumString + '\'' +
                ", attrTableWidth=" + attrTableWidth +
                "} " + super.toString();
    }
}