PlatformGoodsExtMapper.java 911 B

1234567891011121314151617181920212223242526272829303132
  1. package com.foonsu.efenxiao.platform.mapper;
  2. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  3. import com.baomidou.mybatisplus.core.metadata.IPage;
  4. import com.foonsu.efenxiao.platform.entity.PlatformGoods;
  5. import com.foonsu.efenxiao.platform.vo.PlatformGoodsReq;
  6. import com.foonsu.efenxiao.platform.vo.PlatformGoodsVO;
  7. import org.apache.ibatis.annotations.Param;
  8. import java.util.List;
  9. /**
  10. * 平台商品扩展 Mapper 接口
  11. *
  12. * @author BladeX
  13. * @since 2022-03-29
  14. */
  15. public interface PlatformGoodsExtMapper extends BaseMapper<PlatformGoodsVO> {
  16. /**
  17. * 自定义分页 (商品列表包含代发商品)
  18. *
  19. * @param page
  20. * @param req
  21. * @return
  22. */
  23. List<PlatformGoodsVO> selectPlatformGoodsPageData( @Param("req") PlatformGoodsReq req);
  24. Integer countPlatformGoodsPage(@Param("req") PlatformGoodsReq req);
  25. List<Long> selectPlatformGoodsPageBizId(@Param("req") PlatformGoodsReq req);
  26. }