From 55642c818f14bf8cf52c98e6858014bd8dc3d3a7 Mon Sep 17 00:00:00 2001
From: rk <94314517@qq.com>
Date: 星期四, 16 四月 2026 20:10:58 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/master'
---
server/services/src/main/java/com/doumee/service/business/OtherOrdersService.java | 98 +++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 98 insertions(+), 0 deletions(-)
diff --git a/server/services/src/main/java/com/doumee/service/business/OtherOrdersService.java b/server/services/src/main/java/com/doumee/service/business/OtherOrdersService.java
new file mode 100644
index 0000000..3a22baf
--- /dev/null
+++ b/server/services/src/main/java/com/doumee/service/business/OtherOrdersService.java
@@ -0,0 +1,98 @@
+package com.doumee.service.business;
+
+import com.doumee.core.model.PageData;
+import com.doumee.core.model.PageWrap;
+import com.doumee.dao.business.model.OtherOrders;
+
+import java.util.List;
+
+/**
+ * 鍏朵粬璁㈠崟璁板綍Service瀹氫箟
+ * @author rk
+ * @date 2026/04/16
+ */
+public interface OtherOrdersService {
+
+ /**
+ * 鍒涘缓
+ *
+ * @param otherOrders 瀹炰綋瀵硅薄
+ * @return Integer
+ */
+ Integer create(OtherOrders otherOrders);
+
+ /**
+ * 涓婚敭鍒犻櫎
+ *
+ * @param id 涓婚敭
+ */
+ void deleteById(Integer id);
+
+ /**
+ * 鍒犻櫎
+ *
+ * @param otherOrders 瀹炰綋瀵硅薄
+ */
+ void delete(OtherOrders otherOrders);
+
+ /**
+ * 鎵归噺涓婚敭鍒犻櫎
+ *
+ * @param ids 涓婚敭闆�
+ */
+ void deleteByIdInBatch(List<Integer> ids);
+
+ /**
+ * 涓婚敭鏇存柊
+ *
+ * @param otherOrders 瀹炰綋瀵硅薄
+ */
+ void updateById(OtherOrders otherOrders);
+
+ /**
+ * 鎵归噺涓婚敭鏇存柊
+ *
+ * @param otherOrdersList 瀹炰綋闆�
+ */
+ void updateByIdInBatch(List<OtherOrders> otherOrdersList);
+
+ /**
+ * 涓婚敭鏌ヨ
+ *
+ * @param id 涓婚敭
+ * @return OtherOrders
+ */
+ OtherOrders findById(Integer id);
+
+ /**
+ * 鏉′欢鏌ヨ鍗曟潯璁板綍
+ *
+ * @param otherOrders 瀹炰綋瀵硅薄
+ * @return OtherOrders
+ */
+ OtherOrders findOne(OtherOrders otherOrders);
+
+ /**
+ * 鏉′欢鏌ヨ
+ *
+ * @param otherOrders 瀹炰綋瀵硅薄
+ * @return List<OtherOrders>
+ */
+ List<OtherOrders> findList(OtherOrders otherOrders);
+
+ /**
+ * 鍒嗛〉鏌ヨ
+ *
+ * @param pageWrap 鍒嗛〉瀵硅薄
+ * @return PageData<OtherOrders>
+ */
+ PageData<OtherOrders> findPage(PageWrap<OtherOrders> pageWrap);
+
+ /**
+ * 鏉′欢缁熻
+ *
+ * @param otherOrders 瀹炰綋瀵硅薄
+ * @return long
+ */
+ long count(OtherOrders otherOrders);
+}
--
Gitblit v1.9.3