From 672637fa4a4914ec9667cb15f70b67482b8a0e5e Mon Sep 17 00:00:00 2001 From: peng <peng.com> Date: 星期四, 25 九月 2025 17:16:42 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/send_coupon' into user_action --- framework/src/main/java/cn/lili/modules/lmk/service/ShareActionService.java | 65 ++++++++++++++++++++++++++++++++ 1 files changed, 65 insertions(+), 0 deletions(-) diff --git a/framework/src/main/java/cn/lili/modules/lmk/service/ShareActionService.java b/framework/src/main/java/cn/lili/modules/lmk/service/ShareActionService.java new file mode 100644 index 0000000..e75ebad --- /dev/null +++ b/framework/src/main/java/cn/lili/modules/lmk/service/ShareActionService.java @@ -0,0 +1,65 @@ +package cn.lili.modules.lmk.service; + +import cn.lili.modules.lmk.domain.entity.ShareAction; +import com.baomidou.mybatisplus.extension.service.IService; +import cn.lili.base.Result; +import cn.lili.modules.lmk.domain.form.ShareActionForm; +import cn.lili.modules.lmk.domain.query.ShareActionQuery; +import java.util.List; + +/** + * 鐢ㄦ埛琛屼负鍒嗕韩 鏈嶅姟绫� + * + * @author peng + * @since 2025-09-25 + */ +public interface ShareActionService extends IService<ShareAction> { + + /** + * 娣诲姞 + * @param form + * @return + */ + Result add(ShareActionForm form); + + /** + * 淇敼 + * @param form + * @return + */ + Result update(ShareActionForm form); + + /** + * 鎵归噺鍒犻櫎 + * @param ids + * @return + */ + Result remove(List<String> ids); + + /** + * id鍒犻櫎 + * @param id + * @return + */ + Result removeById(String id); + + /** + * 鍒嗛〉鏌ヨ + * @param query + * @return + */ + Result page(ShareActionQuery query); + + /** + * 鏍规嵁id鏌ユ壘 + * @param id + * @return + */ + Result detail(String id); + + /** + * 鍒楄〃 + * @return + */ + Result all(); +} -- Gitblit v1.8.0