package com.xmzs.system.domain;
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
|
import java.io.Serial;
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* 系统访问记录表 sys_logininfor
|
*
|
* @author Lion Li
|
*/
|
|
@Data
|
@TableName("sys_logininfor")
|
public class SysLogininfor implements Serializable {
|
|
@Serial
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* ID
|
*/
|
@TableId(value = "info_id")
|
private Long infoId;
|
|
/**
|
* 租户编号
|
*/
|
private String tenantId;
|
|
/**
|
* 用户账号
|
*/
|
private String userName;
|
|
/**
|
* 登录状态 0成功 1失败
|
*/
|
private String status;
|
|
/**
|
* 登录IP地址
|
*/
|
private String ipaddr;
|
|
/**
|
* 登录地点
|
*/
|
private String loginLocation;
|
|
/**
|
* 浏览器类型
|
*/
|
private String browser;
|
|
/**
|
* 操作系统
|
*/
|
private String os;
|
|
/**
|
* 提示消息
|
*/
|
private String msg;
|
|
/**
|
* 访问时间
|
*/
|
private Date loginTime;
|
|
}
|