k94314517
2025-04-14 997058fc1caec43ad2518d88c94a39db02e0292b
server/src/main/java/com/doumee/core/utils/qiyeweixin/QywxUtil.java
@@ -81,6 +81,7 @@
        return null;
    }
    public static QywxSendMsgResponse sendMsg(String token, QywxSendMsgRequest param)  {
        try{
        String[] interfaceUrl = QywxConstant.SEND_MSG;
        String url = interfaceUrl[0].replace("${accesstoken}",token);
        QywxSendMsgResponse response = sendHttpRequestSingle(url,interfaceUrl[1],JSONObject.toJSONString(param)
@@ -88,6 +89,10 @@
        if(response.getErrcode()!=null && response.getErrcode() ==0){
            return response;
        }
        }catch (Exception e){
        }
        return null;
    }
    public static List<QywxUserListResponse> getUserList(String token,String depatId)   {