package com.klp.mapper; import com.baomidou.mybatisplus.core.conditions.Wrapper; import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import com.klp.domain.WmsStockLog; import com.klp.domain.vo.WmsStockLogVo; import com.klp.common.core.mapper.BaseMapperPlus; import org.apache.ibatis.annotations.Param; /** * 库存流水Mapper接口 * * @author JR * @date 2025-08-11 */ public interface WmsStockLogMapper extends BaseMapperPlus { Page selectVoPagePlus(Page page, @Param("ew") Wrapper wrapper); }