package jnpf.permission.model.user;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import lombok.Data;
|
|
@Data
|
public class UserLogVO {
|
@Schema(description = "登录类型")
|
private Integer loginType;
|
@Schema(description = "登录时间")
|
private Long creatorTime;
|
@Schema(description = "登录用户")
|
private String userName;
|
@Schema(description = "登录IP")
|
private String ipAddress;
|
@Schema(description = "IP所在城市")
|
private String ipAddressName;
|
@Schema(description = "浏览器")
|
private String browser;
|
@Schema(description = "平台设备")
|
private String platForm;
|
@Schema(description = "请求耗时")
|
private Integer requestDuration;
|
@Schema(description = "是否登录成功标志")
|
private Integer loginMark;
|
@Schema(description = "说明")
|
private String abstracts;
|
@Schema(description = "主键")
|
private String id;
|
}
|