chenjiahe
2021-11-30 a51ba771e45114bbbc1654904f42df7995d5103a
提交 | 用户 | 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;
9     /***/
10     private String privateKey;
11
12     public String getAppId() {
13         return appId;
14     }
15
16     public void setAppId(String appId) {
17         this.appId = appId;
18     }
19
20     public String getName() {
21         return name;
22     }
23
24     public void setName(String name) {
25         this.name = name;
26     }
27
28     public String getPrivateKey() {
29         return privateKey;
30     }
31
32     public void setPrivateKey(String privateKey) {
33         this.privateKey = privateKey;
34     }
35
36 }