File tree Expand file tree Collapse file tree 2 files changed +9
-10
lines changed
weixin-java-mp/src/main/java/me/chanjar/weixin/mp Expand file tree Collapse file tree 2 files changed +9
-10
lines changed Original file line number Diff line number Diff line change 1
1
package me .chanjar .weixin .mp .api ;
2
2
3
+ import java .util .List ;
4
+
3
5
import me .chanjar .weixin .common .exception .WxErrorException ;
4
6
import me .chanjar .weixin .mp .bean .WxMpUserQuery ;
5
7
import me .chanjar .weixin .mp .bean .result .WxMpUser ;
6
8
import me .chanjar .weixin .mp .bean .result .WxMpUserList ;
7
9
8
- import java .util .List ;
9
-
10
10
/**
11
- * 用户管理和统计相关操作接口
11
+ * 用户管理相关操作接口
12
12
*
13
13
* @author Binary Wang
14
14
*/
@@ -42,9 +42,9 @@ public interface WxMpUserService {
42
42
* 详情请见: http://mp.weixin.qq.com/wiki/index.php?title=批量获取用户基本信息
43
43
* </pre>
44
44
*
45
- * @param openidList 用户openid列表
45
+ * @param openids 用户openid列表
46
46
*/
47
- List <WxMpUser > userInfoList (List <String > openidList ) throws WxErrorException ;
47
+ List <WxMpUser > userInfoList (List <String > openids ) throws WxErrorException ;
48
48
49
49
/**
50
50
* <pre>
Original file line number Diff line number Diff line change 20
20
21
21
/**
22
22
* <pre>
23
- * 微信推送过来的消息,也是同步回复给用户的消息,xml格式
24
- * 相关字段的解释看微信开发者文档:
25
- * http://mp.weixin.qq.com/wiki/index.php?title=接收普通消息
26
- * http://mp.weixin.qq.com/wiki/index.php?title=接收事件推送
27
- * http://mp.weixin.qq.com/wiki/index.php?title=接收语音识别结果
23
+ * 微信推送过来的消息,xml格式
24
+ * 部分未注释的字段的解释请查阅相关微信开发文档:
25
+ * <a href="http://mp.weixin.qq.com/wiki?t=resource/res_main&id=mp1421140453&token=&lang=zh_CN">接收普通消息</a>
26
+ * <a href="http://mp.weixin.qq.com/wiki?t=resource/res_main&id=mp1421140454&token=&lang=zh_CN">接收事件推送</a>
28
27
* </pre>
29
28
*
30
29
* @author chanjarster
You can’t perform that action at this time.
0 commit comments