/** 
 | 
 * 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; 
 | 
  
 | 
} 
 |