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
package offline.model;
/**
* @Author shaowei.Liu
* @Date 2020/11/5 13:57
* @Description 主账号对应的appKey
*/
public class AccountVO {
private String email;
private String appKey;
public AccountVO() {
}
public AccountVO(String email, String appKey) {
this.email = email;
this.appKey = appKey;
}
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
public String getAppKey() {
return appKey;
}
public void setAppKey(String appKey) {
this.appKey = appKey;
}
@Override
public String toString() {
return email+"=>"+appKey;
}
}