教育训练处考试制证系统后端
heheng
2025-01-16 92ac1754c713d206ebdafa3da8ec817c1d1e120d
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
package com.gkhy.exam.pay.entity;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.ruoyi.common.annotation.Excel;
import com.ruoyi.common.core.domain.BaseEntity;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
 
import javax.validation.constraints.NotBlank;
import javax.validation.constraints.NotNull;
import java.math.BigDecimal;
 
 
/**
 * 非煤工种类别对象 non_coal_category
 *
 * @author hh
 * @date 2025-01-16
 */
@TableName("non_coal_category")
@ApiModel(value = "非煤工种类别对象", description = "非煤工种类别对象")
public class NonCoalCategory extends BaseEntity {
    private static final long serialVersionUID = 1L;
 
    /**
     * $column.columnComment
     */
    @TableId(value = "id", type = IdType.AUTO)
    private Long id;
 
    /**
     * 地州编码
     */
    @Excel(name = "地州编码")
    @NotBlank(message = "地州不能为空")
    @ApiModelProperty("地州编码")
    private String districtCode;
 
    /**
     * 类别1理论2实操
     */
    @Excel(name = "类别1理论2实操")
    @ApiModelProperty("类别1理论2实操")
    @NotNull(message = "类别不能为空")
    private Long categoryType;
 
    /**
     * 科目名称
     */
    @Excel(name = "科目名称")
    @NotBlank(message = "科目名称不能为空")
    @ApiModelProperty("科目名称")
    private String subjectName;
 
    /**
     * 关联资格类型
     */
    @Excel(name = "关联资格类型")
    @ApiModelProperty("关联资格类型")
    @NotNull(message = "关联资格类型不能为空")
    private Long operateTypeId;
 
    /**
     * 金额
     */
    @Excel(name = "金额")
    @ApiModelProperty("金额")
    @NotNull(message = "金额不能为空")
    private BigDecimal amount;
 
    /**
     * 业务编码
     */
    @Excel(name = "业务编码")
    @NotBlank(message = "业务编码不能为空")
    @ApiModelProperty("业务编码")
    private String businessCode;
 
    /**
     * 单位编码
     */
    @Excel(name = "单位编码")
    @NotBlank(message = "单位编码不能为空")
    @ApiModelProperty("单位编码")
    private String companyCode;
 
    /**
     * 开票人
     */
    @Excel(name = "开票人")
    @NotBlank(message = "开票人不能为空")
    @ApiModelProperty("开票人")
    private String drawer;
 
    /**
     * 复核人
     */
    @Excel(name = "复核人")
    @NotBlank(message = "复核人不能为空")
    @ApiModelProperty("复核人")
    private String reviewer;
 
    /**
     * 开票单位社会信用代码
     */
    @Excel(name = "开票单位社会信用代码")
    @NotBlank(message = "开票单位社会信用代码不能为空")
    @ApiModelProperty("开票单位社会信用代码")
    private String invoicingCompanyCode;
 
    /**
     * 描述
     */
    @Excel(name = "描述")
    private String describe;
 
    /**
     * 删除标志(0代表存在2代表删除)
     */
    @ApiModelProperty(value = "删除标志", hidden = true)
    private Integer delFlag;
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public Long getId() {
        return id;
    }
 
    public void setDistrictCode(String districtCode) {
        this.districtCode = districtCode;
    }
 
    public String getDistrictCode() {
        return districtCode;
    }
 
    public void setCategoryType(Long categoryType) {
        this.categoryType = categoryType;
    }
 
    public Long getCategoryType() {
        return categoryType;
    }
 
    public void setSubjectName(String subjectName) {
        this.subjectName = subjectName;
    }
 
    public String getSubjectName() {
        return subjectName;
    }
 
    public void setOperateTypeId(Long operateTypeId) {
        this.operateTypeId = operateTypeId;
    }
 
    public Long getOperateTypeId() {
        return operateTypeId;
    }
 
    public void setAmount(BigDecimal amount) {
        this.amount = amount;
    }
 
    public BigDecimal getAmount() {
        return amount;
    }
 
    public void setBussinessCode(String bussinessCode) {
        this.businessCode = bussinessCode;
    }
 
    public String getBussinessCode() {
        return businessCode;
    }
 
    public void setCompanyCode(String companyCode) {
        this.companyCode = companyCode;
    }
 
    public String getCompanyCode() {
        return companyCode;
    }
 
    public void setDrawer(String drawer) {
        this.drawer = drawer;
    }
 
    public String getDrawer() {
        return drawer;
    }
 
    public void setReviewer(String reviewer) {
        this.reviewer = reviewer;
    }
 
    public String getReviewer() {
        return reviewer;
    }
 
    public void setInvoicingCompanyCode(String invoicingCompanyCode) {
        this.invoicingCompanyCode = invoicingCompanyCode;
    }
 
    public String getInvoicingCompanyCode() {
        return invoicingCompanyCode;
    }
 
    public void setDescribe(String describe) {
        this.describe = describe;
    }
 
    public String getDescribe() {
        return describe;
    }
 
    public void setDelFlag(Integer delFlag) {
        this.delFlag = delFlag;
    }
 
    public Integer getDelFlag() {
        return delFlag;
    }
 
    @Override
    public String toString() {
        return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
                .append("id", getId())
                .append("districtCode", getDistrictCode())
                .append("categoryType", getCategoryType())
                .append("subjectName", getSubjectName())
                .append("operateTypeId", getOperateTypeId())
                .append("amount", getAmount())
                .append("bussinessCode", getBussinessCode())
                .append("companyCode", getCompanyCode())
                .append("drawer", getDrawer())
                .append("reviewer", getReviewer())
                .append("invoicingCompanyCode", getInvoicingCompanyCode())
                .append("describe", getDescribe())
                .append("updateBy", getUpdateBy())
                .append("updateTime", getUpdateTime())
                .append("createBy", getCreateBy())
                .append("createTime", getCreateTime())
                .append("delFlag", getDelFlag())
                .toString();
    }
}