|
@@ -0,0 +1,16 @@
|
|
|
+package com.qmth.exam.reserve.controller.admin;
|
|
|
+
|
|
|
+import com.qmth.boot.api.annotation.Aac;
|
|
|
+import com.qmth.boot.api.constant.ApiConstant;
|
|
|
+import io.swagger.annotations.Api;
|
|
|
+import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
+import org.springframework.web.bind.annotation.RestController;
|
|
|
+
|
|
|
+@RestController
|
|
|
+@Api(tags = "【管理端】考点预约设置相关接口")
|
|
|
+@RequestMapping(ApiConstant.DEFAULT_URI_PREFIX + "/admin/time/period/exam/site")
|
|
|
+@Aac(strict = false, auth = true)
|
|
|
+public class TimePeriodExamSiteController {
|
|
|
+
|
|
|
+
|
|
|
+}
|