com.zopen.wechat.mp.dto.jssdk.JsSdkConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zopen-ato-starter Show documentation
Show all versions of zopen-ato-starter Show documentation
Alibaba Tencent And Others For Spring Boot.
package com.zopen.wechat.mp.dto.jssdk;
/**
* 返回给前端的 JS-SDK 配置
*
* @author [email protected]
* @since 2020/1/15
*/
public class JsSdkConfig {
// 公众号的唯一标识
private String appId;
// 生成签名的时间戳
private Long timestamp;
// 生成签名的随机串
private String nonceStr;
// 签名
private String signature;
public String getAppId() {
return appId;
}
public void setAppId(String appId) {
this.appId = appId;
}
public Long getTimestamp() {
return timestamp;
}
public void setTimestamp(Long timestamp) {
this.timestamp = timestamp;
}
public String getNonceStr() {
return nonceStr;
}
public void setNonceStr(String nonceStr) {
this.nonceStr = nonceStr;
}
public String getSignature() {
return signature;
}
public void setSignature(String signature) {
this.signature = signature;
}
}