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 11package me .chanjar .weixin .mp .api ;
22
3+ import java .util .List ;
4+
35import me .chanjar .weixin .common .exception .WxErrorException ;
46import me .chanjar .weixin .mp .bean .WxMpUserQuery ;
57import me .chanjar .weixin .mp .bean .result .WxMpUser ;
68import me .chanjar .weixin .mp .bean .result .WxMpUserList ;
79
8- import java .util .List ;
9-
1010/**
11- * 用户管理和统计相关操作接口
11+ * 用户管理相关操作接口
1212 *
1313 * @author Binary Wang
1414 */
@@ -42,9 +42,9 @@ public interface WxMpUserService {
4242 * 详情请见: http://mp.weixin.qq.com/wiki/index.php?title=批量获取用户基本信息
4343 * </pre>
4444 *
45- * @param openidList 用户openid列表
45+ * @param openids 用户openid列表
4646 */
47- List <WxMpUser > userInfoList (List <String > openidList ) throws WxErrorException ;
47+ List <WxMpUser > userInfoList (List <String > openids ) throws WxErrorException ;
4848
4949 /**
5050 * <pre>
Original file line number Diff line number Diff line change 2020
2121/**
2222 * <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>
2827 * </pre>
2928 *
3029 * @author chanjarster
You can’t perform that action at this time.
0 commit comments