363 lines
7.0 KiB
Java
363 lines
7.0 KiB
Java
|
|
package aiyh.utils.entity;
|
|
|
|
|
|
public class FnainvoiceinterfaceDTO {
|
|
|
|
private int id;
|
|
private int type;
|
|
private String interfaceurl;
|
|
private int status;
|
|
private int interfaceType;
|
|
private String userName;
|
|
private String password;
|
|
private String lastmodify;
|
|
private String weightPercent;
|
|
private String tokenurl;
|
|
private String openIDurl;
|
|
private String client_id;
|
|
private String client_secret;
|
|
private String sqm;
|
|
private String Client;
|
|
private String GTAXID;
|
|
private String imageCatalog;
|
|
private int noNeedCheck;
|
|
private String noNeedCheckAmount;
|
|
private String account;
|
|
private String corpName;
|
|
private String cid;
|
|
private String synInvoiceUrl;
|
|
private String synBillingInfoUrl;
|
|
private String synDocUrl;
|
|
private String subIds;
|
|
private int subIdStatus;
|
|
private String jsUrl;
|
|
private String createAppUrl;
|
|
private String appName;
|
|
private String checkUrl;
|
|
private String javaUrl;
|
|
private String oaUrl;
|
|
private String webUrl;
|
|
private String aesKey;
|
|
|
|
public void setId(int id){
|
|
this.id = id;
|
|
}
|
|
|
|
public void setType(int type){
|
|
this.type = type;
|
|
}
|
|
|
|
public void setInterfaceurl(String interfaceurl){
|
|
this.interfaceurl = interfaceurl;
|
|
}
|
|
|
|
public void setStatus(int status){
|
|
this.status = status;
|
|
}
|
|
|
|
public void setInterfaceType(int interfaceType){
|
|
this.interfaceType = interfaceType;
|
|
}
|
|
|
|
public void setUserName(String userName){
|
|
this.userName = userName;
|
|
}
|
|
|
|
public void setPassword(String password){
|
|
this.password = password;
|
|
}
|
|
|
|
public void setLastmodify(String lastmodify){
|
|
this.lastmodify = lastmodify;
|
|
}
|
|
|
|
public void setWeightPercent(String weightPercent){
|
|
this.weightPercent = weightPercent;
|
|
}
|
|
|
|
public void setTokenurl(String tokenurl){
|
|
this.tokenurl = tokenurl;
|
|
}
|
|
|
|
public void setOpenIDurl(String openIDurl){
|
|
this.openIDurl = openIDurl;
|
|
}
|
|
|
|
public void setClientId(String client_id){
|
|
this.client_id = client_id;
|
|
}
|
|
|
|
public void setClientSecret(String client_secret){
|
|
this.client_secret = client_secret;
|
|
}
|
|
|
|
public void setSqm(String sqm){
|
|
this.sqm = sqm;
|
|
}
|
|
|
|
public void setClient(String Client){
|
|
this.Client = Client;
|
|
}
|
|
|
|
public void setGTAXID(String GTAXID){
|
|
this.GTAXID = GTAXID;
|
|
}
|
|
|
|
public void setImageCatalog(String imageCatalog){
|
|
this.imageCatalog = imageCatalog;
|
|
}
|
|
|
|
public void setNoNeedCheck(int noNeedCheck){
|
|
this.noNeedCheck = noNeedCheck;
|
|
}
|
|
|
|
public void setNoNeedCheckAmount(String noNeedCheckAmount){
|
|
this.noNeedCheckAmount = noNeedCheckAmount;
|
|
}
|
|
|
|
public void setAccount(String account){
|
|
this.account = account;
|
|
}
|
|
|
|
public void setCorpName(String corpName){
|
|
this.corpName = corpName;
|
|
}
|
|
|
|
public void setCid(String cid){
|
|
this.cid = cid;
|
|
}
|
|
|
|
public void setSynInvoiceUrl(String synInvoiceUrl){
|
|
this.synInvoiceUrl = synInvoiceUrl;
|
|
}
|
|
|
|
public void setSynBillingInfoUrl(String synBillingInfoUrl){
|
|
this.synBillingInfoUrl = synBillingInfoUrl;
|
|
}
|
|
|
|
public void setSynDocUrl(String synDocUrl){
|
|
this.synDocUrl = synDocUrl;
|
|
}
|
|
|
|
public void setSubIds(String subIds){
|
|
this.subIds = subIds;
|
|
}
|
|
|
|
public void setSubIdStatus(int subIdStatus){
|
|
this.subIdStatus = subIdStatus;
|
|
}
|
|
|
|
public void setJsUrl(String jsUrl){
|
|
this.jsUrl = jsUrl;
|
|
}
|
|
|
|
public void setCreateAppUrl(String createAppUrl){
|
|
this.createAppUrl = createAppUrl;
|
|
}
|
|
|
|
public void setAppName(String appName){
|
|
this.appName = appName;
|
|
}
|
|
|
|
public void setCheckUrl(String checkUrl){
|
|
this.checkUrl = checkUrl;
|
|
}
|
|
|
|
public void setJavaUrl(String javaUrl){
|
|
this.javaUrl = javaUrl;
|
|
}
|
|
|
|
public void setOaUrl(String oaUrl){
|
|
this.oaUrl = oaUrl;
|
|
}
|
|
|
|
public void setWebUrl(String webUrl){
|
|
this.webUrl = webUrl;
|
|
}
|
|
|
|
public void setAesKey(String aesKey){
|
|
this.aesKey = aesKey;
|
|
}
|
|
|
|
public int getId(){
|
|
return this.id;
|
|
}
|
|
|
|
public int getType(){
|
|
return this.type;
|
|
}
|
|
|
|
public String getInterfaceurl(){
|
|
return this.interfaceurl;
|
|
}
|
|
|
|
public int getStatus(){
|
|
return this.status;
|
|
}
|
|
|
|
public int getInterfaceType(){
|
|
return this.interfaceType;
|
|
}
|
|
|
|
public String getUserName(){
|
|
return this.userName;
|
|
}
|
|
|
|
public String getPassword(){
|
|
return this.password;
|
|
}
|
|
|
|
public String getLastmodify(){
|
|
return this.lastmodify;
|
|
}
|
|
|
|
public String getWeightPercent(){
|
|
return this.weightPercent;
|
|
}
|
|
|
|
public String getTokenurl(){
|
|
return this.tokenurl;
|
|
}
|
|
|
|
public String getOpenIDurl(){
|
|
return this.openIDurl;
|
|
}
|
|
|
|
public String getClientId(){
|
|
return this.client_id;
|
|
}
|
|
|
|
public String getClientSecret(){
|
|
return this.client_secret;
|
|
}
|
|
|
|
public String getSqm(){
|
|
return this.sqm;
|
|
}
|
|
|
|
public String getClient(){
|
|
return this.Client;
|
|
}
|
|
|
|
public String getGTAXID(){
|
|
return this.GTAXID;
|
|
}
|
|
|
|
public String getImageCatalog(){
|
|
return this.imageCatalog;
|
|
}
|
|
|
|
public int getNoNeedCheck(){
|
|
return this.noNeedCheck;
|
|
}
|
|
|
|
public String getNoNeedCheckAmount(){
|
|
return this.noNeedCheckAmount;
|
|
}
|
|
|
|
public String getAccount(){
|
|
return this.account;
|
|
}
|
|
|
|
public String getCorpName(){
|
|
return this.corpName;
|
|
}
|
|
|
|
public String getCid(){
|
|
return this.cid;
|
|
}
|
|
|
|
public String getSynInvoiceUrl(){
|
|
return this.synInvoiceUrl;
|
|
}
|
|
|
|
public String getSynBillingInfoUrl(){
|
|
return this.synBillingInfoUrl;
|
|
}
|
|
|
|
public String getSynDocUrl(){
|
|
return this.synDocUrl;
|
|
}
|
|
|
|
public String getSubIds(){
|
|
return this.subIds;
|
|
}
|
|
|
|
public int getSubIdStatus(){
|
|
return this.subIdStatus;
|
|
}
|
|
|
|
public String getJsUrl(){
|
|
return this.jsUrl;
|
|
}
|
|
|
|
public String getCreateAppUrl(){
|
|
return this.createAppUrl;
|
|
}
|
|
|
|
public String getAppName(){
|
|
return this.appName;
|
|
}
|
|
|
|
public String getCheckUrl(){
|
|
return this.checkUrl;
|
|
}
|
|
|
|
public String getJavaUrl(){
|
|
return this.javaUrl;
|
|
}
|
|
|
|
public String getOaUrl(){
|
|
return this.oaUrl;
|
|
}
|
|
|
|
public String getWebUrl(){
|
|
return this.webUrl;
|
|
}
|
|
|
|
public String getAesKey(){
|
|
return this.aesKey;
|
|
}
|
|
|
|
@Override
|
|
public String toString() {
|
|
return "FnainvoiceinterfaceDTO{" +
|
|
"id='" + id + '\'' +
|
|
", type='" + type + '\'' +
|
|
", interfaceurl='" + interfaceurl + '\'' +
|
|
", status='" + status + '\'' +
|
|
", interfaceType='" + interfaceType + '\'' +
|
|
", userName='" + userName + '\'' +
|
|
", password='" + password + '\'' +
|
|
", lastmodify='" + lastmodify + '\'' +
|
|
", weightPercent='" + weightPercent + '\'' +
|
|
", tokenurl='" + tokenurl + '\'' +
|
|
", openIDurl='" + openIDurl + '\'' +
|
|
", client_id='" + client_id + '\'' +
|
|
", client_secret='" + client_secret + '\'' +
|
|
", sqm='" + sqm + '\'' +
|
|
", Client='" + Client + '\'' +
|
|
", GTAXID='" + GTAXID + '\'' +
|
|
", imageCatalog='" + imageCatalog + '\'' +
|
|
", noNeedCheck='" + noNeedCheck + '\'' +
|
|
", noNeedCheckAmount='" + noNeedCheckAmount + '\'' +
|
|
", account='" + account + '\'' +
|
|
", corpName='" + corpName + '\'' +
|
|
", cid='" + cid + '\'' +
|
|
", synInvoiceUrl='" + synInvoiceUrl + '\'' +
|
|
", synBillingInfoUrl='" + synBillingInfoUrl + '\'' +
|
|
", synDocUrl='" + synDocUrl + '\'' +
|
|
", subIds='" + subIds + '\'' +
|
|
", subIdStatus='" + subIdStatus + '\'' +
|
|
", jsUrl='" + jsUrl + '\'' +
|
|
", createAppUrl='" + createAppUrl + '\'' +
|
|
", appName='" + appName + '\'' +
|
|
", checkUrl='" + checkUrl + '\'' +
|
|
", javaUrl='" + javaUrl + '\'' +
|
|
", oaUrl='" + oaUrl + '\'' +
|
|
", webUrl='" + webUrl + '\'' +
|
|
", aesKey='" + aesKey + '\'' +
|
|
'}';
|
|
}
|
|
} |