|
@@ -0,0 +1,100 @@ |
|
|
|
|
|
package me.chanjar.weixin.mp.bean.datacube; |
|
|
|
|
|
|
|
|
|
|
|
import com.google.gson.annotations.SerializedName; |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
* 图文分析数据接口返回结果对象 |
|
|
|
|
|
* @author binarywang(https://github.com/binarywang) |
|
|
|
|
|
* Created by Binary Wang on 2016/8/24. |
|
|
|
|
|
*/ |
|
|
|
|
|
public class WxDataCubeArticleTotal extends WxDataCubeResultBase { |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
* ref_hour |
|
|
|
|
|
* 数据的小时,包括从000到2300,分别代表的是[000,100)到[2300,2400),即每日的第1小时和最后1小时 |
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
* msgid |
|
|
|
|
|
* 请注意:这里的msgid实际上是由msgid(图文消息id,这也就是群发接口调用后返回的msg_data_id)和index(消息次序索引)组成, 例如12003_3, 其中12003是msgid,即一次群发的消息的id; 3为index,假设该次群发的图文消息共5个文章(因为可能为多图文),3表示5个中的第3个 |
|
|
|
|
|
*/ |
|
|
|
|
|
@SerializedName("msgid") |
|
|
|
|
|
private String msgId; |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
* title |
|
|
|
|
|
* 图文消息的标题 |
|
|
|
|
|
*/ |
|
|
|
|
|
@SerializedName("title") |
|
|
|
|
|
private String title; |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
* int_page_read_user |
|
|
|
|
|
* 图文页(点击群发图文卡片进入的页面)的阅读人数 |
|
|
|
|
|
*/ |
|
|
|
|
|
@SerializedName("int_page_read_user") |
|
|
|
|
|
private Integer intPageReadUser; |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
* int_page_read_count |
|
|
|
|
|
* 图文页的阅读次数 |
|
|
|
|
|
*/ |
|
|
|
|
|
@SerializedName("int_page_read_count") |
|
|
|
|
|
private Integer intPageReadCount; |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
* ori_page_read_user |
|
|
|
|
|
* 原文页(点击图文页“阅读原文”进入的页面)的阅读人数,无原文页时此处数据为0 |
|
|
|
|
|
*/ |
|
|
|
|
|
@SerializedName("ori_page_read_user") |
|
|
|
|
|
private Integer oriPageReadUser; |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
* ori_page_read_count |
|
|
|
|
|
* 原文页的阅读次数 |
|
|
|
|
|
*/ |
|
|
|
|
|
@SerializedName("ori_page_read_count") |
|
|
|
|
|
private Integer oriPageReadCount; |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
* share_scene |
|
|
|
|
|
* 分享的场景 1代表好友转发 2代表朋友圈 3代表腾讯微博 255代表其他 |
|
|
|
|
|
*/ |
|
|
|
|
|
@SerializedName("share_scene") |
|
|
|
|
|
private Integer shareScene; |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
* share_user |
|
|
|
|
|
* 分享的人数 |
|
|
|
|
|
*/ |
|
|
|
|
|
@SerializedName("share_user") |
|
|
|
|
|
private Integer shareUser; |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
* share_count |
|
|
|
|
|
* 分享的次数 |
|
|
|
|
|
*/ |
|
|
|
|
|
@SerializedName("share_count") |
|
|
|
|
|
private Integer shareCount; |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
* add_to_fav_user |
|
|
|
|
|
* 收藏的人数 |
|
|
|
|
|
*/ |
|
|
|
|
|
@SerializedName("add_to_fav_user") |
|
|
|
|
|
private Integer addToFavUser; |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
* add_to_fav_count |
|
|
|
|
|
* 收藏的次数 |
|
|
|
|
|
*/ |
|
|
|
|
|
@SerializedName("add_to_fav_count") |
|
|
|
|
|
private Integer addToFavCount; |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
* user_source |
|
|
|
|
|
* 在获取图文阅读分时数据时才有该字段,代表用户从哪里进入来阅读该图文。0:会话;1.好友;2.朋友圈;3.腾讯微博;4.历史消息页;5.其他 |
|
|
|
|
|
*/ |
|
|
|
|
|
@SerializedName("user_source") |
|
|
|
|
|
private Integer userSource; |
|
|
|
|
|
} |