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/service/ITmsQuoteItemService.java | 102 +++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 102 insertions(+), 0 deletions(-)
diff --git a/tms/src/main/java/com/ruoyi/tms/service/ITmsQuoteItemService.java b/tms/src/main/java/com/ruoyi/tms/service/ITmsQuoteItemService.java
new file mode 100644
index 0000000..f07c53b
--- /dev/null
+++ b/tms/src/main/java/com/ruoyi/tms/service/ITmsQuoteItemService.java
@@ -0,0 +1,102 @@
+package com.ruoyi.tms.service;
+
+import java.util.List;
+import com.ruoyi.tms.domain.TmsQuoteItem;
+import com.baomidou.mybatisplus.extension.service.IService;
+/**
+ * 鎶ヤ环椤圭洰Service鎺ュ彛
+ *
+ * @author ruoyi
+ * @date 2025-11-26
+ */
+public interface ITmsQuoteItemService extends IService<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 鎶ヤ环椤圭洰
+ * @param exportKey 瀵煎嚭鍔熻兘鐨勫敮涓�鏍囪瘑
+ * @return 鎶ヤ环椤圭洰闆嗗悎
+ */
+ public void export(TmsQuoteItem tmsQuoteItem, String exportKey) ;
+
+
+ /**
+ * 鏂板鎶ヤ环椤圭洰
+ *
+ * @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 ids 闇�瑕佸垹闄ょ殑鏁版嵁ID
+ * @return 缁撴灉
+ */
+ public int deleteTmsQuoteItemByIds(String ids);
+
+ /**
+ * 鎵归噺鍒犻櫎鎶ヤ环椤圭洰
+ *
+ * @param ids 闇�瑕佸垹闄ょ殑鏁版嵁ID
+ * @return 缁撴灉
+ */
+ public int deleteTmsQuoteItemByIds(Integer[] ids);
+
+ /**
+ * 鍒犻櫎鎶ヤ环椤圭洰淇℃伅
+ *
+ * @param id 鎶ヤ环椤圭洰ID
+ * @return 缁撴灉
+ */
+ public int deleteTmsQuoteItemById(Integer id);
+}
--
Gitblit v1.8.0