|
@@ -1,12 +1,17 @@
|
|
|
package com.zcxk.service.impl;
|
|
|
|
|
|
+import com.zcxk.dao.WarningLogMapper;
|
|
|
+import com.zcxk.dao.WarningMessageMapper;
|
|
|
import com.zcxk.dao.WarningRuleMapper;
|
|
|
import com.zcxk.entity.Device;
|
|
|
+import com.zcxk.entity.WarningLog;
|
|
|
+import com.zcxk.entity.WarningMessage;
|
|
|
import com.zcxk.entity.WarningRule;
|
|
|
import com.zcxk.service.WarningRuleService;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
|
|
+import java.time.LocalDateTime;
|
|
|
import java.util.ArrayList;
|
|
|
import java.util.Date;
|
|
|
import java.util.List;
|
|
@@ -21,6 +26,10 @@ import java.util.List;
|
|
|
public class WarningRuleServiceImpl implements WarningRuleService {
|
|
|
@Autowired
|
|
|
private WarningRuleMapper warningRuleMapper;
|
|
|
+ @Autowired
|
|
|
+ private WarningLogMapper warningLogMapper;
|
|
|
+ @Autowired
|
|
|
+ private WarningMessageMapper warningMessageMapper;
|
|
|
|
|
|
|
|
|
@Override
|
|
@@ -73,4 +82,22 @@ public class WarningRuleServiceImpl implements WarningRuleService {
|
|
|
warningRuleMapper.updateByPrimaryKeySelective(warningRule);
|
|
|
return null;
|
|
|
}
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public void feedback(String name, Integer id, Integer feedbackStatus, String feedbackContent, String phoneNumber
|
|
|
+ , String accountNumber) {
|
|
|
+
|
|
|
+ WarningMessage warningMessage = warningMessageMapper.findById(id);
|
|
|
+
|
|
|
+ WarningLog warningLog = new WarningLog();
|
|
|
+ warningLog.setId(warningMessage.getWarningLogId());
|
|
|
+ warningLog.setFeedbackStatus(feedbackStatus);
|
|
|
+ warningLog.setFeedbackContent(feedbackContent);
|
|
|
+ warningLog.setUpdateBy(name);
|
|
|
+ warningLog.setDateUpdate(LocalDateTime.now());
|
|
|
+ warningLog.setUserName(name);
|
|
|
+ warningLog.setAccountNumber(accountNumber);
|
|
|
+ warningLog.setPhoneNumber(phoneNumber);
|
|
|
+ warningLogMapper.updateByPrimaryKeySelective(warningLog);
|
|
|
+ }
|
|
|
}
|