1
0
mirror of synced 2025-12-18 22:08:01 +08:00

Merge pull request #81 from ZhaoxiongTan/develop

图文消息统计接口, statDate类型改为String
This commit is contained in:
Binary Wang
2016-11-21 17:45:57 +08:00
committed by GitHub

View File

@@ -14,7 +14,7 @@ public class WxDataCubeArticleTotalDetail {
* 统计的日期在getarticletotal接口中ref_date指的是文章群发出日期 而stat_date是数据统计日期 * 统计的日期在getarticletotal接口中ref_date指的是文章群发出日期 而stat_date是数据统计日期
*/ */
@SerializedName("stat_date") @SerializedName("stat_date")
private Integer statDate; private String statDate;
/** /**
* target_user * target_user
@@ -191,11 +191,11 @@ public class WxDataCubeArticleTotalDetail {
@SerializedName("feed_share_from_other_cnt") @SerializedName("feed_share_from_other_cnt")
private Integer feedShareFromOtherCnt; private Integer feedShareFromOtherCnt;
public Integer getStatDate() { public String getStatDate() {
return this.statDate; return this.statDate;
} }
public void setStatDate(Integer statDate) { public void setStatDate(String statDate) {
this.statDate = statDate; this.statDate = statDate;
} }