huminmin
21 小时以前 ff09f8e85d51c5d127796bfbd097f5fad9267d4b
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
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 entryDate;
 
    @Excel(name = "部门名称")
    private String deptName;
 
    @Excel(name = "基本工资")
    private BigDecimal basicSalary;
 
    @Excel(name = "全勤奖金")
    private BigDecimal attendanceBonus;
 
    @Excel(name = "日计工资")
    private BigDecimal dailySalary;
 
    @Excel(name = "出勤天数")
    private Integer workDays;
 
    @Excel(name = "效益")
    private BigDecimal conversionRatio;
 
    @Excel(name = "月时间合计")
    private BigDecimal monthTimeTotal;
 
    @Excel(name = "其他收入")
    private BigDecimal otherIncome;
 
    @Excel(name = "事假")
    private BigDecimal personalLeave;
 
    @Excel(name = "病假")
    private BigDecimal sickLeave;
 
    @Excel(name = "丧假")
    private BigDecimal bereavementLeave;
 
    @Excel(name = "婚假")
    private BigDecimal marriageLeave;
 
    @Excel(name = "津贴")
    private BigDecimal allowance;
 
    @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;
}