| | |
| | | |
| | | import com.ruoyi.member.domain.pojo.birthday.BirthdayCard; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | */ |
| | | 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); |
| | | } |