jiangqs
2023-07-08 c71055635df3d75e5dc838a9b66036c591913a13
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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);
}