package com.klp.mapper; import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import com.klp.domain.WmsDeliveryWaybill; import com.klp.domain.vo.WmsDeliveryWaybillVo; import com.klp.common.core.mapper.BaseMapperPlus; import org.apache.ibatis.annotations.Param; import java.util.List; /** * 发货单主Mapper接口 * * @author klp * @date 2025-11-25 */ public interface WmsDeliveryWaybillMapper extends BaseMapperPlus { Page selectVoPagePlus(Page build,@Param("ew") QueryWrapper lqw); List selectVoListPlus(@Param("ew") QueryWrapper lqw); }