File tree Expand file tree Collapse file tree 1 file changed +11
-9
lines changed
weixin-java-mp/src/main/java/me/chanjar/weixin/mp/api Expand file tree Collapse file tree 1 file changed +11
-9
lines changed Original file line number Diff line number Diff line change 11package me .chanjar .weixin .mp .api ;
22
3- import java .util .Date ;
4- import java .util .List ;
5-
63import me .chanjar .weixin .common .exception .WxErrorException ;
74import me .chanjar .weixin .mp .bean .result .WxMpUserCumulate ;
85import me .chanjar .weixin .mp .bean .result .WxMpUserSummary ;
96
7+ import java .util .Date ;
8+ import java .util .List ;
9+
1010/**
1111 * 统计分析相关接口
1212 * Created by Binary Wang on 2016/8/23.
@@ -16,22 +16,24 @@ public interface WxMpDataCubeService {
1616 /**
1717 * <pre>
1818 * 获取用户增减数据
19- * http://mp.weixin.qq.com/wiki/3/ecfed6e1a0a03b5f35e5efac98e864b7.html
19+ * 详情请见文档:<a href="http://mp.weixin.qq.com/wiki?t=resource/res_main&id=mp1421141082&token=&lang=zh_CN">用户分析数据接口</a>
20+ * 接口url格式:https://api.weixin.qq.com/datacube/getusersummary?access_token=ACCESS_TOKEN
2021 * </pre>
2122 *
22- * @param beginDate 最大时间跨度7天
23- * @param endDate endDate不能早于begingDate
23+ * @param beginDate 开始时间
24+ * @param endDate 最大时间跨度7天, endDate不能早于begingDate
2425 */
2526 List <WxMpUserSummary > getUserSummary (Date beginDate , Date endDate ) throws WxErrorException ;
2627
2728 /**
2829 * <pre>
2930 * 获取累计用户数据
30- * http://mp.weixin.qq.com/wiki/3/ecfed6e1a0a03b5f35e5efac98e864b7.html
31+ * 详情请见文档:<a href="http://mp.weixin.qq.com/wiki?t=resource/res_main&id=mp1421141082&token=&lang=zh_CN">用户分析数据接口</a>
32+ * 接口url格式:https://api.weixin.qq.com/datacube/getusercumulate?access_token=ACCESS_TOKEN
3133 * </pre>
3234 *
33- * @param beginDate 最大时间跨度7天
34- * @param endDate endDate不能早于begingDate
35+ * @param beginDate 开始时间
36+ * @param endDate 最大时间跨度7天, endDate不能早于begingDate
3537 */
3638 List <WxMpUserCumulate > getUserCumulate (Date beginDate , Date endDate ) throws WxErrorException ;
3739}
You can’t perform that action at this time.
0 commit comments