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);
|
}
|