@@ -4002,7 +4002,7 @@ public class ApiController {
cn.hutool.json.JSONObject jsonObject = JSONUtil.parseObj(tokenResult.getBody());
- return R.builder().code(jsonObject.getInt("code")).msg(jsonObject.getStr("msg")).data(jsonObject.getStr("data")).build();
+ return R.builder().code(jsonObject.getInt("code")).msg(jsonObject.getStr("msg")).data(jsonObject.getObj("data")).build();
}