56 lines
1.0 KiB
Java
56 lines
1.0 KiB
Java
package com.cnbm.admin.entity;
|
||
|
||
import com.baomidou.mybatisplus.annotation.TableName;
|
||
import com.cnbm.common.entity.BaseEntity;
|
||
import lombok.Data;
|
||
import lombok.EqualsAndHashCode;
|
||
|
||
/**
|
||
* @Author weihongyang
|
||
* @Date 2022/6/10 9:49 AM
|
||
* @Version 1.0
|
||
*/
|
||
@Data
|
||
@EqualsAndHashCode(callSuper=false)
|
||
@TableName("sys_log_operation")
|
||
public class SysLogOperationEntity extends BaseEntity {
|
||
private static final long serialVersionUID = 1L;
|
||
|
||
/**
|
||
* 用户操作
|
||
*/
|
||
private String operation;
|
||
/**
|
||
* 请求URI
|
||
*/
|
||
private String requestUri;
|
||
/**
|
||
* 请求方式
|
||
*/
|
||
private String requestMethod;
|
||
/**
|
||
* 请求参数
|
||
*/
|
||
private String requestParams;
|
||
/**
|
||
* 请求时长(毫秒)
|
||
*/
|
||
private Integer requestTime;
|
||
/**
|
||
* 用户代理
|
||
*/
|
||
private String userAgent;
|
||
/**
|
||
* 操作IP
|
||
*/
|
||
private String ip;
|
||
/**
|
||
* 状态 0:失败 1:成功
|
||
*/
|
||
private Integer status;
|
||
/**
|
||
* 用户名
|
||
*/
|
||
private String creatorName;
|
||
}
|