8000 改修获取企业已配置的「联系我」方式详情对象数据映射BUG,添加联系二维码的URL by huangxm129 · Pull Request #1713 · binarywang/WxJava · GitHub
[go: up one dir, main page]

Skip to content

改修获取企业已配置的「联系我」方式详情对象数据映射BUG,添加联系二维码的URL #1713

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 18 commits into from
Aug 16, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
外部联系人客户详情新增增加字段
增加字段:remark_corp_name,addWay,oper_userid

Signed-off-by: huangxiaoming <huangxm129@163.com>
  • Loading branch information
huangxm129 committed Jul 29, 2020
commit 2b27c031ec057e19a6b1db1fa00f6d7c129e9d04
2 changes: 1 addition & 1 deletion pom.xml
8000
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@
</developer>
<developer>
<name>huangxiaoming</name>
<email>huangxiaoming@163.com</email>
<email>huangxm129@163.com</email>
<url>https://github.com/huangxm129</url>
</developer>
</developers>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,12 @@ public static class FollowedUser {
@SerializedName("remark_mobiles")
private String[] remarkMobiles;
private Tag[] tags;
@SerializedName("remark_corp_name")
private String remarkCorpName;
@SerializedName("addWay")
private String addWay;
@SerializedName("oper_userid")
private String operUserId;

}

Expand Down
0