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/IAgingLogService.java | 102 +++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 102 insertions(+), 0 deletions(-)
diff --git a/service/src/main/java/com/ruoyi/cwgl/service/IAgingLogService.java b/service/src/main/java/com/ruoyi/cwgl/service/IAgingLogService.java
new file mode 100644
index 0000000..9466349
--- /dev/null
+++ b/service/src/main/java/com/ruoyi/cwgl/service/IAgingLogService.java
@@ -0,0 +1,102 @@
+package com.ruoyi.cwgl.service;
+
+import java.util.List;
+import com.ruoyi.cwgl.domain.AgingLog;
+import com.baomidou.mybatisplus.extension.service.IService;
+/**
+ * 璐﹂緞鍒嗘瀽鏃ュ織Service鎺ュ彛
+ *
+ * @author ruoyi
+ * @date 2026-03-20
+ */
+public interface IAgingLogService extends IService<AgingLog>
+{
+ /**
+ * 鏌ヨ璐﹂緞鍒嗘瀽鏃ュ織
+ *
+ * @param id 璐﹂緞鍒嗘瀽鏃ュ織ID
+ * @return 璐﹂緞鍒嗘瀽鏃ュ織
+ */
+ public AgingLog selectAgingLogById(Integer id);
+
+ /**
+ * 鏌ヨ璐﹂緞鍒嗘瀽鏃ュ織 璁板綍鏁�
+ *
+ * @param agingLog 璐﹂緞鍒嗘瀽鏃ュ織
+ * @return 璐﹂緞鍒嗘瀽鏃ュ織闆嗗悎
+ */
+ public int selectAgingLogCount(AgingLog agingLog);
+
+ /**
+ * 鏌ヨ璐﹂緞鍒嗘瀽鏃ュ織鍒楄〃
+ *
+ * @param agingLog 璐﹂緞鍒嗘瀽鏃ュ織
+ * @return 璐﹂緞鍒嗘瀽鏃ュ織闆嗗悎
+ */
+ public List<AgingLog> selectAgingLogList(AgingLog agingLog);
+
+ /**
+ * 鏌ヨ璐﹂緞鍒嗘瀽鏃ュ織鍒楄〃 寮傛 瀵煎嚭
+ *
+ * @param agingLog 璐﹂緞鍒嗘瀽鏃ュ織
+ * @param exportKey 瀵煎嚭鍔熻兘鐨勫敮涓�鏍囪瘑
+ * @return 璐﹂緞鍒嗘瀽鏃ュ織闆嗗悎
+ */
+ public void export(AgingLog agingLog, String exportKey) ;
+
+
+ /**
+ * 鏂板璐﹂緞鍒嗘瀽鏃ュ織
+ *
+ * @param agingLog 璐﹂緞鍒嗘瀽鏃ュ織
+ * @return 缁撴灉
+ */
+ public int insertAgingLog(AgingLog agingLog);
+
+ /**
+ * 鏂板璐﹂緞鍒嗘瀽鏃ュ織[鎵归噺]
+ *
+ * @param agingLogs 璐﹂緞鍒嗘瀽鏃ュ織
+ * @return 缁撴灉
+ */
+ public int insertAgingLogBatch(List<AgingLog> agingLogs);
+
+ /**
+ * 淇敼璐﹂緞鍒嗘瀽鏃ュ織
+ *
+ * @param agingLog 璐﹂緞鍒嗘瀽鏃ュ織
+ * @return 缁撴灉
+ */
+ public int updateAgingLog(AgingLog agingLog);
+
+ /**
+ * 淇敼璐﹂緞鍒嗘瀽鏃ュ織[鎵归噺]
+ *
+ * @param agingLogs 璐﹂緞鍒嗘瀽鏃ュ織
+ * @return 缁撴灉
+ */
+ public int updateAgingLogBatch(List<AgingLog> agingLogs);
+ /**
+ * 鎵归噺鍒犻櫎璐﹂緞鍒嗘瀽鏃ュ織
+ *
+ * @param ids 闇�瑕佸垹闄ょ殑鏁版嵁ID
+ * @return 缁撴灉
+ */
+ public int deleteAgingLogByIds(String ids);
+
+ /**
+ * 鎵归噺鍒犻櫎璐﹂緞鍒嗘瀽鏃ュ織
+ *
+ * @param ids 闇�瑕佸垹闄ょ殑鏁版嵁ID
+ * @return 缁撴灉
+ */
+ public int deleteAgingLogByIds(Integer[] ids);
+
+ /**
+ * 鍒犻櫎璐﹂緞鍒嗘瀽鏃ュ織淇℃伅
+ *
+ * @param id 璐﹂緞鍒嗘瀽鏃ュ織ID
+ * @return 缁撴灉
+ */
+ public int deleteAgingLogById(Integer id);
+}
--
Gitblit v1.8.0