无关风月
2025-05-08 9486766c806fe1d9e082b2fd02ea1cc558f1b443
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.dsh.account.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.dsh.account.dto.IntroduceUserQuery;
import com.dsh.account.entity.IntroduceUser;
import com.dsh.account.entity.TAppGift;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
/**
 * <p>
 * 介绍有礼记录表 Mapper 接口
 * </p>
 *
 * @author administrator
 * @since 2023-09-12
 */
public interface TAppGiftMapper extends BaseMapper<TAppGift> {
 
    List<IntroduceUser> queryIntroduceAll(@Param("query") IntroduceUserQuery query);
 
}