feat(training): 添加按记录ID列表查询培训申请审批详情功能

dev
zhaokai 2026-03-07 16:28:45 +08:00
parent 34bb4e581e
commit b85affbfcb
2 changed files with 2 additions and 1 deletions

View File

@ -84,6 +84,7 @@ public class ClassRepositoryImpl extends BaseRepositoryImpl<ClassMapper, ClassDO
@Override
public PageResponse<StudentDO> listStudentClassPage(Map<String, Object> params) {
IPage<StudentDO> iPage = new Query<StudentDO>().getPage(params);
IPage<StudentDO> result = classMapper.listStudentClassPage(iPage, params, null);
return PageHelper.pageToResponse(result, result.getRecords());
}

View File

@ -216,7 +216,7 @@
<if test="params.examination != null and params.examination !='' ">
and s.exam_sign_flag = #{params.examination}
</if>
<if test="params.eqState != null and params.eqState !='' ">
<if test="params.eqState != null ">
<if test = "params.eqState = 1">
and c.state = 1
</if>