优化
This commit is contained in:
@ -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;
|
||||
|
||||
|
@ -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();
|
||||
|
Reference in New Issue
Block a user