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:新增创建卡券二维码接口 + 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 * @className JSSDKContactConfigurator
* @author jinyu(foxinmy@gmail.com) * @author jinyu(foxinmy@gmail.com)
* @date 2015年12月25日 * @date 2015年12月25日
* @since JDK 1.7 * @since JDK 1.6
* @see
*/ */
public class JSSDKContactConfigurator { public class JSSDKContactConfigurator {
private final TokenManager ticketTokenManager; private final TokenManager ticketTokenManager;

View File

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