generated from root/miduo_server
119 lines
2.2 KiB
Java
119 lines
2.2 KiB
Java
package com.ljsd.pojo;
|
|
|
|
/**
|
|
* @author lvxinran
|
|
* @date 2021/5/26
|
|
* @discribe 存一些需要用来验证的参数信息
|
|
*/
|
|
public class VerifyParams {
|
|
private String channel;
|
|
|
|
private String token;
|
|
|
|
private String secretKey;
|
|
|
|
private String appId;
|
|
|
|
private String timeStamp;
|
|
|
|
private String paramSign;//参数中的sign
|
|
|
|
private String openId;
|
|
|
|
private String productCode;
|
|
|
|
private String extraData;
|
|
|
|
private String platformAppid;
|
|
|
|
private String platformId;
|
|
|
|
public String getChannel() {
|
|
return channel;
|
|
}
|
|
|
|
public void setChannel(String channel) {
|
|
this.channel = channel;
|
|
}
|
|
|
|
public String getToken() {
|
|
return token;
|
|
}
|
|
|
|
public void setToken(String token) {
|
|
this.token = token;
|
|
}
|
|
|
|
public String getSecretKey() {
|
|
return secretKey;
|
|
}
|
|
|
|
public void setSecretKey(String secretKey) {
|
|
this.secretKey = secretKey;
|
|
}
|
|
|
|
public String getAppId() {
|
|
return appId;
|
|
}
|
|
|
|
public void setAppId(String appId) {
|
|
this.appId = appId;
|
|
}
|
|
|
|
public String getTimeStamp() {
|
|
return timeStamp;
|
|
}
|
|
|
|
public void setTimeStamp(String timeStamp) {
|
|
this.timeStamp = timeStamp;
|
|
}
|
|
|
|
public String getParamSign() {
|
|
return paramSign;
|
|
}
|
|
|
|
public void setParamSign(String paramSign) {
|
|
this.paramSign = paramSign;
|
|
}
|
|
|
|
public String getOpenId() {
|
|
return openId;
|
|
}
|
|
|
|
public void setOpenId(String openId) {
|
|
this.openId = openId;
|
|
}
|
|
|
|
public String getProductCode() {
|
|
return productCode;
|
|
}
|
|
|
|
public void setProductCode(String productCode) {
|
|
this.productCode = productCode;
|
|
}
|
|
|
|
public String getExtraData() {
|
|
return extraData;
|
|
}
|
|
|
|
public void setExtraData(String extraData) {
|
|
this.extraData = extraData;
|
|
}
|
|
|
|
public String getPlatformAppid() {
|
|
return platformAppid;
|
|
}
|
|
|
|
public void setPlatformAppid(String platformAppid) {
|
|
this.platformAppid = platformAppid;
|
|
}
|
|
|
|
public String getPlatformId() {
|
|
return platformId;
|
|
}
|
|
|
|
public void setPlatformId(String platformId) {
|
|
this.platformId = platformId;
|
|
}
|
|
}
|