-
-
Notifications
You must be signed in to change notification settings - Fork 8.7k
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
Develop外部联系人客户详情新增增加字段 #1690
Develop外部联系人客户详情新增增加字段 #1690
Conversation
增加字段:remark_corp_name,addWay,oper_userid Signed-off-by: huangxiaoming <[email protected]>
Signed-off-by: huangxiaoming <[email protected]>
@@ -30,7 +30,7 @@ | |||
@Test | |||
public void testGetExternalContact() throws WxErrorException { | |||
String externalUserId = this.configStorage.getExternalUserId(); | |||
WxCpUserExternalContactInfo result = this.wxCpService.getExternalContactService().getExternalContact(externalUserId); | |||
WxCpUserExternalContactInfo result = this.wxCpService.getExternalContactService().getContactDetail(externalUserId); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
这个为啥要改呢
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
看到getExternalContact方法已被废弃了,换了个新的方法测试了下
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
那你不应该改这个方法吧,不是已经有了testGetContactDetail方法吗?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
已改
@@ -30,7 +30,7 @@ | |||
@Test | |||
public void testGetExternalContact() throws WxErrorException { | |||
String externalUserId = this.configStorage.getExternalUserId(); | |||
WxCpUserExternalContactInfo result = this.wxCpService.getExternalContactService().getExternalContact(externalUserId); | |||
WxCpUserExternalContactInfo result = this.wxCpService.getExternalContactService().getContactDetail(externalUserId); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
那你不应该改这个方法吧,不是已经有了testGetContactDetail方法吗?
@@ -119,6 +119,12 @@ | |||
@SerializedName("remark_mobiles") | |||
private String[] remarkMobiles; | |||
private Tag[] tags; | |||
@SerializedName("remark_corp_name") | |||
private String remarkCorpName; | |||
@SerializedName("addWay") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
这个字段是正确的吗?怎么不是下划线分割风格的?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
已改
Signed-off-by: huangxiaoming <[email protected]>
Signed-off-by: huangxiaoming <[email protected]>
Signed-off-by: huangxiaoming <[email protected]>
增加字段:remark_corp_name,addWay,oper_userid