package com.hxzk.gps.entity.System;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.AllArgsConstructor;
|
import lombok.Data;
|
import lombok.NoArgsConstructor;
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import java.io.Serializable;
|
|
/**
|
* <p>
|
*
|
* </p>
|
*
|
* @author YuZhiTong
|
* @since 2025-05-12
|
*/
|
@Data
|
@TableName("tb_system_operation_log")
|
@AllArgsConstructor
|
@NoArgsConstructor
|
public class TbSystemOperationLog implements Serializable {
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
@TableId(value = "id", type = IdType.AUTO)
|
private Integer id;
|
|
/**
|
* 操作人
|
*/
|
private String name;
|
|
/**
|
* 操作内容
|
*/
|
private String content;
|
|
/**
|
* 操作时间
|
*/
|
private String time;
|
|
/**
|
* 类型
|
*/
|
private String type;
|
|
/**
|
* ip
|
*/
|
private String ip;
|
|
/**
|
* 所属公司
|
*/
|
private String company;
|
|
/**
|
* 标识
|
*/
|
private String sign;
|
/*
|
* 状态
|
* */
|
private String status;
|
|
public TbSystemOperationLog(String name, String content, String time, String type, String ip, String company,String sign,String status) {
|
this.name = name;
|
this.content = content;
|
this.time = time;
|
this.type = type;
|
this.ip = ip;
|
this.company = company;
|
this.sign = sign;
|
this.status = status;
|
}
|
}
|