提交 | 用户 | age
|
a51ba7
|
1 |
package com.platform.entity; |
C |
2 |
|
|
3 |
public class ThirtApplication { |
|
4 |
|
|
5 |
/**应用appid*/ |
|
6 |
private String appId; |
|
7 |
/**应用名称*/ |
|
8 |
private String name; |
049e23
|
9 |
/**平台秘钥*/ |
a51ba7
|
10 |
private String privateKey; |
049e23
|
11 |
/**商户公钥*/ |
C |
12 |
private String merchantRsaPublicKey; |
a51ba7
|
13 |
|
C |
14 |
public String getAppId() { |
|
15 |
return appId; |
|
16 |
} |
|
17 |
|
|
18 |
public void setAppId(String appId) { |
|
19 |
this.appId = appId; |
|
20 |
} |
|
21 |
|
|
22 |
public String getName() { |
|
23 |
return name; |
|
24 |
} |
|
25 |
|
|
26 |
public void setName(String name) { |
|
27 |
this.name = name; |
|
28 |
} |
|
29 |
|
|
30 |
public String getPrivateKey() { |
|
31 |
return privateKey; |
|
32 |
} |
|
33 |
|
|
34 |
public void setPrivateKey(String privateKey) { |
|
35 |
this.privateKey = privateKey; |
|
36 |
} |
|
37 |
|
049e23
|
38 |
public String getMerchantRsaPublicKey() { |
C |
39 |
return merchantRsaPublicKey; |
|
40 |
} |
|
41 |
|
|
42 |
public void setMerchantRsaPublicKey(String merchantRsaPublicKey) { |
|
43 |
this.merchantRsaPublicKey = merchantRsaPublicKey; |
|
44 |
} |
a51ba7
|
45 |
} |