|
|
@@ -8,11 +8,8 @@ import com.fasterxml.jackson.databind.ObjectMapper;
|
|
8
|
8
|
|
|
9
|
9
|
import lombok.RequiredArgsConstructor;
|
|
10
|
10
|
|
|
11
|
|
-<<<<<<< HEAD
|
|
12
|
11
|
import org.springframework.context.annotation.Bean;
|
|
13
|
|
-=======
|
|
14
|
12
|
import org.apache.commons.lang.StringUtils;
|
|
15
|
|
->>>>>>> dev
|
|
16
|
13
|
import org.springframework.stereotype.Service;
|
|
17
|
14
|
import org.springframework.util.LinkedMultiValueMap;
|
|
18
|
15
|
import org.springframework.util.MultiValueMap;
|
|
|
@@ -55,11 +52,9 @@ public class ViolationWarningAlarmServiceImpl implements ViolationWarningAlarmSe
|
|
55
|
52
|
|
|
56
|
53
|
@Override
|
|
57
|
54
|
public void updateDate(ViolationWarningAlarm violationWarningAlarm) {
|
|
58
|
|
-<<<<<<< HEAD
|
|
59
|
55
|
violationWarningAlarmMapper.updateById(violationWarningAlarm);
|
|
60
|
56
|
this.gjjjk(violationWarningAlarm.getId(), violationWarningAlarm.getOrgId(), "u");
|
|
61
|
57
|
|
|
62
|
|
-=======
|
|
63
|
58
|
if(StringUtils.isNotBlank(violationWarningAlarm.getDisposer())
|
|
64
|
59
|
&& StringUtils.isNotBlank(violationWarningAlarm.getDisposeContent())
|
|
65
|
60
|
&& StringUtils.isNotBlank(violationWarningAlarm.getDisposeTime())){
|
|
|
@@ -67,7 +62,6 @@ public class ViolationWarningAlarmServiceImpl implements ViolationWarningAlarmSe
|
|
67
|
62
|
violationWarningAlarm.setCurrentStatus(1);//设置处置状态为已处置
|
|
68
|
63
|
violationWarningAlarmMapper.updateById(violationWarningAlarm);
|
|
69
|
64
|
}
|
|
70
|
|
->>>>>>> dev
|
|
71
|
65
|
}
|
|
72
|
66
|
|
|
73
|
67
|
|