From b1a41509684c3823d41ec1c184f6a5f7ba49dfb7 Mon Sep 17 00:00:00 2001
From: fuliqi <fuliqi@qq.com>
Date: 星期日, 07 四月 2024 18:01:10 +0800
Subject: [PATCH] 考核规则

---
 ycl-server/src/main/java/com/ycl/platform/controller/CheckTemplateController.java |   21 +++++++++++++++------
 1 files changed, 15 insertions(+), 6 deletions(-)

diff --git a/ycl-server/src/main/java/com/ycl/platform/controller/CheckTemplateController.java b/ycl-server/src/main/java/com/ycl/platform/controller/CheckTemplateController.java
index 2ec9af4..5fcdb7e 100644
--- a/ycl-server/src/main/java/com/ycl/platform/controller/CheckTemplateController.java
+++ b/ycl-server/src/main/java/com/ycl/platform/controller/CheckTemplateController.java
@@ -2,12 +2,15 @@
 
 import annotation.Log;
 import com.ycl.platform.domain.entity.CheckTemplate;
+import com.ycl.platform.domain.query.CheckTemplateQuery;
 import com.ycl.platform.service.ICheckTemplateService;
 import com.ycl.system.AjaxResult;
+import com.ycl.system.Result;
 import com.ycl.system.controller.BaseController;
 import com.ycl.system.page.TableDataInfo;
 import com.ycl.utils.poi.ExcelUtil;
 import enumeration.BusinessType;
+import io.swagger.annotations.ApiOperation;
 import jakarta.servlet.http.HttpServletResponse;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.security.access.prepost.PreAuthorize;
@@ -33,10 +36,10 @@
      */
     @PreAuthorize("@ss.hasPermi('system:template:list')")
     @GetMapping("/list")
-    public TableDataInfo list(CheckTemplate checkTemplate)
+    public TableDataInfo list(CheckTemplateQuery checkTemplateDTO)
     {
         startPage();
-        List<CheckTemplate> list = checkTemplateService.selectCheckTemplateList(checkTemplate);
+        List<CheckTemplate> list = checkTemplateService.selectCheckTemplateList(checkTemplateDTO);
         return getDataTable(list);
     }
 
@@ -46,9 +49,9 @@
     @PreAuthorize("@ss.hasPermi('system:template:export')")
     @Log(title = "鑰冩牳妯℃澘", businessType = BusinessType.EXPORT)
     @PostMapping("/export")
-    public void export(HttpServletResponse response, CheckTemplate checkTemplate)
+    public void export(HttpServletResponse response, CheckTemplateQuery checkTemplateDTO)
     {
-        List<CheckTemplate> list = checkTemplateService.selectCheckTemplateList(checkTemplate);
+        List<CheckTemplate> list = checkTemplateService.selectCheckTemplateList(checkTemplateDTO);
         ExcelUtil<CheckTemplate> util = new ExcelUtil<CheckTemplate>(CheckTemplate.class);
         util.exportExcel(response, list, "鑰冩牳妯℃澘鏁版嵁");
     }
@@ -69,9 +72,9 @@
     @PreAuthorize("@ss.hasPermi('system:template:add')")
     @Log(title = "鑰冩牳妯℃澘", businessType = BusinessType.INSERT)
     @PostMapping
-    public AjaxResult add(@RequestBody CheckTemplate checkTemplate)
+    public AjaxResult add(@RequestBody CheckTemplateQuery checkTemplateDTO)
     {
-        return toAjax(checkTemplateService.insertCheckTemplate(checkTemplate));
+        return toAjax(checkTemplateService.insertCheckTemplate(checkTemplateDTO));
     }
 
     /**
@@ -95,4 +98,10 @@
     {
         return toAjax(checkTemplateService.deleteCheckTemplateByIds(ids));
     }
+
+    @GetMapping("/pullList")
+    @ApiOperation(value = "鍒楄〃", notes = "鍒楄〃")
+    public Result pullList() {
+        return checkTemplateService.pullList();
+    }
 }

--
Gitblit v1.8.0