1234567891011121314151617181920212223242526272829303132 |
- package com.foonsu.efenxiao.platform.mapper;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- import com.baomidou.mybatisplus.core.metadata.IPage;
- import com.foonsu.efenxiao.platform.entity.PlatformGoods;
- import com.foonsu.efenxiao.platform.vo.PlatformGoodsReq;
- import com.foonsu.efenxiao.platform.vo.PlatformGoodsVO;
- import org.apache.ibatis.annotations.Param;
- import java.util.List;
- /**
- * 平台商品扩展 Mapper 接口
- *
- * @author BladeX
- * @since 2022-03-29
- */
- public interface PlatformGoodsExtMapper extends BaseMapper<PlatformGoodsVO> {
- /**
- * 自定义分页 (商品列表包含代发商品)
- *
- * @param page
- * @param req
- * @return
- */
- List<PlatformGoodsVO> selectPlatformGoodsPageData( @Param("req") PlatformGoodsReq req);
- Integer countPlatformGoodsPage(@Param("req") PlatformGoodsReq req);
- List<Long> selectPlatformGoodsPageBizId(@Param("req") PlatformGoodsReq req);
- }
|