feat(oa): 新增项目进度步骤分页查询功能
- 在OaProjectScheduleStepMapper中添加selectVoPageNew方法 - 在OaProjectScheduleStepMapper.xml中实现对应的SQL查询逻辑 - 修改OaProjectScheduleStepServiceImpl中的queryPageListPage方法,使用新的查询方法 - 删除旧的buildQueryWrapperLambda方法,改用QueryWrapper构建查询条件 - 在buildQueryWrapper方法中增加nodeHeader、startTime和endTime的查询条件- 在OaProjectScheduleStepVo中添加projectId和projectName字段
This commit is contained in:
@@ -37,4 +37,6 @@ public interface OaProjectScheduleStepMapper extends BaseMapperPlus<OaProjectSch
|
||||
* @return 删除的记录数
|
||||
*/
|
||||
int deleteByScheduleIds(@Param("scheduleIds") Collection<Long> scheduleIds);
|
||||
|
||||
Page<OaProjectScheduleStepVo> selectVoPageNew(Page<Object> build,@Param(Constants.WRAPPER) QueryWrapper<OaProjectScheduleStep> lqw);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user