20 lines
740 B
Java
20 lines
740 B
Java
|
|
package com.gear.oa.mapper;
|
||
|
|
|
||
|
|
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
|
||
|
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
||
|
|
import com.gear.oa.domain.GearPurchasePlanDetail;
|
||
|
|
import com.gear.oa.domain.vo.GearPurchasePlanDetailVo;
|
||
|
|
import com.gear.common.core.mapper.BaseMapperPlus;
|
||
|
|
import org.apache.ibatis.annotations.Param;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 采购计划明细Mapper接口
|
||
|
|
*
|
||
|
|
* @author Joshi
|
||
|
|
* @date 2025-08-30
|
||
|
|
*/
|
||
|
|
public interface GearPurchasePlanDetailMapper extends BaseMapperPlus<GearPurchasePlanDetailMapper, GearPurchasePlanDetail, GearPurchasePlanDetailVo> {
|
||
|
|
|
||
|
|
Page<GearPurchasePlanDetailVo> selectVoPagePlus(Page<Object> build,@Param("ew") LambdaQueryWrapper<GearPurchasePlanDetail> lqw);
|
||
|
|
}
|