From 4d54d652b4bdb4ab2f3ee6ba670348fab9b07365 Mon Sep 17 00:00:00 2001
From: luodangjia <luodangjia>
Date: 星期二, 13 八月 2024 11:00:53 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/master'

---
 ruoyi-modules/ruoyi-system/src/main/java/com/ruoyi/system/service/ISysOperLogService.java |   77 +++++++++++++++++++-------------------
 1 files changed, 38 insertions(+), 39 deletions(-)

diff --git a/ruoyi-modules/ruoyi-system/src/main/java/com/ruoyi/system/service/ISysOperLogService.java b/ruoyi-modules/ruoyi-system/src/main/java/com/ruoyi/system/service/ISysOperLogService.java
index 46a31f7..66bbc1d 100644
--- a/ruoyi-modules/ruoyi-system/src/main/java/com/ruoyi/system/service/ISysOperLogService.java
+++ b/ruoyi-modules/ruoyi-system/src/main/java/com/ruoyi/system/service/ISysOperLogService.java
@@ -7,45 +7,44 @@
 
 /**
  * 操作日志 服务层
- * 
+ *
  * @author ruoyi
  */
-public interface ISysOperLogService extends IService<SysOperLog>
-{
-    /**
-     * 新增操作日志
-     * 
-     * @param operLog 操作日志对象
-     * @return 结果
-     */
-    public int insertOperlog(SysOperLog operLog);
-
-    /**
-     * 查询系统操作日志集合
-     * 
-     * @param operLog 操作日志对象
-     * @return 操作日志集合
-     */
-    public List<SysOperLog> selectOperLogList(SysOperLog operLog);
-
-    /**
-     * 批量删除系统操作日志
-     * 
-     * @param operIds 需要删除的操作日志ID
-     * @return 结果
-     */
-    public int deleteOperLogByIds(Long[] operIds);
-
-    /**
-     * 查询操作日志详细
-     * 
-     * @param operId 操作ID
-     * @return 操作日志对象
-     */
-    public SysOperLog selectOperLogById(Long operId);
-
-    /**
-     * 清空操作日志
-     */
-    public void cleanOperLog();
+public interface ISysOperLogService extends IService<SysOperLog> {
+	/**
+	 * 新增操作日志
+	 *
+	 * @param operLog 操作日志对象
+	 * @return 结果
+	 */
+	public int insertOperlog(SysOperLog operLog);
+	
+	/**
+	 * 查询系统操作日志集合
+	 *
+	 * @param operLog 操作日志对象
+	 * @return 操作日志集合
+	 */
+	public List<SysOperLog> selectOperLogList(SysOperLog operLog);
+	
+	/**
+	 * 批量删除系统操作日志
+	 *
+	 * @param operIds 需要删除的操作日志ID
+	 * @return 结果
+	 */
+	public int deleteOperLogByIds(Long[] operIds);
+	
+	/**
+	 * 查询操作日志详细
+	 *
+	 * @param operId 操作ID
+	 * @return 操作日志对象
+	 */
+	public SysOperLog selectOperLogById(Long operId);
+	
+	/**
+	 * 清空操作日志
+	 */
+	public void cleanOperLog();
 }

--
Gitblit v1.7.1