|
|
@@ -628,6 +628,16 @@ public class MirrorController {
|
|
|
return GatewayResponse.SUCCESS.newBuilder().toResult(webInfo);
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * nano车票跳转登录
|
|
|
+ */
|
|
|
+ @GetMapping("/nanoUser/info")
|
|
|
+ public Result<NanoUserQuota> nanoUserInfo(Long relationId) {
|
|
|
+ Long userId = StpUserUtil.getLoginIdAsLong();
|
|
|
+ NanoUserQuota nanoUserQuota = nanoUserQuotaService.getNanoUser(userId, relationId);
|
|
|
+ return GatewayResponse.SUCCESS.newBuilder().toResult(nanoUserQuota);
|
|
|
+ }
|
|
|
+
|
|
|
/**
|
|
|
* nano车票跳转登录
|
|
|
*/
|