This commit is contained in:
zt
2025-03-24 17:34:52 +08:00
parent 426e5273cd
commit 24b68f6d79
5 changed files with 354 additions and 9 deletions

View File

@ -31,6 +31,10 @@ public class BgtPayCalculationDetailBaseVO {
@JsonFormat(pattern = "yyyy-MM-dd")
private LocalDate entryTime;
@ApiModelProperty("离场时间")
@JsonFormat(pattern = "yyyy-MM-dd")
private LocalDate leaveTime;
@ApiModelProperty("总工资")
private BigDecimal allAmount;

View File

@ -480,6 +480,7 @@ public class WgzPayCalculationServiceImpl extends ServicePlusImpl<WgzPayCalculat
//招工申请信息
BgtProjectRecruitApply apply = iBgtProjectRecruitApplyService.getById(recruitApplyId);
vo.setEntryTime(apply.getEntryTime());
vo.setLeaveTime(apply.getLeaveTime());
//招工信息
Long recruitId = apply.getRecruitId();