From aa0049cb67788c60efb38172bcc64dc0fa34a093 Mon Sep 17 00:00:00 2001
From: sgj <1442489573@qq.com>
Date: 星期三, 10 十二月 2025 11:26:02 +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