ANDRU-PC\Andru
2022-04-19 812af358834cc94492f51a15bbe409a2ed63bd58
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
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;
    }
}