From 3849263b31a16a91ff08acaa42786ecfde76f33c Mon Sep 17 00:00:00 2001
From: zhangback <zhangback@163.com>
Date: 星期四, 27 十一月 2025 20:18:08 +0800
Subject: [PATCH] 提交
---
tms/src/main/java/com/ruoyi/tms/mapper/TmsQuoteItemMapper.java | 87 +++++++++++++++++++++++++++++++++++++++++++
1 files changed, 87 insertions(+), 0 deletions(-)
diff --git a/tms/src/main/java/com/ruoyi/tms/mapper/TmsQuoteItemMapper.java b/tms/src/main/java/com/ruoyi/tms/mapper/TmsQuoteItemMapper.java
new file mode 100644
index 0000000..c0fb2f7
--- /dev/null
+++ b/tms/src/main/java/com/ruoyi/tms/mapper/TmsQuoteItemMapper.java
@@ -0,0 +1,87 @@
+package com.ruoyi.tms.mapper;
+
+import java.util.List;
+import com.ruoyi.tms.domain.TmsQuoteItem;
+import com.baomidou.mybatisplus.core.mapper.BaseMapper;
+
+
+/**
+ * 鎶ヤ环椤圭洰Mapper鎺ュ彛
+ *
+ * @author ruoyi
+ * @date 2025-11-26
+ */
+public interface TmsQuoteItemMapper extends BaseMapper<TmsQuoteItem>
+{
+ /**
+ * 鏌ヨ鎶ヤ环椤圭洰
+ *
+ * @param id 鎶ヤ环椤圭洰ID
+ * @return 鎶ヤ环椤圭洰
+ */
+ public TmsQuoteItem selectTmsQuoteItemById(Integer id);
+
+ /**
+ * 鏌ヨ鎶ヤ环椤圭洰 璁板綍鏁�
+ *
+ * @param tmsQuoteItem 鎶ヤ环椤圭洰
+ * @return 鎶ヤ环椤圭洰闆嗗悎
+ */
+ public int selectTmsQuoteItemCount(TmsQuoteItem tmsQuoteItem);
+
+ /**
+ * 鏌ヨ鎶ヤ环椤圭洰鍒楄〃
+ *
+ * @param tmsQuoteItem 鎶ヤ环椤圭洰
+ * @return 鎶ヤ环椤圭洰闆嗗悎
+ */
+ public List<TmsQuoteItem> selectTmsQuoteItemList(TmsQuoteItem tmsQuoteItem);
+
+ /**
+ * 鏂板鎶ヤ环椤圭洰
+ *
+ * @param tmsQuoteItem 鎶ヤ环椤圭洰
+ * @return 缁撴灉
+ */
+ public int insertTmsQuoteItem(TmsQuoteItem tmsQuoteItem);
+
+ /**
+ * 鏂板鎶ヤ环椤圭洰[鎵归噺]
+ *
+ * @param tmsQuoteItems 鎶ヤ环椤圭洰
+ * @return 缁撴灉
+ */
+ public int insertTmsQuoteItemBatch(List<TmsQuoteItem> tmsQuoteItems);
+
+ /**
+ * 淇敼鎶ヤ环椤圭洰
+ *
+ * @param tmsQuoteItem 鎶ヤ环椤圭洰
+ * @return 缁撴灉
+ */
+ public int updateTmsQuoteItem(TmsQuoteItem tmsQuoteItem);
+
+ /**
+ * 淇敼鎶ヤ环椤圭洰[鎵归噺]
+ *
+ * @param tmsQuoteItems 鎶ヤ环椤圭洰
+ * @return 缁撴灉
+ */
+ public int updateTmsQuoteItemBatch(List<TmsQuoteItem> tmsQuoteItems);
+
+ /**
+ * 鍒犻櫎鎶ヤ环椤圭洰
+ *
+ * @param id 鎶ヤ环椤圭洰ID
+ * @return 缁撴灉
+ */
+ public int deleteTmsQuoteItemById(Integer id);
+
+ /**
+ * 鎵归噺鍒犻櫎鎶ヤ环椤圭洰
+ *
+ * @param ids 闇�瑕佸垹闄ょ殑鏁版嵁ID
+ * @return 缁撴灉
+ */
+ public int deleteTmsQuoteItemByIds(Integer[] ids);
+}
--
Gitblit v1.8.0