ADD file via upload

zhangshuting_branch
p4vkf3rot 9 months ago
parent 7e5202ea4e
commit 7e2acbf2c0

@ -0,0 +1,38 @@
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);
}
Loading…
Cancel
Save