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.
36 lines
908 B
36 lines
908 B
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 2024-04-13 00:20:04
|
|
*/
|
|
public interface StoreupDao extends BaseMapper<StoreupEntity> {
|
|
|
|
List<StoreupVO> selectListVO(@Param("ew") Wrapper<StoreupEntity> wrapper);
|
|
|
|
StoreupVO selectVO(@Param("ew") Wrapper<StoreupEntity> wrapper);
|
|
|
|
List<StoreupView> selectListView(@Param("ew") Wrapper<StoreupEntity> wrapper);
|
|
|
|
List<StoreupView> selectListView(Pagination page,@Param("ew") Wrapper<StoreupEntity> wrapper);
|
|
|
|
StoreupView selectView(@Param("ew") Wrapper<StoreupEntity> wrapper);
|
|
|
|
|
|
}
|