1.处理审核接口保存审核人id
This commit is contained in:
2024-11-05 09:05:30 +08:00
parent 326367fd18
commit f409b70e73

View File

@@ -142,6 +142,7 @@ public class EntrustAlterApplyServiceImpl extends ServiceImpl<EntrustAlterApplyM
return super.update(
Wrappers.<EntrustAlterApply>lambdaUpdate()
.eq(EntrustAlterApply::getId, approveDTO.getId())
.set(EntrustAlterApply::getReviewer, SecurityUtils.getUser().getId())
.set(EntrustAlterApply::getStatus, status.getStatus())
.set(EntrustAlterApply::getReason, approveDTO.getReason())
);