package com.platform.entity;
|
|
public class ThirtApplication {
|
|
/**应用appid*/
|
private String appId;
|
/**来源代码*/
|
private String sourceCode;
|
/**应用名称*/
|
private String name;
|
/***/
|
private String privateKey;
|
|
public String getAppId() {
|
return appId;
|
}
|
|
public void setAppId(String appId) {
|
this.appId = appId;
|
}
|
|
public String getSourceCode() {
|
return sourceCode;
|
}
|
|
public void setSourceCode(String sourceCode) {
|
this.sourceCode = sourceCode;
|
}
|
|
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;
|
}
|
|
}
|