8000 公众号接口优化,增加缺失字段和枚举类 by silloy · Pull Request #1475 · binarywang/WxJava · GitHub
[go: up one dir, main page]

Skip to content

公众号接口优化,增加缺失字段和枚举类 #1475

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Mar 28, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading < 8000 /span>
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
✨ 增加统计字段
  • Loading branch information
silloy committed Mar 27, 2020
commit b924b638d0a59a29a279a7884537517462045104
Original file line number Diff line number Diff line change
Expand Up @@ -198,4 +198,29 @@ public class WxDataCubeArticleTotalDetail implements Serializable {
@SerializedName("feed_share_from_other_cnt")
private Integer feedShareFromOtherCnt;


/**
* intpagefromkanyikanreaduser 看一看来源阅读人数
*/
@SerializedName("int_page_from_kanyikan_read_user")
private Integer intPageFromKanyikanReadUser;

/**
* intpagefromkanyikanreadcount 看一看来源阅读次数
*/
@SerializedName("int_page_from_kanyikan_read_count")
private Integer intPageFromKanyikanReadCount;

/**
* intpagefromsouyisoureaduser 搜一搜来源阅读人数
*/
@SerializedName("int_page_from_souyisou_read_user")
private Integer intPageFromSouyisouReadUser;

/**
* intpagefromsouyisoureadcount 搜一搜来源阅读次数
*/
@SerializedName("int_page_from_souyisou_read_count")
private Integer intPageFromSouyisouReadCount;

}
0