zhitong.yu
7 天以前 7fc9c42987a13c1d8d2159591a5803e70518827f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
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;
    }
}