package com.ishop.model.response;
|
|
import java.io.Serializable;
|
import java.util.List;
|
|
public class WeChatJsSdkConfigResponse implements Serializable {
|
|
public String getUrl() {
|
return url;
|
}
|
|
public void setUrl(String url) {
|
this.url = url;
|
}
|
|
public String getNonceStr() {
|
return nonceStr;
|
}
|
|
public void setNonceStr(String nonceStr) {
|
this.nonceStr = nonceStr;
|
}
|
|
public Long getTimestamp() {
|
return timestamp;
|
}
|
|
public void setTimestamp(Long timestamp) {
|
this.timestamp = timestamp;
|
}
|
|
public String getSignature() {
|
return signature;
|
}
|
|
public void setSignature(String signature) {
|
this.signature = signature;
|
}
|
|
public List<String> getJsApiList() {
|
return jsApiList;
|
}
|
|
public void setJsApiList(List<String> jsApiList) {
|
this.jsApiList = jsApiList;
|
}
|
|
public Boolean getDebug() {
|
return debug;
|
}
|
|
public void setDebug(Boolean debug) {
|
this.debug = debug;
|
}
|
|
public String getAppId() {
|
return appId;
|
}
|
|
public void setAppId(String appId) {
|
this.appId = appId;
|
}
|
|
// @ApiModelProperty(value = "url")
|
private String url;
|
|
// @ApiModelProperty(value = "生成签名的随机串")
|
private String nonceStr;
|
|
// @ApiModelProperty(value = "生成签名的时间戳")
|
private Long timestamp;
|
|
// @ApiModelProperty(value = "签名")
|
private String signature;
|
|
// @ApiModelProperty(value = "需要使用的 JS 接口列表")
|
private List<String> jsApiList;
|
|
// @ApiModelProperty(value = "开启调试模式,调用的所有 api 的返回值会在客户端 alert 出来,若要查看传入的参数,可以在 pc 端打开,参数信息会通过 log 打出,仅在 pc 端时才会打印。")
|
private Boolean debug;
|
|
// @ApiModelProperty(value = "公众号的唯一标识")
|
private String appId;
|
|
@Override
|
public String toString() {
|
return "WeChatJsSdkConfigResponse{" +
|
"url='" + url + '\'' +
|
", nonceStr='" + nonceStr + '\'' +
|
", timestamp=" + timestamp +
|
", signature='" + signature + '\'' +
|
", jsApiList=" + jsApiList +
|
", debug=" + debug +
|
", appId='" + appId + '\'' +
|
'}';
|
}
|
}
|