| | |
| | | package cn.gistack.sm.collect.mapper; |
| | | |
| | | import cn.gistack.sm.collect.vo.CollectVO; |
| | | import cn.gistack.sm.collect.entity.UserCollect; |
| | | import cn.gistack.sm.feedback.entity.Feedback; |
| | | import cn.gistack.sm.feedback.vo.FeedbackVO; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | |
| | | public interface UserCollectMapper extends BaseMapper<UserCollect> { |
| | | String getMyCollect(@Param("userId") String userId); |
| | | |
| | | List<CollectVO> getMyCollectVO(@Param("userId") String userId); |
| | | } |