yangys
2024-04-04 ed4a5236bab800094be4a8378f5098eebe3de6ac
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
package com.qianwen.smartman.modules.system.dto;
 
import java.util.List;
import com.qianwen.smartman.modules.system.entity.CustomTemplateFieldOption;
 
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/system/dto/CustomTemplateColumnDTO.class */
public class CustomTemplateColumnDTO {
    private Long templateId;
    private String templateName;
    private Long fieldId;
    private String fieldCode;
    private String modifyFieldCode;
    private String queryFieldCode;
    private Integer sort;
    private String fieldName;
    private String fieldDescription;
    private Integer fieldType;
    private String defaultValue;
    private String propertyJson;
    private Integer mustField;
    private Integer systemField;
    private Integer sysFieldMust;
    private Integer supportQuery;
    private Integer supportUpdate;
    private Integer supportExport;
    private List<CustomTemplateFieldOption> optionList;
 
    public void setTemplateId(final Long templateId) {
        this.templateId = templateId;
    }
 
    public void setTemplateName(final String templateName) {
        this.templateName = templateName;
    }
 
    public void setFieldId(final Long fieldId) {
        this.fieldId = fieldId;
    }
 
    public void setFieldCode(final String fieldCode) {
        this.fieldCode = fieldCode;
    }
 
    public void setModifyFieldCode(final String modifyFieldCode) {
        this.modifyFieldCode = modifyFieldCode;
    }
 
    public void setQueryFieldCode(final String queryFieldCode) {
        this.queryFieldCode = queryFieldCode;
    }
 
    public void setSort(final Integer sort) {
        this.sort = sort;
    }
 
    public void setFieldName(final String fieldName) {
        this.fieldName = fieldName;
    }
 
    public void setFieldDescription(final String fieldDescription) {
        this.fieldDescription = fieldDescription;
    }
 
    public void setFieldType(final Integer fieldType) {
        this.fieldType = fieldType;
    }
 
    public void setDefaultValue(final String defaultValue) {
        this.defaultValue = defaultValue;
    }
 
    public void setPropertyJson(final String propertyJson) {
        this.propertyJson = propertyJson;
    }
 
    public void setMustField(final Integer mustField) {
        this.mustField = mustField;
    }
 
    public void setSystemField(final Integer systemField) {
        this.systemField = systemField;
    }
 
    public void setSysFieldMust(final Integer sysFieldMust) {
        this.sysFieldMust = sysFieldMust;
    }
 
    public void setSupportQuery(final Integer supportQuery) {
        this.supportQuery = supportQuery;
    }
 
    public void setSupportUpdate(final Integer supportUpdate) {
        this.supportUpdate = supportUpdate;
    }
 
    public void setSupportExport(final Integer supportExport) {
        this.supportExport = supportExport;
    }
 
    public void setOptionList(final List<CustomTemplateFieldOption> optionList) {
        this.optionList = optionList;
    }
 
    public String toString() {
        return "CustomTemplateColumnDTO(templateId=" + getTemplateId() + ", templateName=" + getTemplateName() + ", fieldId=" + getFieldId() + ", fieldCode=" + getFieldCode() + ", modifyFieldCode=" + getModifyFieldCode() + ", queryFieldCode=" + getQueryFieldCode() + ", sort=" + getSort() + ", fieldName=" + getFieldName() + ", fieldDescription=" + getFieldDescription() + ", fieldType=" + getFieldType() + ", defaultValue=" + getDefaultValue() + ", propertyJson=" + getPropertyJson() + ", mustField=" + getMustField() + ", systemField=" + getSystemField() + ", sysFieldMust=" + getSysFieldMust() + ", supportQuery=" + getSupportQuery() + ", supportUpdate=" + getSupportUpdate() + ", supportExport=" + getSupportExport() + ", optionList=" + getOptionList() + ")";
    }
 
    public Long getTemplateId() {
        return this.templateId;
    }
 
    public String getTemplateName() {
        return this.templateName;
    }
 
    public Long getFieldId() {
        return this.fieldId;
    }
 
    public String getFieldCode() {
        return this.fieldCode;
    }
 
    public String getModifyFieldCode() {
        return this.modifyFieldCode;
    }
 
    public String getQueryFieldCode() {
        return this.queryFieldCode;
    }
 
    public Integer getSort() {
        return this.sort;
    }
 
    public String getFieldName() {
        return this.fieldName;
    }
 
    public String getFieldDescription() {
        return this.fieldDescription;
    }
 
    public Integer getFieldType() {
        return this.fieldType;
    }
 
    public String getDefaultValue() {
        return this.defaultValue;
    }
 
    public String getPropertyJson() {
        return this.propertyJson;
    }
 
    public Integer getMustField() {
        return this.mustField;
    }
 
    public Integer getSystemField() {
        return this.systemField;
    }
 
    public Integer getSysFieldMust() {
        return this.sysFieldMust;
    }
 
    public Integer getSupportQuery() {
        return this.supportQuery;
    }
 
    public Integer getSupportUpdate() {
        return this.supportUpdate;
    }
 
    public Integer getSupportExport() {
        return this.supportExport;
    }
 
    public List<CustomTemplateFieldOption> getOptionList() {
        return this.optionList;
    }
}