From 08f1b1f1804a8bd833d42f257908d80e88387b55 Mon Sep 17 00:00:00 2001
From: mitao <2763622819@qq.com>
Date: 星期五, 14 三月 2025 11:27:47 +0800
Subject: [PATCH] 3.5增加登录验证、修改密码、人员列表调整

---
 flower_city/src/main/java/com/dg/core/api/AutomessagePolicyDocumentsAppletsController.java |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)

diff --git a/flower_city/src/main/java/com/dg/core/api/AutomessagePolicyDocumentsAppletsController.java b/flower_city/src/main/java/com/dg/core/api/AutomessagePolicyDocumentsAppletsController.java
index 91fda90..f97f9c4 100644
--- a/flower_city/src/main/java/com/dg/core/api/AutomessagePolicyDocumentsAppletsController.java
+++ b/flower_city/src/main/java/com/dg/core/api/AutomessagePolicyDocumentsAppletsController.java
@@ -41,7 +41,7 @@
     public ResultData selectConfigList(@RequestParam(value = "name",required = false) String name,
                                           @RequestParam(value = "type",required = false) String type,
                                        @RequestParam(value = "departmentId",required = false) Integer departmentId){
-        List<AutomessagePolicyDocuments> list = iAutomessagePolicyDocumentsService.selectConfigList(name,type,departmentId);
+        List<AutomessagePolicyDocuments> list = iAutomessagePolicyDocumentsService.selectConfigList(name,type,departmentId,null);
         return  ResultData.success(list);
     }
 
@@ -52,7 +52,6 @@
      */
     @ApiOperation(value = " 根据id获取法律法规政策文件数据 ",response = AutomessagePolicyDocuments.class)
     @GetMapping("/selectAutomessagePolicyDocumentById")
-    @Authorization
     public ResultData selectAutomessagePolicyDocumentById(@RequestParam(value = "id") Integer id){
         AutomessagePolicyDocuments automessagePolicyDocuments = iAutomessagePolicyDocumentsService.selectAutomessagePolicyDocumentById(id);
         if (automessagePolicyDocuments!=null){

--
Gitblit v1.7.1