package com.fjhx.wms.mapper.stock; import com.fjhx.wms.entity.stock.po.StockWait; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import com.fjhx.wms.entity.stock.vo.StockWaitVo; import com.ruoyi.common.utils.wrapper.IWrapper; import org.apache.ibatis.annotations.Param; /** *

* 待出入库 Mapper 接口 *

* * @author * @since 2023-03-22 */ public interface StockWaitMapper extends BaseMapper { /** * 待出入库分页 */ Page getPage1(@Param("page") Page page, @Param("ew") IWrapper wrapper); /** * 待出入库分页 */ Page getPage(@Param("page") Page page, @Param("ew") IWrapper wrapper); }