| | |
| | | @Schema(description = "部门名称") |
| | | private String deptName; |
| | | |
| | | @Schema(description = "入司日期") |
| | | @TableField(exist = false) |
| | | private String entryDate; |
| | | |
| | | @Schema(description = "基本工资") |
| | | private BigDecimal basicSalary; |
| | | |
| | | @Schema(description = "全勤奖金") |
| | | private BigDecimal attendanceBonus; |
| | | |
| | | @Schema(description = "出勤天数") |
| | | private Integer workDays; |
| | | |
| | | @Schema(description = "事假") |
| | | private BigDecimal personalLeave; |
| | | |
| | | @Schema(description = "病假") |
| | | private BigDecimal sickLeave; |
| | | |
| | | @Schema(description = "丧假") |
| | | private BigDecimal bereavementLeave; |
| | | |
| | | @Schema(description = "婚假") |
| | | private BigDecimal marriageLeave; |
| | | |
| | | @Schema(description = "津贴") |
| | | private BigDecimal allowance; |
| | | |
| | | @Schema(description = "计件工资") |
| | | private BigDecimal pieceSalary; |
| | | |
| | | @Schema(description = "计时工资") |
| | | private BigDecimal hourlySalary; |
| | | |
| | | @Schema(description = "月时间合计") |
| | | private BigDecimal monthTimeTotal; |
| | | |
| | | @Schema(description = "折合倍数") |
| | | private BigDecimal conversionRatio; |
| | | |
| | | @Schema(description = "其他收入") |
| | | private BigDecimal otherIncome; |
| | |
| | | @Schema(description = "其他支出") |
| | | private BigDecimal otherDeduct; |
| | | |
| | | @Schema(description = "社保补缴") |
| | | private BigDecimal socialSupplementAmount; |
| | | |
| | | @Schema(description = "工资个税") |
| | | private BigDecimal salaryTax; |
| | | |