Browse Source

报告提交提醒定时创建

fuyuchuan 1 month ago
parent
commit
9f4ba57b00

+ 3 - 0
service-iot/service-iot-api/src/main/java/com/usky/iot/RemotePmService.java

@@ -10,4 +10,7 @@ public interface RemotePmService {
 
     @GetMapping("/executeTimedSending")
     void executeTimedSending();
+
+    @GetMapping("/reportSubmissionReminder")
+    void reportSubmissionReminder();
 }

+ 7 - 1
service-iot/service-iot-api/src/main/java/com/usky/iot/factory/RemotePmFactory.java

@@ -21,14 +21,20 @@ public class RemotePmFactory implements FallbackFactory<RemotePmService>
     @Override
     public RemotePmService create(Throwable throwable)
     {
-        log.error("用户服务调用失败:{}", throwable.getMessage());
         return new RemotePmService()
         {
             @Override
             public void executeTimedSending() {
+                log.error("工作报告定时发送异常:{}", throwable.getMessage());
                 throw new FeignBadRequestException(500,"工作报告定时发送异常"+throwable.getMessage());
             }
 
+            @Override
+            public void reportSubmissionReminder() {
+                log.error("工作报告提交提醒发送异常:{}", throwable.getMessage());
+                throw new FeignBadRequestException(500,"工作报告提交提醒发送异常"+throwable.getMessage());
+            }
+
         };
     }
 }

+ 7 - 0
service-job/src/main/java/com/ruoyi/job/task/RyTask.java

@@ -44,6 +44,7 @@ public class RyTask {
         System.out.println("addPatrolInspectionAbnormalData");
     }
 
+    // 工作报告定时发送
     public void executeTimedSending() {
         System.out.println("executeTimedSending start........");
         remotePmService.executeTimedSending();
@@ -69,4 +70,10 @@ public class RyTask {
         remoteMeetingService.meetingInfoStatus();
     }
 
+    // 报告提交提醒
+    public void reportSubmissionReminder(){
+        System.out.println("reportSubmissionReminder start......");
+        remotePmService.reportSubmissionReminder();
+    }
+
 }