From 6c3c5f3fb28cc65684e065b60a09768cf8a77429 Mon Sep 17 00:00:00 2001
From: peng <peng.com>
Date: 星期一, 29 九月 2025 23:45:13 +0800
Subject: [PATCH] 添加抽奖次数加锁
---
framework/src/main/java/cn/lili/modules/lmk/service/AddNumCheekService.java | 65 ++++++++++++++++++++++++++++++++
1 files changed, 65 insertions(+), 0 deletions(-)
diff --git a/framework/src/main/java/cn/lili/modules/lmk/service/AddNumCheekService.java b/framework/src/main/java/cn/lili/modules/lmk/service/AddNumCheekService.java
new file mode 100644
index 0000000..dd09d35
--- /dev/null
+++ b/framework/src/main/java/cn/lili/modules/lmk/service/AddNumCheekService.java
@@ -0,0 +1,65 @@
+package cn.lili.modules.lmk.service;
+
+import cn.lili.modules.lmk.domain.entity.AddNumCheek;
+import com.baomidou.mybatisplus.extension.service.IService;
+import cn.lili.base.Result;
+import cn.lili.modules.lmk.domain.form.AddNumCheekForm;
+import cn.lili.modules.lmk.domain.query.AddNumCheekQuery;
+import java.util.List;
+
+/**
+ * 鐢ㄦ埛澧炲姞娆℃暟鏍¢獙 鏈嶅姟绫�
+ *
+ * @author peng
+ * @since 2025-09-29
+ */
+public interface AddNumCheekService extends IService<AddNumCheek> {
+
+ /**
+ * 娣诲姞
+ * @param form
+ * @return
+ */
+ Result add(AddNumCheekForm form);
+
+ /**
+ * 淇敼
+ * @param form
+ * @return
+ */
+ Result update(AddNumCheekForm form);
+
+ /**
+ * 鎵归噺鍒犻櫎
+ * @param ids
+ * @return
+ */
+ Result remove(List<String> ids);
+
+ /**
+ * id鍒犻櫎
+ * @param id
+ * @return
+ */
+ Result removeById(String id);
+
+ /**
+ * 鍒嗛〉鏌ヨ
+ * @param query
+ * @return
+ */
+ Result page(AddNumCheekQuery query);
+
+ /**
+ * 鏍规嵁id鏌ユ壘
+ * @param id
+ * @return
+ */
+ Result detail(String id);
+
+ /**
+ * 鍒楄〃
+ * @return
+ */
+ Result all();
+}
--
Gitblit v1.8.0