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/AgingLogMapper.java | 87 +++++++++++++++++++++++++++++++++++++++++++
1 files changed, 87 insertions(+), 0 deletions(-)
diff --git a/service/src/main/java/com/ruoyi/cwgl/mapper/AgingLogMapper.java b/service/src/main/java/com/ruoyi/cwgl/mapper/AgingLogMapper.java
new file mode 100644
index 0000000..5ea9b2c
--- /dev/null
+++ b/service/src/main/java/com/ruoyi/cwgl/mapper/AgingLogMapper.java
@@ -0,0 +1,87 @@
+package com.ruoyi.cwgl.mapper;
+
+import java.util.List;
+import com.ruoyi.cwgl.domain.AgingLog;
+import com.baomidou.mybatisplus.core.mapper.BaseMapper;
+
+
+/**
+ * 璐﹂緞鍒嗘瀽鏃ュ織Mapper鎺ュ彛
+ *
+ * @author ruoyi
+ * @date 2026-03-20
+ */
+public interface AgingLogMapper extends BaseMapper<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 璐﹂緞鍒嗘瀽鏃ュ織
+ * @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 id 璐﹂緞鍒嗘瀽鏃ュ織ID
+ * @return 缁撴灉
+ */
+ public int deleteAgingLogById(Integer id);
+
+ /**
+ * 鎵归噺鍒犻櫎璐﹂緞鍒嗘瀽鏃ュ織
+ *
+ * @param ids 闇�瑕佸垹闄ょ殑鏁版嵁ID
+ * @return 缁撴灉
+ */
+ public int deleteAgingLogByIds(Integer[] ids);
+}
--
Gitblit v1.8.0