教育训练处考试制证系统后端
“djh”
2025-02-20 ca90224ae08ff40b78daad37175639cae71c0855
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
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_pay
 *
 * @author hh
 * @date 2025-01-16
 */
@TableName("non_coal_pay")
@ApiModel(value = "非煤缴费管理对象", description = "非煤缴费管理对象")
public class NonCoalPay 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 batchName;
 
    /**
     * 考试点
     */
    @Excel(name = "考试点")
    @NotNull(message = "考试点不能为空")
    @ApiModelProperty("考试点")
    private Long deptId;
 
    /**
     * 地州code
     */
    @Excel(name = "地州code")
    @NotBlank(message = "地州不能为空")
    @ApiModelProperty("地州")
    private String districtCode;
 
    /**
     * 缴费类型1初训理论2初训实操3初训理论与实操4复训理论
     */
    @Excel(name = "缴费类型1初训理论2初训实操3初训理论与实操4复训理论")
    @NotNull(message = "缴费类型不能为空")
    @ApiModelProperty("缴费类型1初训理论2初训实操3初训理论与实操4复训理论")
    private Long payType;
 
    /**
     * 金额
     */
    @Excel(name = "金额")
    @NotNull(message = "金额不能为空")
    @ApiModelProperty("金额")
    private BigDecimal amount;
 
    /**
     * 年份
     */
    @Excel(name = "年份")
    @NotBlank(message = "年份不能为空")
    @ApiModelProperty("年份")
    private String year;
 
    /**
     * 季度1一季度2二季度3三季度4四季度
     */
    @Excel(name = "季度1一季度2二季度3三季度4四季度")
    @NotNull(message = "季度不能为空")
    @ApiModelProperty("季度1一季度2二季度3三季度4四季度")
    private Long quarter;
 
    /**
     * 交款人类型1个人2团体
     */
    @Excel(name = "交款人类型1个人2团体")
    @NotNull(message = "交款人类型不能为空")
    @ApiModelProperty("交款人类型1个人2团体")
    private Integer payPersonType;
 
    /**
     * 缴款单位名称
     */
    @Excel(name = "缴款单位名称")
    @ApiModelProperty("缴款单位证件号")
    private String payCompanyName;
 
    /**
     * 缴款单位证件号
     */
    @Excel(name = "缴款单位证件号")
    @ApiModelProperty("缴款单位证件号")
    private String payCompanyCard;
 
    /**
     * 删除标志(0代表存在2代表删除)
     */
    @ApiModelProperty(value = "删除标志", hidden = true)
    private Integer delFlag;
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public Long getId() {
        return id;
    }
 
    public void setBatchName(String batchName) {
        this.batchName = batchName;
    }
 
    public String getBatchName() {
        return batchName;
    }
 
    public void setDeptId(Long deptId) {
        this.deptId = deptId;
    }
 
    public Long getDeptId() {
        return deptId;
    }
 
    public void setDistrictCode(String districtCode) {
        this.districtCode = districtCode;
    }
 
    public String getDistrictCode() {
        return districtCode;
    }
 
    public void setPayType(Long payType) {
        this.payType = payType;
    }
 
    public Long getPayType() {
        return payType;
    }
 
    public void setAmount(BigDecimal amount) {
        this.amount = amount;
    }
 
    public BigDecimal getAmount() {
        return amount;
    }
 
    public void setYear(String year) {
        this.year = year;
    }
 
    public String getYear() {
        return year;
    }
 
    public void setQuarter(Long quarter) {
        this.quarter = quarter;
    }
 
    public Long getQuarter() {
        return quarter;
    }
 
    public void setPayPersonType(Integer payPersonType) {
        this.payPersonType = payPersonType;
    }
 
    public Integer getPayPersonType() {
        return payPersonType;
    }
 
    public void setPayCompanyName(String payCompanyName) {
        this.payCompanyName = payCompanyName;
    }
 
    public String getPayCompanyName() {
        return payCompanyName;
    }
 
    public void setPayCompanyCard(String payCompanyCard) {
        this.payCompanyCard = payCompanyCard;
    }
 
    public String getPayCompanyCard() {
        return payCompanyCard;
    }
 
    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("batchName", getBatchName())
                .append("deptId", getDeptId())
                .append("districtCode", getDistrictCode())
                .append("payType", getPayType())
                .append("amount", getAmount())
                .append("year", getYear())
                .append("quarter", getQuarter())
                .append("payPersonType", getPayPersonType())
                .append("payCompanyName", getPayCompanyName())
                .append("payCompanyCard", getPayCompanyCard())
                .append("updateBy", getUpdateBy())
                .append("updateTime", getUpdateTime())
                .append("createBy", getCreateBy())
                .append("createTime", getCreateTime())
                .append("delFlag", getDelFlag())
                .toString();
    }
}