StockWaitMapper.java 807 B

12345678910111213141516171819202122232425262728293031
  1. package com.fjhx.wms.mapper.stock;
  2. import com.fjhx.wms.entity.stock.po.StockWait;
  3. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  4. import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
  5. import com.fjhx.wms.entity.stock.vo.StockWaitVo;
  6. import com.ruoyi.common.utils.wrapper.IWrapper;
  7. import org.apache.ibatis.annotations.Param;
  8. /**
  9. * <p>
  10. * 待出入库 Mapper 接口
  11. * </p>
  12. *
  13. * @author
  14. * @since 2023-03-22
  15. */
  16. public interface StockWaitMapper extends BaseMapper<StockWait> {
  17. /**
  18. * 待出入库分页
  19. */
  20. Page<StockWaitVo> getPage1(@Param("page") Page<Object> page, @Param("ew") IWrapper<StockWait> wrapper);
  21. /**
  22. * 待出入库分页
  23. */
  24. Page<StockWaitVo> getPage(@Param("page") Page<Object> page, @Param("ew") IWrapper<StockWait> wrapper);
  25. }