kongdeqiang
2023-07-05 4390e392275b4320e18e39a508149d24bce04f93
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
package com.boying.entity;
 
import java.util.Date;
 
/**
 * @version v3.3
 * @ClassName:LogInfo.java
 * @author: http://www.wgstart.com
 * @date: 2021年1月16日
 * @Description: 系统日志信息
 * @Copyright: 2019-2021 wgcloud. All rights reserved.
 */
public class LogInfo extends BaseEntity {
 
    /**
     *
     */
    private static final long serialVersionUID = 1L;
 
    /**
     * 标题
     */
    private String hostname;
 
    /**
     * 描述
     */
    private String infoContent;
 
    /**
     * 1业务告警,2系统操作
     */
    private String state;
 
 
    /**
     * 创建时间
     */
    private Date createTime;
 
 
    public String getHostname() {
        return hostname;
    }
 
 
    public void setHostname(String hostname) {
        this.hostname = hostname;
    }
 
 
    public String getInfoContent() {
        return infoContent;
    }
 
 
    public void setInfoContent(String infoContent) {
        this.infoContent = infoContent;
    }
 
 
    public String getState() {
        return state;
    }
 
 
    public void setState(String state) {
        this.state = state;
    }
 
 
    public Date getCreateTime() {
        return createTime;
    }
 
 
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
 
 
}