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.
j2ee/StoreupDao.java

39 lines
1.6 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

package com.dao;
import com.entity.StoreupEntity;
import com.baomidou.mybatisplus.mapper.BaseMapper;
import java.util.List;
import java.util.Map;
import com.baomidou.mybatisplus.mapper.Wrapper;
import com.baomidou.mybatisplus.plugins.pagination.Pagination;
import org.apache.ibatis.annotations.Param;
import com.entity.vo.StoreupVO;
import com.entity.view.StoreupView;
/**
* 收藏表
* 该接口用于定义与收藏相关的数据访问操作
*
* @author
* @email
* @date 2023-02-21 09:46:06
*/
public interface StoreupDao extends BaseMapper<StoreupEntity> {
// 根据查询条件Wrapper选择收藏的信息列表并返回一个 StoreupVO 对象的列表
List<StoreupVO> selectListVO(@Param("ew") Wrapper<StoreupEntity> wrapper);
// 根据查询条件Wrapper选择单个收藏的信息并返回一个 StoreupVO 对象
StoreupVO selectVO(@Param("ew") Wrapper<StoreupEntity> wrapper);
// 根据查询条件Wrapper选择收藏的信息视图列表并返回一个 StoreupView 对象的列表
List<StoreupView> selectListView(@Param("ew") Wrapper<StoreupEntity> wrapper);
// 根据查询条件Wrapper与分页信息选择收藏的信息视图列表并返回一个 StoreupView 对象的列表
List<StoreupView> selectListView(Pagination page, @Param("ew") Wrapper<StoreupEntity> wrapper);
// 根据查询条件Wrapper选择单个收藏的信息视图并返回一个 StoreupView 对象
StoreupView selectView(@Param("ew") Wrapper<StoreupEntity> wrapper);
}