25 lines
735 B
Java
25 lines
735 B
Java
|
|
package com.gear.oa.mapper;
|
|||
|
|
|
|||
|
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|||
|
|
import com.gear.common.core.mapper.BaseMapperPlus;
|
|||
|
|
import com.gear.oa.domain.GearRequirements;
|
|||
|
|
import com.gear.oa.domain.vo.GearRequirementsVo;
|
|||
|
|
import org.apache.ibatis.annotations.Param;
|
|||
|
|
|
|||
|
|
import java.util.List;
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* OA 需求Mapper接口
|
|||
|
|
*
|
|||
|
|
* @author ruoyi
|
|||
|
|
* @date 2025-06-27
|
|||
|
|
*/
|
|||
|
|
public interface GearRequirementsMapper extends BaseMapperPlus<GearRequirementsMapper, GearRequirements, GearRequirementsVo> {
|
|||
|
|
Page<GearRequirementsVo> selectVoListPage(Page<?> page, @Param("ew") Object lqw);
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* 查询需求列表(用于导出)
|
|||
|
|
*/
|
|||
|
|
List<GearRequirementsVo> selectVoListForExport(@Param("ew") Object lqw);
|
|||
|
|
}
|