huminmin
5 小时以前 4143064f5cc41ea38aac3011f847066fe896fed3
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
package com.ruoyi.staff.excel;
 
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
import lombok.Data;
 
import java.math.BigDecimal;
 
/**
 * 员工薪资导出数据
 */
@Data
public class StaffSalaryExportData {
 
    @Excel(name = "工资月份")
    private String salaryMonth;
 
    @Excel(name = "工资主题")
    private String salaryTitle;
 
    @Excel(name = "员工姓名")
    private String staffName;
 
    @Excel(name = "部门名称")
    private String deptName;
 
    @Excel(name = "基本工资")
    private BigDecimal basicSalary;
 
    @Excel(name = "计件工资")
    private BigDecimal pieceSalary;
 
    @Excel(name = "计时工资")
    private BigDecimal hourlySalary;
 
    @Excel(name = "其他收入")
    private BigDecimal otherIncome;
 
    @Excel(name = "社保个人")
    private BigDecimal socialPersonal;
 
    @Excel(name = "公积金个人")
    private BigDecimal fundPersonal;
 
    @Excel(name = "其他支出")
    private BigDecimal otherDeduct;
 
    @Excel(name = "社保补缴")
    private BigDecimal socialSupplementAmount;
 
    @Excel(name = "工资个税")
    private BigDecimal salaryTax;
 
    @Excel(name = "应发工资")
    private BigDecimal grossSalary;
 
    @Excel(name = "应扣工资")
    private BigDecimal deductSalary;
 
    @Excel(name = "实发工资")
    private BigDecimal netSalary;
 
    @Excel(name = "备注")
    private String remark;
}