21 lines
762 B
Java
21 lines
762 B
Java
|
|
package com.klp.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.klp.common.core.mapper.BaseMapperPlus;
|
||
|
|
import com.klp.domain.WmsExpressQuestion;
|
||
|
|
import com.klp.domain.vo.WmsExpressQuestionVo;
|
||
|
|
import org.apache.ibatis.annotations.Param;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 快递问题Mapper接口
|
||
|
|
*
|
||
|
|
* @author hdka
|
||
|
|
* @date 2025-07-21
|
||
|
|
*/
|
||
|
|
public interface WmsExpressQuestionMapper extends BaseMapperPlus<WmsExpressQuestionMapper, WmsExpressQuestion, WmsExpressQuestionVo> {
|
||
|
|
|
||
|
|
Page<WmsExpressQuestionVo> selectVoPagePlus(@Param("build") Page<Object> build, @Param(Constants.WRAPPER) QueryWrapper<WmsExpressQuestion> lqw);
|
||
|
|
}
|