package com.service; import com.baomidou.mybatisplus.mapper.Wrapper; import com.baomidou.mybatisplus.service.IService; import com.utils.PageUtils; import com.entity.StoreupEntity; import java.util.List; import java.util.Map; import com.entity.vo.StoreupVO; import org.apache.ibatis.annotations.Param; import com.entity.view.StoreupView; /** * 收藏表 * * @author // 作者信息 * @email // 邮箱信息 * @date 2023-02-21 09:46:06 // 创建日期 */ public interface StoreupService extends IService { // 声明一个接口,扩展 IService 用于基本的 CRUD 操作 PageUtils queryPage(Map params); // 根据传入的参数进行分页查询,并返回分页结果 List selectListVO(Wrapper wrapper); // 根据条件包装器查询并返回 StoreupVO 列表 StoreupVO selectVO(@Param("ew") Wrapper wrapper); // 根据条件包装器查询并返回单个 StoreupVO 对象 List selectListView(Wrapper wrapper); // 根据条件包装器查询并返回 StoreupView 列表 StoreupView selectView(@Param("ew") Wrapper wrapper); // 根据条件包装器查询并返回单个 StoreupView 对象 PageUtils queryPage(Map params, Wrapper wrapper); // 根据参数和条件包装器进行分页查询,并返回分页结果 }