liyong
9 天以前 88e384da863bb2f7324cb1e1474885df3b7cce91
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
package cn.iocoder.yudao.module.hrm.controller.admin.salary.vo;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.math.BigDecimal;
import java.time.LocalDate;
import java.time.LocalDateTime;
 
@Schema(description = "管理后台 - 个税税率配置 Response VO")
@Data
public class HrmTaxRateConfigRespVO {
 
    @Schema(description = "配置ID", example = "1")
    private Long id;
 
    @Schema(description = "配置名称", example = "2024年个税税率表")
    private String name;
 
    @Schema(description = "生效日期")
    private LocalDate effectiveDate;
 
    @Schema(description = "税率级数:1-7", example = "1")
    private Integer level;
 
    @Schema(description = "应纳税所得额下限(含)", example = "0")
    private BigDecimal minAmount;
 
    @Schema(description = "应纳税所得额上限(不含),0表示无上限", example = "36000")
    private BigDecimal maxAmount;
 
    @Schema(description = "税率", example = "0.03")
    private BigDecimal taxRate;
 
    @Schema(description = "速算扣除数", example = "0")
    private BigDecimal quickDeduction;
 
    @Schema(description = "状态:0-启用,1-禁用", example = "0")
    private Integer status;
 
    @Schema(description = "备注", example = "不超过36000元")
    private String remark;
 
    @Schema(description = "创建时间")
    private LocalDateTime createTime;
 
}