package com.ruoyi.member.mapper.birthday;
|
|
import com.ruoyi.member.domain.pojo.birthday.BirthdayCard;
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import org.apache.ibatis.annotations.Param;
|
|
/**
|
* <p>
|
* Mapper 接口
|
* </p>
|
*
|
* @author jqs
|
* @since 2023-06-15
|
*/
|
public interface BirthdayCardMapper extends BaseMapper<BirthdayCard> {
|
|
/**
|
* @description
|
* @author jqs
|
* @date 2023/7/1 15:34
|
* @param
|
* @return BirthdayCard
|
*/
|
BirthdayCard getPlatformBirthdayCard(@Param("shopId") Long shopId);
|
|
/**
|
* @description
|
* @author jqs
|
* @date 2023/7/1 15:34
|
* @param
|
* @return BirthdayCard
|
*/
|
BirthdayCard getMerShopBirthdayCard(@Param("shopId") Long shopId);
|
}
|