package com.gear.oa.mapper; import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; import com.baomidou.mybatisplus.core.toolkit.Constants; import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import com.gear.common.core.mapper.BaseMapperPlus; import com.gear.oa.domain.OaExpress; import com.gear.oa.domain.vo.OaExpressVo; import org.apache.ibatis.annotations.Param; /** * 物流预览Mapper接口 * * @author hdka * @date 2025-07-20 */ public interface OaExpressMapper extends BaseMapperPlus { Page selectVoPagePlus(@Param("build") Page build, @Param(Constants.WRAPPER) QueryWrapper lqw); OaExpressVo selectVoByIdPlus(@Param("expressId") Long expressId); }