From 1e1814178edf84090b28492bbad340ab13e5c169 Mon Sep 17 00:00:00 2001
From: liusheng <337615773@qq.com>
Date: 星期二, 22 七月 2025 18:16:34 +0800
Subject: [PATCH] 代码提交

---
 ruoyi-admin/src/main/java/com/ruoyi/web/controller/smartor/ServiceTaskController.java |   36 ++++++++++++++++--------------------
 1 files changed, 16 insertions(+), 20 deletions(-)

diff --git a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/smartor/ServiceTaskController.java b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/smartor/ServiceTaskController.java
index 1c075bd..36c5479 100644
--- a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/smartor/ServiceTaskController.java
+++ b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/smartor/ServiceTaskController.java
@@ -12,7 +12,6 @@
 import com.ruoyi.common.utils.RSAPublicKeyExample;
 import com.ruoyi.common.utils.StringUtils;
 import com.ruoyi.common.utils.poi.ExcelUtil;
-import com.smartor.common.SendService;
 import com.smartor.domain.*;
 import com.smartor.service.IServiceSubtaskService;
 import com.smartor.service.IServiceTaskService;
@@ -22,12 +21,9 @@
 import org.apache.commons.collections4.CollectionUtils;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.beans.factory.annotation.Value;
-import org.springframework.security.access.prepost.PreAuthorize;
 import org.springframework.web.bind.annotation.*;
 
 import javax.servlet.http.HttpServletResponse;
-import java.io.UnsupportedEncodingException;
-import java.net.URLDecoder;
 import java.util.List;
 import java.util.stream.Collectors;
 
@@ -56,19 +52,6 @@
 
     @Autowired
     private RSAPublicKeyExample rsaPublicKeyExample;
-
-    @Autowired
-    private SendService sendService;
-
-    @PostMapping("/test")
-    public TableDataInfo test(@RequestBody SendMagParam sendMagParam) {
-        try {
-            Boolean aBoolean = sendService.sendMsg(sendMagParam);
-        } catch (Exception e) {
-            e.printStackTrace();
-        }
-        return null;
-    }
 
     /**
      * 鏌ヨ璇煶浠诲姟鍒楄〃
@@ -152,6 +135,19 @@
     }
 
     /**
+     * 鑾峰彇闅忚鍙婃椂鐜�
+     */
+    @ApiOperation("鑾峰彇闅忚鍙婃椂鐜�")
+    //@PreAuthorize("@ss.hasPermi('smartor:ServiceTask:add')")
+    @Log(title = "鑾峰彇闅忚鍙婃椂鐜�", businessType = BusinessType.INSERT)
+    @PostMapping("/selectTimelyRate")
+    public AjaxResult selectTimelyRate(@RequestBody ServiceSubtask serviceSubtask) {
+        SysUser user = getLoginUser().getUser();
+        serviceSubtask.setOrgid(user.getOrgid());
+        return success(serviceTaskService.selectTimelyRate(serviceSubtask));
+    }
+
+    /**
      * 淇敼璇煶浠诲姟
      */
     @ApiOperation("淇敼浠诲姟")
@@ -199,7 +195,7 @@
     public AjaxResult getScriptInfoByCondition(@RequestBody ServiceTaskScriptQues serviceTaskScriptQues) {
         Long tid = null;
         Long pid = null;
-        log.error("getScriptInfoByCondition鍏ュ弬涓猴細{}", serviceTaskScriptQues);
+        log.info("getScriptInfoByCondition鍏ュ弬涓猴細{}", serviceTaskScriptQues);
         try {
             tid = Long.valueOf(rsaPublicKeyExample.decryptedData(serviceTaskScriptQues.getParam1(), pri_key));
             pid = Long.valueOf(rsaPublicKeyExample.decryptedData(serviceTaskScriptQues.getParam2(), pri_key));
@@ -207,7 +203,7 @@
             log.error("getScriptInfoByCondition鎶ラ敊浜嗭細{}", e.getMessage());
         }
 
-        log.error("tid鍜宲id鐨勫�间负锛歿},{}", tid, pid);
+        log.info("tid鍜宲id鐨勫�间负锛歿},{}", tid, pid);
         if (StringUtils.isEmpty(serviceTaskScriptQues.getPatfrom())) serviceTaskScriptQues.setPatfrom("0");
         return success(serviceTaskService.getScriptInfoByCondition(tid, pid, true, serviceTaskScriptQues.getPatfrom()));
     }
@@ -231,7 +227,7 @@
             log.error("getScriptInfoByCondition鎶ラ敊浜嗭細{}", e.getMessage());
         }
 
-        log.error("tid鍜宲id鐨勫�间负锛歿},{}", tid, pid);
+        log.info("tid鍜宲id鐨勫�间负锛歿},{}", tid, pid);
         if (StringUtils.isEmpty(serviceTaskScriptQues.getPatfrom())) serviceTaskScriptQues.setPatfrom("0");
         return success(serviceTaskService.getScriptInfoByCondition(tid, pid, true, serviceTaskScriptQues.getPatfrom()));
     }

--
Gitblit v1.9.3