hjl
2024-06-18 aaa3384609da2dfb7d6788a2a2b3d92a2bff0813
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
package com.ruoyi.user.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.ruoyi.user.entity.UserCollect;
import com.ruoyi.user.vo.UserCollectVO;
import org.apache.ibatis.annotations.Mapper;
 
import java.util.List;
 
/**
 * <p>
 * 用户收藏表 Mapper 接口
 * </p>
 *
 * @author hjl
 * @since 2024-06-07
 */
@Mapper
public interface UserCollectMapper extends BaseMapper<UserCollect> {
 
    /**
     * 服务收藏列表
     *
     * @param userid 用户id
     * @return 服务列表
     */
    List<UserCollectVO> collectList(Long userid);
}