package com.kym.entity;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Getter;
import lombok.Setter;
import java.io.Serializable;
/**
*
* 系统操作日志表
*
*
* @author skyline
* @since 2023-07-10
*/
@Getter
@Setter
@TableName("t_system_log")
public class SystemLog extends BaseEntity implements Serializable {
private static final long serialVersionUID = 1L;
/**
* 公司ID
*/
private Long companyId;
/**
* 用户id
*/
private Long userId;
/**
* 操作人
*/
private String username;
/**
* ip
*/
private String ip;
/**
* 操作名称
*/
private String operation;
/**
* 方法
*/
private String method;
/**
* 请求参数
*/
private String requestParam;
/**
* 执行时长(毫秒)
*/
private Long executeTime;
}