| | |
| | | @Excel(name = "员工姓名") |
| | | private String staffName; |
| | | |
| | | @Excel(name = "入司日期") |
| | | private String entryDate; |
| | | |
| | | @Excel(name = "部门名称") |
| | | private String deptName; |
| | | |
| | | @Excel(name = "基本工资") |
| | | private BigDecimal basicSalary; |
| | | |
| | | @Excel(name = "计件工资") |
| | | private BigDecimal pieceSalary; |
| | | @Excel(name = "全勤奖金") |
| | | private BigDecimal attendanceBonus; |
| | | |
| | | @Excel(name = "计时工资") |
| | | private BigDecimal hourlySalary; |
| | | @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; |
| | | |