|
@@ -7,6 +7,8 @@ import com.qmth.exam.reserve.bean.student.WechatBindReq;
|
|
import com.qmth.exam.reserve.controller.BaseController;
|
|
import com.qmth.exam.reserve.controller.BaseController;
|
|
import io.swagger.annotations.Api;
|
|
import io.swagger.annotations.Api;
|
|
import io.swagger.annotations.ApiOperation;
|
|
import io.swagger.annotations.ApiOperation;
|
|
|
|
+import org.slf4j.Logger;
|
|
|
|
+import org.slf4j.LoggerFactory;
|
|
import org.springframework.web.bind.annotation.PostMapping;
|
|
import org.springframework.web.bind.annotation.PostMapping;
|
|
import org.springframework.web.bind.annotation.RequestBody;
|
|
import org.springframework.web.bind.annotation.RequestBody;
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
@@ -18,6 +20,8 @@ import org.springframework.web.bind.annotation.RestController;
|
|
@Aac(strict = false, auth = true)
|
|
@Aac(strict = false, auth = true)
|
|
public class StudentController extends BaseController {
|
|
public class StudentController extends BaseController {
|
|
|
|
|
|
|
|
+ private static final Logger log = LoggerFactory.getLogger(StudentController.class);
|
|
|
|
+
|
|
@ApiOperation(value = "考生账号与微信号绑定")
|
|
@ApiOperation(value = "考生账号与微信号绑定")
|
|
@PostMapping(value = "/wechat/binding")
|
|
@PostMapping(value = "/wechat/binding")
|
|
public void binding(@RequestBody WechatBindReq req) {
|
|
public void binding(@RequestBody WechatBindReq req) {
|