Commit fa54c426 by 徐高华

test

parent c91a005e
......@@ -64,12 +64,16 @@ public class QwFriendApiServiceImpl implements QwFriendApiService {
String url ="https://open.work.weixin.qq.com/devtool/query?e=" ;
String result = "";
String wxCode = "0";
String wxUrl = "" ;
String wxaCode = "0";
String wxaUrl ="" ;
if (wxResp.isSuccess()) {
result = "ok";
} else {
result = wxResp.getCode();
wxCode = url+result;
wxCode = result;
wxUrl = url+result;
retMap.put("服务号", wxUrl) ;
}
retMap.put("wxCode", wxCode);
sb.append("服务号-").append(result).append(",");
......@@ -79,7 +83,9 @@ public class QwFriendApiServiceImpl implements QwFriendApiService {
result = "ok";
} else {
result = wxaResp.getCode();
wxaCode = url+result;
wxaCode = result;
wxaUrl = url+result;
retMap.put("小程序", wxaUrl) ;
}
sb.append("小程序-").append(result);
retMap.put("remark", sb.toString());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment