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/service/IAccountLogService.java | 102 +++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 102 insertions(+), 0 deletions(-)
diff --git a/service/src/main/java/com/ruoyi/cwgl/service/IAccountLogService.java b/service/src/main/java/com/ruoyi/cwgl/service/IAccountLogService.java
new file mode 100644
index 0000000..7b6108d
--- /dev/null
+++ b/service/src/main/java/com/ruoyi/cwgl/service/IAccountLogService.java
@@ -0,0 +1,102 @@
+package com.ruoyi.cwgl.service;
+
+import java.util.List;
+import com.ruoyi.cwgl.domain.AccountLog;
+import com.baomidou.mybatisplus.extension.service.IService;
+/**
+ * 璐︽鍒嗘瀽鏃ュ織Service鎺ュ彛
+ *
+ * @author ruoyi
+ * @date 2026-03-20
+ */
+public interface IAccountLogService extends IService<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 璐︽鍒嗘瀽鏃ュ織
+ * @param exportKey 瀵煎嚭鍔熻兘鐨勫敮涓�鏍囪瘑
+ * @return 璐︽鍒嗘瀽鏃ュ織闆嗗悎
+ */
+ public void export(AccountLog accountLog, String exportKey) ;
+
+
+ /**
+ * 鏂板璐︽鍒嗘瀽鏃ュ織
+ *
+ * @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 ids 闇�瑕佸垹闄ょ殑鏁版嵁ID
+ * @return 缁撴灉
+ */
+ public int deleteAccountLogByIds(String ids);
+
+ /**
+ * 鎵归噺鍒犻櫎璐︽鍒嗘瀽鏃ュ織
+ *
+ * @param ids 闇�瑕佸垹闄ょ殑鏁版嵁ID
+ * @return 缁撴灉
+ */
+ public int deleteAccountLogByIds(Integer[] ids);
+
+ /**
+ * 鍒犻櫎璐︽鍒嗘瀽鏃ュ織淇℃伅
+ *
+ * @param id 璐︽鍒嗘瀽鏃ュ織ID
+ * @return 缁撴灉
+ */
+ public int deleteAccountLogById(Integer id);
+}
--
Gitblit v1.8.0