mitao
2025-02-21 31573d6180d15ef65ed0df9c2732495f40b12663
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
package com.panzhihua.auth.model.dos;
 
import java.util.Date;
 
import com.fasterxml.jackson.annotation.JsonFormat;
 
import lombok.Data;
 
/**
 * 系统访问记录表 sys_logininfor
 * 
 * @author ruoyi
 */
@Data
public class SysLogininforDO {
    private static final long serialVersionUID = 1L;
 
    /** ID */
    private Long infoId;
 
    /** 用户账号 */
    private String userName;
 
    /** 登录状态 0成功 1失败 */
    private String status;
 
    /** 登录IP地址 */
    private String ipaddr;
 
    /** 登录地点 */
    private String loginLocation;
 
    /** 浏览器类型 */
    private String browser;
 
    /** 操作系统 */
    private String os;
 
    /** 提示消息 */
    private String msg;
 
    /** 访问时间 */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date loginTime;
 
}