| | |
| | | @Override |
| | | public CommonResult deletedDocumentDestructionApply(Long id) { |
| | | destructionApplyMapper.update(new DocumentDestructionApply(), new LambdaUpdateWrapper<DocumentDestructionApply>().eq(DocumentDestructionApply::getId, id) |
| | | .set(DocumentDestructionApply::getDelFlag, UserConstant.DEPT_DISABLE).set(DocumentDestructionApply::getUpdateTime, LocalDateTime.now()) |
| | | .set(DocumentDestructionApply::getDelFlag, UserConstant.DISENABLE).set(DocumentDestructionApply::getUpdateTime, LocalDateTime.now()) |
| | | .set(DocumentDestructionApply::getUpdateBy, SecurityUtils.getUsername())); |
| | | return CommonResult.success(); |
| | | } |