feat(training): 添加按记录ID列表查询培训申请审批详情功能
parent
34bb4e581e
commit
b85affbfcb
|
|
@ -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());
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Reference in New Issue