|
@@ -0,0 +1,18 @@
|
|
|
+package cn.com.qmth.examcloud.core.oe.admin.api.controller;
|
|
|
+
|
|
|
+import cn.com.qmth.examcloud.core.oe.admin.service.ExamStatisticService;
|
|
|
+import cn.com.qmth.examcloud.web.support.ControllerSupport;
|
|
|
+import io.swagger.annotations.Api;
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
+import org.springframework.web.bind.annotation.RestController;
|
|
|
+
|
|
|
+@RestController
|
|
|
+@Api(tags = "考试统计相关接口")
|
|
|
+@RequestMapping("${$rmp.ctr.oe}/exam/statistic")
|
|
|
+public class ExamStatisticController extends ControllerSupport {
|
|
|
+
|
|
|
+ @Autowired
|
|
|
+ private ExamStatisticService examStatisticService;
|
|
|
+
|
|
|
+}
|