| | |
| | | @Schema(description = "基本工资") |
| | | private BigDecimal basicSalary; |
| | | |
| | | @Schema(description = "全勤奖金") |
| | | private BigDecimal attendanceBonus; |
| | | |
| | | @Schema(description = "计件工资") |
| | | private BigDecimal pieceSalary; |
| | | |
| | | @Schema(description = "计时工资") |
| | | private BigDecimal hourlySalary; |
| | | |
| | | @Schema(description = "月工作日天数") |
| | | private Integer monthWorkDays; |
| | | |
| | | @Schema(description = "月标准工时") |
| | | private BigDecimal standardHours; |
| | | |
| | | @Schema(description = "月时间合计") |
| | | private BigDecimal monthTimeTotal; |
| | | |
| | | @Schema(description = "折合倍数") |
| | | private BigDecimal conversionRatio; |
| | | |
| | | @Schema(description = "工序折算工时") |
| | | private BigDecimal convertedWorkHours; |
| | | |
| | | @Schema(description = "其他收入") |
| | | private BigDecimal otherIncome; |
| | |
| | | @Schema(description = "其他支出") |
| | | private BigDecimal otherDeduct; |
| | | |
| | | @Schema(description = "社保补缴") |
| | | private BigDecimal socialSupplementAmount; |
| | | |
| | | @Schema(description = "工资个税") |
| | | private BigDecimal salaryTax; |
| | | |