1.处理审核接口保存审核人id
master
陈江保 4 months ago
parent 326367fd18
commit f409b70e73
  1. 1
      src/main/java/digital/laboratory/platform/entrustment/service/impl/EntrustAlterApplyServiceImpl.java

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

Loading…
Cancel
Save