package com.dsh.app.util.pay.wechat;
|
|
/**
|
* 微信小程序登录参数
|
*/
|
public class WxShinParam {
|
|
private String WxAppid;
|
private String WxSecret;
|
private String WxJsCode;
|
public String getWxAppid() {
|
return WxAppid;
|
}
|
|
public void setWxAppid(String wxAppid) {
|
WxAppid = wxAppid;
|
}
|
|
public String getWxSecret() {
|
return WxSecret;
|
}
|
|
public void setWxSecret(String wxSecret) {
|
WxSecret = wxSecret;
|
}
|
|
public String getWxJsCode() {
|
return WxJsCode;
|
}
|
|
public void setWxJsCode(String wxJsCode) {
|
WxJsCode = wxJsCode;
|
}
|
|
|
public String getParam() {
|
String param= "?appid="+WxAppid+"&secret="+WxSecret+"&js_code="+WxJsCode+"&grant_type=authorization_code";
|
return param ;
|
}
|
}
|