package com.platform.entity;
|
|
public class ThirtApplication {
|
|
/**应用appid*/
|
private String appId;
|
/**来源应用编码*/
|
private String appIdCode;
|
/**应用名称*/
|
private String name;
|
/**平台秘钥*/
|
private String privateKey;
|
/**商户公钥*/
|
private String merchantRsaPublicKey;
|
|
public String getAppId() {
|
return appId;
|
}
|
|
public void setAppId(String appId) {
|
this.appId = appId;
|
}
|
|
public String getAppIdCode() {
|
return appIdCode;
|
}
|
|
public void setAppIdCode(String appIdCode) {
|
this.appIdCode = appIdCode;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getPrivateKey() {
|
return privateKey;
|
}
|
|
public void setPrivateKey(String privateKey) {
|
this.privateKey = privateKey;
|
}
|
|
public String getMerchantRsaPublicKey() {
|
return merchantRsaPublicKey;
|
}
|
|
public void setMerchantRsaPublicKey(String merchantRsaPublicKey) {
|
this.merchantRsaPublicKey = merchantRsaPublicKey;
|
}
|
}
|