package com.yeshi.fanli.dto.wx;
|
|
public class WXAccountInfoDTO {
|
// 公众号
|
private String gzAppId;
|
private String gzAppSecret;
|
// APP
|
private String appId;
|
private String appSecret;
|
|
public WXAccountInfoDTO(String gzAppId, String gzAppSecret, String appId, String appSecret) {
|
this.gzAppId = gzAppId;
|
this.gzAppSecret = gzAppSecret;
|
this.appId = appId;
|
this.appSecret = appSecret;
|
}
|
|
public WXAccountInfoDTO() {
|
}
|
|
public String getGzAppId() {
|
return gzAppId;
|
}
|
|
public void setGzAppId(String gzAppId) {
|
this.gzAppId = gzAppId;
|
}
|
|
public String getGzAppSecret() {
|
return gzAppSecret;
|
}
|
|
public void setGzAppSecret(String gzAppSecret) {
|
this.gzAppSecret = gzAppSecret;
|
}
|
|
public String getAppId() {
|
return appId;
|
}
|
|
public void setAppId(String appId) {
|
this.appId = appId;
|
}
|
|
public String getAppSecret() {
|
return appSecret;
|
}
|
|
public void setAppSecret(String appSecret) {
|
this.appSecret = appSecret;
|
}
|
|
}
|