/**
|
* 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 SysLogErrorExcel {
|
@ExcelProperty("请求URI")
|
private String requestUri;
|
@ExcelProperty("请求方式")
|
private String requestMethod;
|
@ExcelProperty("请求参数")
|
private String requestParams;
|
@ExcelProperty("User-Agent")
|
private String userAgent;
|
@ExcelProperty("操作IP")
|
private String ip;
|
@ExcelProperty("创建时间")
|
private Date createDate;
|
|
}
|