You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.4 KiB
37 lines
1.4 KiB
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<StoreupEntity> { // 声明一个接口,扩展 IService 用于基本的 CRUD 操作
|
|
|
|
PageUtils queryPage(Map<String, Object> params); // 根据传入的参数进行分页查询,并返回分页结果
|
|
|
|
List<StoreupVO> selectListVO(Wrapper<StoreupEntity> wrapper); // 根据条件包装器查询并返回 StoreupVO 列表
|
|
|
|
StoreupVO selectVO(@Param("ew") Wrapper<StoreupEntity> wrapper); // 根据条件包装器查询并返回单个 StoreupVO 对象
|
|
|
|
List<StoreupView> selectListView(Wrapper<StoreupEntity> wrapper); // 根据条件包装器查询并返回 StoreupView 列表
|
|
|
|
StoreupView selectView(@Param("ew") Wrapper<StoreupEntity> wrapper); // 根据条件包装器查询并返回单个 StoreupView 对象
|
|
|
|
PageUtils queryPage(Map<String, Object> params, Wrapper<StoreupEntity> wrapper); // 根据参数和条件包装器进行分页查询,并返回分页结果
|
|
|
|
}
|
|
|
|
|