|
@@ -928,7 +928,8 @@ public class ExamController extends ControllerSupport {
|
|
|
return cb.and(predicates.toArray(new Predicate[predicates.size()]));
|
|
|
};
|
|
|
|
|
|
- Pageable pageable = PageRequest.of(curPage, pageSize, Sort.Direction.DESC, "updateTime");
|
|
|
+ Pageable pageable = PageRequest.of(curPage, pageSize, Sort.Direction.DESC, "updateTime",
|
|
|
+ "id");
|
|
|
Page<ExamSpecialSettingsEntity> page = examSpecialSettingsRepo.findAll(specification,
|
|
|
pageable);
|
|
|
|