This commit is contained in:
jinyu 2016-08-10 11:08:24 +08:00
parent 8e0bab27d5
commit 4420adca99
3 changed files with 21 additions and 9 deletions

View File

@ -755,4 +755,6 @@
+ weixin4j-mp:新增创建卡券二维码接口
+ version upgrade to 1.7.1
+ version upgrade to 1.7.1
+ LOGGER级别优化

View File

@ -18,8 +18,7 @@ import com.foxinmy.weixin4j.util.RandomUtil;
* @className JSSDKContactConfigurator
* @author jinyu(foxinmy@gmail.com)
* @date 2015年12月25日
* @since JDK 1.7
* @see
* @since JDK 1.6
*/
public class JSSDKContactConfigurator {
private final TokenManager ticketTokenManager;

View File

@ -41,8 +41,8 @@ public class AgentSetter implements Serializable {
* 企业应用详情
*/
private String description;
/**chatExtensionUrl
* 企业应用可信域名
/**
* chatExtensionUrl 企业应用可信域名
*/
@JSONField(name = "redirect_domain")
private String redirectDomain;
@ -95,6 +95,14 @@ public class AgentSetter implements Serializable {
return redirectDomain;
}
public boolean isReportUser() {
return isReportUser;
}
public boolean isReportEnter() {
return isReportEnter;
}
public String getHomeUrl() {
return homeUrl;
}
@ -151,9 +159,12 @@ public class AgentSetter implements Serializable {
@Override
public String toString() {
return "agentId=" + agentId + ", reportLocationType=" + reportLocationType + ", logoMediaId=" + logoMediaId
+ ", name=" + name + ", description=" + description + ", redirectDomain=" + redirectDomain
+ ", isReportUser=" + isReportUser + ", isReportEnter=" + isReportEnter + ", homeUrl=" + homeUrl
+ ", chatExtensionUrl=" + chatExtensionUrl;
return "agentId=" + agentId + ", reportLocationType="
+ reportLocationType + ", logoMediaId=" + logoMediaId
+ ", name=" + name + ", description=" + description
+ ", redirectDomain=" + redirectDomain + ", isReportUser="
+ isReportUser + ", isReportEnter=" + isReportEnter
+ ", homeUrl=" + homeUrl + ", chatExtensionUrl="
+ chatExtensionUrl;
}
}