chenjiahe
2021-11-30 a51ba771e45114bbbc1654904f42df7995d5103a
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
package com.platform.entity;
 
public class ThirtApplication {
 
    /**应用appid*/
    private String appId;
    /**应用名称*/
    private String name;
    /***/
    private String privateKey;
 
    public String getAppId() {
        return appId;
    }
 
    public void setAppId(String appId) {
        this.appId = appId;
    }
 
    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;
    }
 
}