From 0f2fc0872069f0a5099cc535e6ff885b13937153 Mon Sep 17 00:00:00 2001
From: czt <czt18638530771@163.com>
Date: 星期三, 10 十二月 2025 18:12:04 +0800
Subject: [PATCH] 网关配置页面

---
 fzzy-igdss-web/src/main/java/com/fzzy/sys/manager/security/PatrolManager.java |   44 ++++++++++++++++++++++++++++++++++++++++----
 1 files changed, 40 insertions(+), 4 deletions(-)

diff --git a/fzzy-igdss-web/src/main/java/com/fzzy/sys/manager/security/PatrolManager.java b/fzzy-igdss-web/src/main/java/com/fzzy/sys/manager/security/PatrolManager.java
index 1cd4c4a..b94adcc 100644
--- a/fzzy-igdss-web/src/main/java/com/fzzy/sys/manager/security/PatrolManager.java
+++ b/fzzy-igdss-web/src/main/java/com/fzzy/sys/manager/security/PatrolManager.java
@@ -15,24 +15,60 @@
     @Resource
     private PatrolService patrolService;
 
+
+    /**
+     * 鏌ヨ鏁版嵁
+     *
+     * @param param
+     * @author sgj
+     * @date 2025/12/10
+     */
     public List<Patrol> selectList(Patrol param) {
         return patrolService.selectList(param);
     }
 
-    public Patrol selectById( String id) {
-        return patrolService.selectById( id);
+    /**
+     * 鏍规嵁id鏌ヨ鏁版嵁
+     *
+     * @param id
+     * @author sgj
+     * @date 2025/12/10
+     */
+    public Patrol selectById(String id) {
+        return patrolService.selectById(id);
     }
 
+    /**
+     * 鏂板鏁版嵁
+     *
+     * @param param
+     * @author sgj
+     * @date 2025/12/10
+     */
     public int insertData(Patrol param) {
         return patrolService.insertData(param);
     }
 
+    /**
+     * 淇敼鏁版嵁
+     *
+     * @param param
+     * @author sgj
+     * @date 2025/12/10
+     */
     public int updateData(Patrol param) {
         return patrolService.updateData(param);
     }
 
-    public void deleteDataById( String ids) {
-         patrolService.deleteDataById(ids);
+    /**
+     * 鍒犻櫎鏁版嵁
+     *
+     * @param ids
+     * @author sgj
+     * @date 2025/12/10
+     */
+    public void deleteDataById(String ids) {
+        patrolService.deleteDataById(ids);
     }
 
 }

--
Gitblit v1.9.3