Browse Source

预警处理人,处理时间修改

hanzhiwei 2 years ago
parent
commit
ed07264e59

+ 0 - 2
zd-modules/zd-modules-laboratory/src/main/java/com/zd/laboratory/controller/WarningNoticeLogController.java

@@ -58,8 +58,6 @@ public class WarningNoticeLogController extends AbstractController {
     public ResultData update(@RequestBody WarningNoticeLogDto warningNoticeLogDto){
         WarningNoticeLog warningNoticeLog = new WarningNoticeLog();
         BeanUtils.copyProperties(warningNoticeLogDto,warningNoticeLog);
-        warningNoticeLog.setUpdateName(getCurrentUserName());
-        warningNoticeLog.setUpdateTime(LocalDateTime.now());
         boolean b = warningNoticeLogService.updateById(warningNoticeLog);
         if (b) {
             return ResultData.success();