From e46e620ea7afd8b18aa24dde8e3c9564355fa14f Mon Sep 17 00:00:00 2001 From: peng <peng.com> Date: 星期日, 28 九月 2025 15:14:51 +0800 Subject: [PATCH] Merge branch 'send_coupon' into user_action --- framework/src/main/java/cn/lili/modules/lmk/mapper/StoreCouponSingleMapper.java | 39 +++++++++++++++++++++++++++++++++++++++ 1 files changed, 39 insertions(+), 0 deletions(-) diff --git a/framework/src/main/java/cn/lili/modules/lmk/mapper/StoreCouponSingleMapper.java b/framework/src/main/java/cn/lili/modules/lmk/mapper/StoreCouponSingleMapper.java new file mode 100644 index 0000000..24b1ac4 --- /dev/null +++ b/framework/src/main/java/cn/lili/modules/lmk/mapper/StoreCouponSingleMapper.java @@ -0,0 +1,39 @@ +package cn.lili.modules.lmk.mapper; + +import cn.lili.modules.lmk.domain.entity.StoreCouponSingle; +import com.baomidou.mybatisplus.core.metadata.IPage; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; +import cn.lili.modules.lmk.domain.vo.StoreCouponSingleVO; +import cn.lili.modules.lmk.domain.form.StoreCouponSingleForm; +import cn.lili.modules.lmk.domain.query.StoreCouponSingleQuery; +import java.util.List; +import org.apache.ibatis.annotations.Mapper; +import org.apache.ibatis.annotations.Param; + +/** + * 搴楅摵浼樻儬鍗峰崟鍝� Mapper 鎺ュ彛 + * + * @author peng + * @since 2025-09-26 + */ +@Mapper +public interface StoreCouponSingleMapper extends BaseMapper<StoreCouponSingle> { + + /** + * id鏌ユ壘搴楅摵浼樻儬鍗峰崟鍝� + * @param id + * @return + */ + StoreCouponSingleVO getById(String id); + + /** + * 鍒嗛〉 + */ + IPage getPage(IPage page, @Param("query") StoreCouponSingleQuery query); + + /** + * 鍒嗛〉 + */ + IPage getPageByRefId(IPage page, @Param("query") StoreCouponSingleQuery query); + +} -- Gitblit v1.8.0