This commit is contained in:
liupopo
2023-11-26 19:25:22 +08:00
parent 7bddc4e91d
commit f2d7f1bcdb
9 changed files with 280 additions and 3 deletions

View File

@@ -31,9 +31,12 @@ public class LpkCustomerService extends MybatisBaseService<LpkCustomerMapper, Lp
@Autowired
private FileUploadComponent fileUploadComponent;
String APP_ID = "wx4724e3a3c27f36b5";
String SECRET = "971fd3b8aa7b08ce3e8a5f3e502b1a8d";
// 汇融惠享
// String APP_ID = "wx4724e3a3c27f36b5";
// String SECRET = "971fd3b8aa7b08ce3e8a5f3e502b1a8d";
// 汇融云眼
String APP_ID = "wx11565021714ba796";
String SECRET = "eb511fbb5f864cdabc3d044b639814c9";
private static final String WX_URL_LOGIN = "https://api.weixin.qq.com/sns/jscode2session?appid=APPID&secret=SECRET&js_code=JSCODE&grant_type=authorization_code ";
public ResultBean<JSONObject> wxLogin(String jsCode, String appid, String secret) {

View File

@@ -0,0 +1,4 @@
package com.yxt.yyth.config;
public class YythConfig {
}

View File

@@ -0,0 +1,4 @@
package com.yxt.yyth.feign;
public class YythFeign {
}