图文消息统计接口, statDate类型改为String

This commit is contained in:
tanzx 2016-11-21 17:03:13 +08:00
parent b09c5ae2b2
commit 5f20d2c613

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;
} }