From bbc4add99e1d925e97277ed5f2d90d9293cdab8c Mon Sep 17 00:00:00 2001 From: peng <peng.com> Date: 星期四, 25 九月 2025 18:49:31 +0800 Subject: [PATCH] 初始化店铺扫码领取优惠卷 --- framework/src/main/java/cn/lili/modules/lmk/service/StoreCouponService.java | 65 ++++++++++++++++++++++++++++++++ 1 files changed, 65 insertions(+), 0 deletions(-) diff --git a/framework/src/main/java/cn/lili/modules/lmk/service/StoreCouponService.java b/framework/src/main/java/cn/lili/modules/lmk/service/StoreCouponService.java new file mode 100644 index 0000000..47e9669 --- /dev/null +++ b/framework/src/main/java/cn/lili/modules/lmk/service/StoreCouponService.java @@ -0,0 +1,65 @@ +package cn.lili.modules.lmk.service; + +import cn.lili.modules.lmk.domain.entity.StoreCoupon; +import com.baomidou.mybatisplus.extension.service.IService; +import cn.lili.base.Result; +import cn.lili.modules.lmk.domain.form.StoreCouponForm; +import cn.lili.modules.lmk.domain.query.StoreCouponQuery; +import java.util.List; + +/** + * 搴楅摵浼樻儬鍗峰搴斿叧绯� 鏈嶅姟绫� + * + * @author peng + * @since 2025-09-25 + */ +public interface StoreCouponService extends IService<StoreCoupon> { + + /** + * 娣诲姞 + * @param form + * @return + */ + Result add(StoreCouponForm form); + + /** + * 淇敼 + * @param form + * @return + */ + Result update(StoreCouponForm form); + + /** + * 鎵归噺鍒犻櫎 + * @param ids + * @return + */ + Result remove(List<String> ids); + + /** + * id鍒犻櫎 + * @param id + * @return + */ + Result removeById(String id); + + /** + * 鍒嗛〉鏌ヨ + * @param query + * @return + */ + Result page(StoreCouponQuery query); + + /** + * 鏍规嵁id鏌ユ壘 + * @param id + * @return + */ + Result detail(String id); + + /** + * 鍒楄〃 + * @return + */ + Result all(); +} -- Gitblit v1.8.0