|
|
|
@ -578,11 +578,13 @@ public class ObjectiveApi {
|
|
|
|
|
|
|
|
|
|
// *根据客观题类型査询客观题
|
|
|
|
|
@AnonymousAccess
|
|
|
|
|
@ApiOperation("获取所选客观题数量及分数")
|
|
|
|
|
@ApiOperation("根据客观题类型査询客观题")
|
|
|
|
|
@PostMapping("selectObjByType")
|
|
|
|
|
private List<SysObjectiveQuestions> selectObjByType(@RequestParam String type,
|
|
|
|
|
@RequestParam String schoolId,
|
|
|
|
|
@RequestParam String systemOwner) {
|
|
|
|
|
return sysObjectiveQuestionMapper.selectObjByType(type, schoolId);
|
|
|
|
|
private List<SysObjectiveQuestionsDto> selectObjByType(@RequestParam String type,
|
|
|
|
|
@RequestParam String schoolId,
|
|
|
|
|
@RequestParam String systemOwner) {
|
|
|
|
|
List<SysObjectiveQuestionsDto> sysObjectiveQuestionsDtos = sysObjectiveQuestionMapper.selectObjByType(type, schoolId);
|
|
|
|
|
|
|
|
|
|
return sysObjectiveQuestionsDtos;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|