|
|
@@ -627,7 +627,7 @@ public class GroupRelationController {
|
|
|
/**
|
|
|
* 车票后台登录
|
|
|
*/
|
|
|
- @GetMapping("/ticket/login")
|
|
|
+ @PostMapping("/ticket/login")
|
|
|
public Result<GroupsRelation> ticketLogin(@RequestBody @Validated TicketLoginReq loginReq) {
|
|
|
GroupsRelation relation = groupRelationFrontService.ticketLogin(loginReq);
|
|
|
return GatewayResponse.SUCCESS.newBuilder().toResult(relation);
|
|
|
@@ -636,7 +636,7 @@ public class GroupRelationController {
|
|
|
/**
|
|
|
* 奈飞验证校验
|
|
|
*/
|
|
|
- @GetMapping("/ticket/verify")
|
|
|
+ @PostMapping("/ticket/verify")
|
|
|
public Result<String> outsideTicketVerify(@RequestBody @Validated TicketLoginReq loginReq) {
|
|
|
return GatewayResponse.SUCCESS.newBuilder().toResult(groupRelationFrontService.outsideTicketVerify(loginReq));
|
|
|
}
|