付延余
2022-12-16 f0f8ee8c4a945adbc742d9bab69382b28ad311fb
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
package com.wgcloud.entity;
 
import java.util.Date;
 
/**
 * @version v3.3
 * @ClassName:AccountInfo.java
 * @author: http://www.wgstart.com
 * @date: 2021年1月16日
 * @Description: 用户信息管理
 * @Copyright: 2019-2021 wgcloud. All rights reserved.
 */
public class AccountInfo extends BaseEntity {
 
    /**
     *
     */
    private static final long serialVersionUID = 1L;
 
    /**
     * 登录帐号,不要重复,不要和管理员、只读账号重复
     */
    private String account;
 
 
    /**
     * 用户角色,admin管理员,user普通用户,guest只读用户
     * ACCOUNT_INFO表中用户的角色全为user
     */
    private String role;
 
    /**
     * 用户邮箱
     */
    private String email;
 
    /**
     * 密码
     */
    private String passwd;
 
    /**
     * 用户标识,用来在发送告警脚本时候,发给指定用户(脚本调用第二个参数即是用户标识值)
     */
    private String accountKey;
 
    /**
     * 备注
     */
    private String remark;
 
 
    /**
     * 创建时间
     */
    private Date createTime;
 
 
    public String getAccount() {
        return account;
    }
 
    public void setAccount(String account) {
        this.account = account;
    }
 
    public String getEmail() {
        return email;
    }
 
    public void setEmail(String email) {
        this.email = email;
    }
 
    public String getPasswd() {
        return passwd;
    }
 
    public void setPasswd(String passwd) {
        this.passwd = passwd;
    }
 
 
    public String getRole() {
        return role;
    }
 
    public void setRole(String role) {
        this.role = role;
    }
 
    public String getAccountKey() {
        return accountKey;
    }
 
    public void setAccountKey(String accountKey) {
        this.accountKey = accountKey;
    }
 
    public String getRemark() {
        return remark;
    }
 
    public void setRemark(String remark) {
        this.remark = remark;
    }
 
    public Date getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
}