3 天以前 b852254d90e7d1955db31db154193ec8ee84d8b3
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
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.LocalDateTime;
 
@Schema(description = "管理后台 - 薪酬结构 Response VO")
@Data
public class HrmSalaryStructureRespVO {
 
    @Schema(description = "结构ID", requiredMode = Schema.RequiredMode.REQUIRED)
    private Long id;
 
    @Schema(description = "结构名称")
    private String name;
 
    @Schema(description = "基本工资")
    private BigDecimal baseSalary;
 
    @Schema(description = "绩效工资占比(%)")
    private BigDecimal performanceRatio;
 
    @Schema(description = "加班工资倍率")
    private BigDecimal overtimePayRatio;
 
    @Schema(description = "社保基数")
    private BigDecimal socialSecurityBase;
 
    @Schema(description = "公积金基数")
    private BigDecimal housingFundBase;
 
    @Schema(description = "状态:0-启用,1-禁用")
    private Integer status;
 
    @Schema(description = "备注")
    private String remark;
 
    @Schema(description = "创建时间")
    private LocalDateTime createTime;
 
}