This commit is contained in:
zt
2025-03-21 22:14:47 +08:00
parent d1be5661ae
commit 70e3107cbe

View File

@ -459,7 +459,6 @@ public class WgzPayCalculationServiceImpl extends ServicePlusImpl<WgzPayCalculat
@Override
public BigDecimal getPayByTaskAndBgt(Long taskId,Long auditorUserId) {
List<WgzPayCalculation> list = list(Wrappers.<WgzPayCalculation>lambdaQuery().eq(WgzPayCalculation::getTaskId, taskId)
.eq(WgzPayCalculation::getAuditorType, "2")
.eq(WgzPayCalculation::getAuditorUserId, auditorUserId));
@ -487,6 +486,7 @@ public class WgzPayCalculationServiceImpl extends ServicePlusImpl<WgzPayCalculat
BgtProjectRecruitApply apply = iBgtProjectRecruitApplyService.getOne(Wrappers.<BgtProjectRecruitApply>lambdaQuery()
.eq(BgtProjectRecruitApply::getRecruitId, recruitId).eq(BgtProjectRecruitApply::getUserId, userId)
.orderByDesc(BgtProjectRecruitApply::getId)
.last("limit 1"));
vo.setEntryTime(apply.getEntryTime());