ny
昨天 b6f169fe43a2b13f351aefc152374fc7f0bc8cb7
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
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;
}