|
@@ -338,6 +338,8 @@ public class PmTimeConfServiceImpl extends AbstractCrudService<PmTimeConfMapper,
|
|
|
@Override
|
|
|
public void isOpen(Integer isOpen, Integer id) {
|
|
|
Long userId = SecurityUtils.getUserId();
|
|
|
+ String username = SecurityUtils.getUsername();
|
|
|
+ LocalDateTime now = LocalDateTime.now();
|
|
|
PmTimeConf pmTimeConf = pmTimeConfMapper.selectById(id);
|
|
|
if (pmTimeConf == null){
|
|
|
throw new BusinessException("配置不存在!联系管理员后重试");
|
|
@@ -350,6 +352,9 @@ public class PmTimeConfServiceImpl extends AbstractCrudService<PmTimeConfMapper,
|
|
|
} else {
|
|
|
throw new BusinessException("参数异常,报告提醒开关操作失败!");
|
|
|
}
|
|
|
+
|
|
|
+ pmTimeConf.setUpdateBy(username);
|
|
|
+ pmTimeConf.setUpdateTime(now);
|
|
|
pmTimeConfMapper.updateById(pmTimeConf);
|
|
|
}
|
|
|
|