From 3c4fee1db116c11d4f04727cfe076d7c94daeaf2 Mon Sep 17 00:00:00 2001
From: yanzhaofeige <yanzhaofeige@qq.com>
Date: Mon, 30 Sep 2024 12:10:57 +0800
Subject: [PATCH] init

---
 cpzidc-system/src/main/java/com/odcc/cpzidc/system/mapper/SysOperLogMapper.java |   48 ++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 48 insertions(+), 0 deletions(-)

diff --git a/cpzidc-system/src/main/java/com/odcc/cpzidc/system/mapper/SysOperLogMapper.java b/cpzidc-system/src/main/java/com/odcc/cpzidc/system/mapper/SysOperLogMapper.java
new file mode 100644
index 0000000..5859385
--- /dev/null
+++ b/cpzidc-system/src/main/java/com/odcc/cpzidc/system/mapper/SysOperLogMapper.java
@@ -0,0 +1,48 @@
+package com.odcc.cpzidc.system.mapper;
+
+import java.util.List;
+import com.odcc.cpzidc.system.domain.SysOperLog;
+
+/**
+ * 操作日志 数据层
+ * 
+ * @author ruoyi
+ */
+public interface SysOperLogMapper
+{
+    /**
+     * 新增操作日志
+     * 
+     * @param operLog 操作日志对象
+     */
+    public void 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.9.3