管理员操作 @param appId @return
(String appId,String chatroomId,List<String> wxids,Integer operType)
| 231 | * @return |
| 232 | */ |
| 233 | public static JSONObject adminOperate(String appId,String chatroomId,List<String> wxids,Integer operType){ |
| 234 | JSONObject param = new JSONObject(); |
| 235 | param.put("appId",appId); |
| 236 | param.put("wxids",wxids); |
| 237 | param.put("operType",operType); |
| 238 | param.put("chatroomId",chatroomId); |
| 239 | return OkhttpUtil.postJSON("/group/adminOperate",param); |
| 240 | } |
| 241 | |
| 242 | /** |
| 243 | * 聊天置顶 |