|
|
|
@ -571,8 +571,10 @@ public class ObjectiveApi {
|
|
|
|
|
@AnonymousAccess
|
|
|
|
|
@ApiOperation("获取所选客观题数量及分数")
|
|
|
|
|
@PostMapping("getChooseObjCountAndSorce")
|
|
|
|
|
private Map<Integer, BigDecimal> getChooseObjCountAndSorce(@RequestParam List<String> objectIdList) {
|
|
|
|
|
return sysObjectiveQuestionMapper.getChooseObjCountAndSorce(objectIdList);
|
|
|
|
|
private Map<String, BigDecimal> getChooseObjCountAndSorce(@RequestBody List<String> objectIdList) {
|
|
|
|
|
|
|
|
|
|
Map<String, BigDecimal> chooseObjCountAndSorce = sysObjectiveQuestionMapper.getChooseObjCountAndSorce(objectIdList);
|
|
|
|
|
return chooseObjCountAndSorce;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|