|
|
|
@ -795,7 +795,13 @@ public class ResourcesQuestionService extends CoreBaseService<ResourcesQuestion>
|
|
|
|
|
return g;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public List<QuestionTypeCountVO> getTheoryCourseQuestionTypeGroupInfo(String orgIdPlural, String courseLabelTypePlural) {
|
|
|
|
|
/**
|
|
|
|
|
* 根据机构ids和课程分类查询题目类型对应的数量
|
|
|
|
|
* @param orgIdPlural
|
|
|
|
|
* @param courseLabelTypePlural
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
public List<QuestionTypeCountVO> getQuestionTypeGroupInfoByOrgIdsAndCourseLabelTypes(String orgIdPlural, String courseLabelTypePlural) {
|
|
|
|
|
CourseInfoQuery courseInfoQuery = new CourseInfoQuery();
|
|
|
|
|
courseInfoQuery.setOrgIdPlural(orgIdPlural);
|
|
|
|
|
List<QuestionTypeCountVO> g = resourcesQuestionDao.getGroupQuestionTypeCount(courseInfoQuery, courseLabelTypePlural);
|
|
|
|
|