package com.yeshi.fanli.entity.xcx;
|
|
public class XCXSettingConfig {
|
private String appId;
|
private String ghId;
|
private boolean show;
|
private int version;
|
private String appSecret;
|
|
public String getAppSecret() {
|
return appSecret;
|
}
|
|
public void setAppSecret(String appSecret) {
|
this.appSecret = appSecret;
|
}
|
|
public String getGhId() {
|
return ghId;
|
}
|
|
public void setGhId(String ghId) {
|
this.ghId = ghId;
|
}
|
|
public String getAppId() {
|
return appId;
|
}
|
|
public void setAppId(String appId) {
|
this.appId = appId;
|
}
|
|
public boolean isShow() {
|
return show;
|
}
|
|
public void setShow(boolean show) {
|
this.show = show;
|
}
|
|
public int getVersion() {
|
return version;
|
}
|
|
public void setVersion(int version) {
|
this.version = version;
|
}
|
|
}
|