| | |
| | | |
| | | import com.ruoyi.member.domain.pojo.coupon.CouponRelUser; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.ruoyi.member.domain.vo.MgtCouponMemberListVo; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | */ |
| | | public interface CouponRelUserMapper extends BaseMapper<CouponRelUser> { |
| | | |
| | | /** |
| | | * @description 获取优惠券关联用户 |
| | | * @author jqs |
| | | * @date 2023/6/13 16:17 |
| | | * @param |
| | | * @return List<MgtCouponMemberListVo> |
| | | */ |
| | | List<MgtCouponMemberListVo> listCouponMemberVo(@Param("couponId")String couponId); |
| | | } |