懒羊羊
2024-01-31 e57a8990ae56f657a59c435a0613c5f7a8728003
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
package com.jcdm.system.domain;
 
import java.util.Date;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.jcdm.common.annotation.Excel;
import com.jcdm.common.annotation.Excel.ColumnType;
import com.jcdm.common.core.domain.BaseEntity;
 
/**
 * 系统访问记录表 sys_logininfor
 * 
 * @author jc
 */
public class SysLogininfor extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /** ID */
    @Excel(name = "序号", cellType = ColumnType.NUMERIC)
    private Long infoId;
 
    /** 用户账号 */
    @Excel(name = "用户账号")
    private String userName;
 
    /** 登录状态 0成功 1失败 */
    @Excel(name = "登录状态", readConverterExp = "0=成功,1=失败")
    private String status;
 
    /** 登录IP地址 */
    @Excel(name = "登录地址")
    private String ipaddr;
 
    /** 登录地点 */
    @Excel(name = "登录地点")
    private String loginLocation;
 
    /** 浏览器类型 */
    @Excel(name = "浏览器")
    private String browser;
 
    /** 操作系统 */
    @Excel(name = "操作系统")
    private String os;
 
    /** 提示消息 */
    @Excel(name = "提示消息")
    private String msg;
 
    /** 访问时间 */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @Excel(name = "访问时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
    private Date loginTime;
 
    public Long getInfoId()
    {
        return infoId;
    }
 
    public void setInfoId(Long infoId)
    {
        this.infoId = infoId;
    }
 
    public String getUserName()
    {
        return userName;
    }
 
    public void setUserName(String userName)
    {
        this.userName = userName;
    }
 
    public String getStatus()
    {
        return status;
    }
 
    public void setStatus(String status)
    {
        this.status = status;
    }
 
    public String getIpaddr()
    {
        return ipaddr;
    }
 
    public void setIpaddr(String ipaddr)
    {
        this.ipaddr = ipaddr;
    }
 
    public String getLoginLocation()
    {
        return loginLocation;
    }
 
    public void setLoginLocation(String loginLocation)
    {
        this.loginLocation = loginLocation;
    }
 
    public String getBrowser()
    {
        return browser;
    }
 
    public void setBrowser(String browser)
    {
        this.browser = browser;
    }
 
    public String getOs()
    {
        return os;
    }
 
    public void setOs(String os)
    {
        this.os = os;
    }
 
    public String getMsg()
    {
        return msg;
    }
 
    public void setMsg(String msg)
    {
        this.msg = msg;
    }
 
    public Date getLoginTime()
    {
        return loginTime;
    }
 
    public void setLoginTime(Date loginTime)
    {
        this.loginTime = loginTime;
    }
}