提交 | 用户 | age
|
a51ba7
|
1 |
package com.platform.entity; |
C |
2 |
|
|
3 |
public class ThirtApplication { |
|
4 |
|
|
5 |
/**应用appid*/ |
|
6 |
private String appId; |
1543be
|
7 |
/**来源代码*/ |
A |
8 |
private String sourceCode; |
a51ba7
|
9 |
/**应用名称*/ |
C |
10 |
private String name; |
|
11 |
/***/ |
|
12 |
private String privateKey; |
|
13 |
|
|
14 |
public String getAppId() { |
|
15 |
return appId; |
|
16 |
} |
|
17 |
|
|
18 |
public void setAppId(String appId) { |
|
19 |
this.appId = appId; |
|
20 |
} |
|
21 |
|
1543be
|
22 |
public String getSourceCode() { |
A |
23 |
return sourceCode; |
|
24 |
} |
|
25 |
|
|
26 |
public void setSourceCode(String sourceCode) { |
|
27 |
this.sourceCode = sourceCode; |
|
28 |
} |
|
29 |
|
a51ba7
|
30 |
public String getName() { |
C |
31 |
return name; |
|
32 |
} |
|
33 |
|
|
34 |
public void setName(String name) { |
|
35 |
this.name = name; |
|
36 |
} |
|
37 |
|
|
38 |
public String getPrivateKey() { |
|
39 |
return privateKey; |
|
40 |
} |
|
41 |
|
|
42 |
public void setPrivateKey(String privateKey) { |
|
43 |
this.privateKey = privateKey; |
|
44 |
} |
|
45 |
|
|
46 |
} |