From d941bab56c15b52312c58707ff778f6140e0c5f4 Mon Sep 17 00:00:00 2001 From: liukangdong <898885815@qq.com> Date: 星期三, 11 九月 2024 17:47:41 +0800 Subject: [PATCH] Merge branch 'master' of http://139.186.142.91:10010/r/productDev/dmvisit --- server/visits/dmvisit_service/src/main/java/com/doumee/core/haikang/model/HKTools.java | 22 ++++++++++++++++++---- 1 files changed, 18 insertions(+), 4 deletions(-) diff --git a/server/visits/dmvisit_service/src/main/java/com/doumee/core/haikang/model/HKTools.java b/server/visits/dmvisit_service/src/main/java/com/doumee/core/haikang/model/HKTools.java index 4a50aaf..b230c6a 100644 --- a/server/visits/dmvisit_service/src/main/java/com/doumee/core/haikang/model/HKTools.java +++ b/server/visits/dmvisit_service/src/main/java/com/doumee/core/haikang/model/HKTools.java @@ -529,6 +529,14 @@ } /** + * 鑾峰彇鍏ㄩ噺缁勭粐淇℃伅 + * @param body + * @return + */ + public static String orgAllList(String body) { + return startDoPostStringArtemis(HKConstants.InterfacePath.orgAllList,body); + } + /** * 鑾峰彇璁垮棰勭害璁板綍鍒楄〃 * @param body * @return @@ -546,12 +554,13 @@ return startDoPostStringArtemis(HKConstants.InterfacePath.iccmAppointmentRecords,body); } /** - * 鑾峰彇鍏ㄩ噺缁勭粐鍒楄〃 - * @param body + * 鏍规嵁寰俊鍏紬鍙蜂俊鎭幏鍙朅ccessToken * @return */ - public static String orgAllList(String body) { - return startDoPostStringArtemis(HKConstants.InterfacePath.orgAllList,body); + public static String wxAccessToken(String configId,String tagId) { + String[] wxAccessToken= HKConstants.InterfacePath.wxAccessToken; + wxAccessToken[0] = HKConstants.InterfacePath.wxAccessToken+"?tagId="+tagId+"&configId"+configId; + return startDoPostStringArtemis(wxAccessToken,""); } /** * 鑾峰彇鍏ㄩ噺鐢ㄦ埛鍒楄〃 @@ -720,4 +729,9 @@ return startDoPostStringArtemis(HKConstants.InterfacePath.applyST,body); } + public static String getMenuUrl(String menuId, String token) { + String url = HKConstants.InterfacePath.goMenuUrl[0]; + url = url.replace("${menuId}", menuId).replace("${token}",token); + return url; + } } -- Gitblit v1.9.3