From f7f49482695e9f94a35e5e3718d42105bb3987fb Mon Sep 17 00:00:00 2001
From: wujianwei <wjw@11.com>
Date: 星期五, 20 三月 2026 18:01:29 +0800
Subject: [PATCH] 新增查询

---
 service/src/main/java/com/ruoyi/cwgl/mapper/AccountLogMapper.java |   87 +++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 87 insertions(+), 0 deletions(-)

diff --git a/service/src/main/java/com/ruoyi/cwgl/mapper/AccountLogMapper.java b/service/src/main/java/com/ruoyi/cwgl/mapper/AccountLogMapper.java
new file mode 100644
index 0000000..d402af8
--- /dev/null
+++ b/service/src/main/java/com/ruoyi/cwgl/mapper/AccountLogMapper.java
@@ -0,0 +1,87 @@
+package com.ruoyi.cwgl.mapper;
+
+import java.util.List;
+import com.ruoyi.cwgl.domain.AccountLog;
+import com.baomidou.mybatisplus.core.mapper.BaseMapper;
+
+
+/**
+ * 璐︽鍒嗘瀽鏃ュ織Mapper鎺ュ彛
+ * 
+ * @author ruoyi
+ * @date 2026-03-20
+ */
+public interface AccountLogMapper  extends BaseMapper<AccountLog>
+{
+    /**
+     * 鏌ヨ璐︽鍒嗘瀽鏃ュ織
+     * 
+     * @param id 璐︽鍒嗘瀽鏃ュ織ID
+     * @return 璐︽鍒嗘瀽鏃ュ織
+     */
+    public AccountLog selectAccountLogById(Integer id);
+
+    /**
+     * 鏌ヨ璐︽鍒嗘瀽鏃ュ織 璁板綍鏁�
+     *
+     * @param accountLog 璐︽鍒嗘瀽鏃ュ織
+     * @return 璐︽鍒嗘瀽鏃ュ織闆嗗悎
+     */
+    public int selectAccountLogCount(AccountLog accountLog);
+
+    /**
+     * 鏌ヨ璐︽鍒嗘瀽鏃ュ織鍒楄〃
+     * 
+     * @param accountLog 璐︽鍒嗘瀽鏃ュ織
+     * @return 璐︽鍒嗘瀽鏃ュ織闆嗗悎
+     */
+    public List<AccountLog> selectAccountLogList(AccountLog accountLog);
+
+    /**
+     * 鏂板璐︽鍒嗘瀽鏃ュ織
+     * 
+     * @param accountLog 璐︽鍒嗘瀽鏃ュ織
+     * @return 缁撴灉
+     */
+    public int insertAccountLog(AccountLog accountLog);
+
+    /**
+     * 鏂板璐︽鍒嗘瀽鏃ュ織[鎵归噺]
+     *
+     * @param accountLogs 璐︽鍒嗘瀽鏃ュ織
+     * @return 缁撴灉
+     */
+    public int insertAccountLogBatch(List<AccountLog> accountLogs);
+
+    /**
+     * 淇敼璐︽鍒嗘瀽鏃ュ織
+     * 
+     * @param accountLog 璐︽鍒嗘瀽鏃ュ織
+     * @return 缁撴灉
+     */
+    public int updateAccountLog(AccountLog accountLog);
+
+    /**
+     * 淇敼璐︽鍒嗘瀽鏃ュ織[鎵归噺]
+     *
+     * @param accountLogs 璐︽鍒嗘瀽鏃ュ織
+     * @return 缁撴灉
+     */
+    public int updateAccountLogBatch(List<AccountLog> accountLogs);
+
+    /**
+     * 鍒犻櫎璐︽鍒嗘瀽鏃ュ織
+     * 
+     * @param id 璐︽鍒嗘瀽鏃ュ織ID
+     * @return 缁撴灉
+     */
+    public int deleteAccountLogById(Integer id);
+
+    /**
+     * 鎵归噺鍒犻櫎璐︽鍒嗘瀽鏃ュ織
+     * 
+     * @param ids 闇�瑕佸垹闄ょ殑鏁版嵁ID
+     * @return 缁撴灉
+     */
+    public int deleteAccountLogByIds(Integer[] ids);
+}

--
Gitblit v1.8.0