|
@@ -167,8 +167,10 @@ public class InspectedServiceImpl extends BaseQueryService<ExamStudent> implemen
|
|
groupNumbers.add(groups.get(i).getNumber());
|
|
groupNumbers.add(groups.get(i).getNumber());
|
|
}
|
|
}
|
|
dataQuery.setParameter("groupNumbers", groupNumbers);
|
|
dataQuery.setParameter("groupNumbers", groupNumbers);
|
|
- int skipCount = selectiveGroups.size() - selectiveGroups.get(0).getSelectiveCount() - 1;
|
|
|
|
- dataQuery.setParameter("skipCount", skipCount);
|
|
|
|
|
|
+ if (SelectiveStatus.MUTI_SELECTIVE.equals(selectiveStatus)) {
|
|
|
|
+ int skipCount = selectiveGroups.size() - selectiveGroups.get(0).getSelectiveCount() - 1;
|
|
|
|
+ dataQuery.setParameter("skipCount", skipCount);
|
|
|
|
+ }
|
|
}
|
|
}
|
|
return dataQuery;
|
|
return dataQuery;
|
|
}
|
|
}
|