This commit is contained in:
parent
8e0bab27d5
commit
4420adca99
@ -756,3 +756,5 @@
|
||||
+ weixin4j-mp:新增创建卡券二维码接口
|
||||
|
||||
+ version upgrade to 1.7.1
|
||||
|
||||
+ LOGGER级别优化
|
||||
@ -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;
|
||||
|
||||
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user