|
@@ -1,5 +1,7 @@
|
|
package com.qmth.distributed.print.api.mark;
|
|
package com.qmth.distributed.print.api.mark;
|
|
|
|
|
|
|
|
+import java.util.List;
|
|
|
|
+
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.validation.annotation.Validated;
|
|
import org.springframework.validation.annotation.Validated;
|
|
import org.springframework.web.bind.annotation.RequestBody;
|
|
import org.springframework.web.bind.annotation.RequestBody;
|
|
@@ -68,5 +70,9 @@ public class ScanAnswerController {
|
|
public IPage<AnswerQueryVo> query(@Validated AnswerQueryDomain query) {
|
|
public IPage<AnswerQueryVo> query(@Validated AnswerQueryDomain query) {
|
|
return markStudentService.query(query);
|
|
return markStudentService.query(query);
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+ @ApiOperation(value = "查询答题卡扫描概要")
|
|
|
|
+ @RequestMapping(value = "summary", method = RequestMethod.POST)
|
|
|
|
+ public List<String> summary(@Validated AnswerQueryDomain query) {
|
|
|
|
+ return markStudentService.summary(query);
|
|
|
|
+ }
|
|
}
|
|
}
|