1.修改权限问题

2.修改获取经办端token方法
This commit is contained in:
sh
2025-11-20 14:32:37 +08:00
parent 9b1983292c
commit c348a809a5
3 changed files with 45 additions and 1 deletions

View File

@@ -181,6 +181,7 @@ public class SysLoginController
*/
@GetMapping("/getTjmhToken")
public AjaxResult getTjmhToken(@RequestParam("code") String code){
System.out.println("参数code==========================="+code);
if(StringUtils.isBlank(code)){
return AjaxResult.error("参数code为空请传递code参数");
}
@@ -212,6 +213,7 @@ public class SysLoginController
*/
@GetMapping("/getWwTjmHlwToken")
public AjaxResult getWwTjmHlwToken(@RequestParam("token") String token){
System.out.println("互联网token================================"+token);
if (StringUtils.isNotBlank(token)) {
WwTokenResult wwTokenResult=new WwTokenResult();
wwTokenResult.setAccessToken(token);