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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
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 HrmEmployeeSalaryRespVO {
 
    @Schema(description = "档案ID", requiredMode = Schema.RequiredMode.REQUIRED)
    private Long id;
 
    @Schema(description = "员工ID")
    private Long userId;
 
    @Schema(description = "员工编号")
    private String employeeNo;
 
    @Schema(description = "员工姓名")
    private String employeeName;
 
    @Schema(description = "薪酬结构ID")
    private Long salaryStructureId;
 
    @Schema(description = "薪酬结构名称")
    private String salaryStructureName;
 
    @Schema(description = "基本工资")
    private BigDecimal baseSalary;
 
    @Schema(description = "绩效工资")
    private BigDecimal performanceSalary;
 
    @Schema(description = "餐补")
    private BigDecimal mealAllowance;
 
    @Schema(description = "交通补贴")
    private BigDecimal transportAllowance;
 
    @Schema(description = "其他补贴")
    private BigDecimal otherAllowance;
 
    @Schema(description = "生效日期")
    private LocalDate effectiveDate;
 
    @Schema(description = "状态:0-启用,1-禁用")
    private Integer status;
 
    @Schema(description = "备注")
    private String remark;
 
    @Schema(description = "创建时间")
    private LocalDateTime createTime;
 
}