package com.sinata.shop.modular.mall.dao;
|
|
import com.baomidou.mybatisplus.mapper.BaseMapper;
|
import com.baomidou.mybatisplus.mapper.Wrapper;
|
import com.baomidou.mybatisplus.plugins.Page;
|
import com.sinata.shop.modular.mall.model.MallGoods;
|
import org.apache.ibatis.annotations.Param;
|
|
import java.util.List;
|
|
/**
|
* <p>
|
* 商品信息 Mapper 接口
|
* </p>
|
*
|
* @author frankevil
|
* @since 2023-03-16
|
*/
|
public interface MallGoodsMapper extends BaseMapper<MallGoods> {
|
|
/**
|
* 查询商品
|
* @param page
|
* @param wrapper
|
* @return
|
*/
|
List<MallGoods> findList(@Param("page") Page<MallGoods> page, @Param("ew") Wrapper<?> wrapper);
|
}
|