jinlin
2023-11-24 c041523ff100a6a43ebc4411125a3e566e19f193
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
/**
 * Copyright (c) 2018 人人开源 All rights reserved.
 *
 * https://www.renren.io
 *
 * 版权所有,侵权必究!
 */
 
package com.zt.modules.log.excel;
 
import com.alibaba.excel.annotation.ExcelProperty;
import lombok.Data;
 
import java.util.Date;
 
/**
 * 登录日志
 *
 * @author Mark sunlightcs@gmail.com
 * @since 1.0.0
 */
@Data
public class SysLogLoginExcel {
    @ExcelProperty("用户操作")
    private String operation;
    @ExcelProperty("状态")
    private Integer status;
    @ExcelProperty("User-Agent")
    private String userAgent;
    @ExcelProperty("操作IP")
    private String ip;
    @ExcelProperty("用户名")
    private String creatorName;
    @ExcelProperty("创建时间")
    private Date createDate;
 
}