21 lines
719 B
Java
21 lines
719 B
Java
|
|
package com.gear.oa.mapper;
|
||
|
|
|
||
|
|
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
|
||
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
||
|
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
||
|
|
import com.gear.oa.domain.GearSupplier;
|
||
|
|
import com.gear.oa.domain.vo.GearSupplierVo;
|
||
|
|
import com.gear.common.core.mapper.BaseMapperPlus;
|
||
|
|
import org.apache.ibatis.annotations.Param;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 供应商信息Mapper接口
|
||
|
|
*
|
||
|
|
* @author Joshi
|
||
|
|
* @date 2025-08-30
|
||
|
|
*/
|
||
|
|
public interface GearSupplierMapper extends BaseMapperPlus<GearSupplierMapper, GearSupplier, GearSupplierVo> {
|
||
|
|
|
||
|
|
Page<GearSupplierVo> selectVoPagePlus(Page<Object> build,@Param("ew") QueryWrapper<GearSupplier> lqw);
|
||
|
|
}
|