龚焕茏
2024-03-25 c4dfb5b30a5b2917c259f40c1c80abb28b504990
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
package com.ycl.platform.domain.entity;
 
 
import annotation.Excel;
import com.ycl.system.entity.BaseEntity;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
 
/**
 * 运维阈值对象 t_yw_threshold
 *
 * @author gonghl
 * @date 2024-03-25
 */
public class YwThreshold extends BaseEntity {
    private static final long serialVersionUID = 1L;
 
    /**
     * 主键
     */
    private Integer id;
 
    /**
     * 设备类型:1人脸 2车辆 3视频
     */
    @Excel(name = "设备类型:1人脸 2车辆 3视频")
    private String monitorType;
 
    /**
     * 超时天数
     */
    @Excel(name = "超时天数")
    private Integer timeout;
 
    /**
     * 指标json
     */
    @Excel(name = "指标json")
    private String indicator;
 
    /**
     * 逻辑删除:0未删除 1删除
     */
    private String deleted;
 
    public void setId(Integer id) {
        this.id = id;
    }
 
    public Integer getId() {
        return id;
    }
 
    public void setMonitorType(String monitorType) {
        this.monitorType = monitorType;
    }
 
    public String getMonitorType() {
        return monitorType;
    }
 
    public void setTimeout(Integer timeout) {
        this.timeout = timeout;
    }
 
    public Integer getTimeout() {
        return timeout;
    }
 
    public void setIndicator(String indicator) {
        this.indicator = indicator;
    }
 
    public String getIndicator() {
        return indicator;
    }
 
    public void setDeleted(String deleted) {
        this.deleted = deleted;
    }
 
    public String getDeleted() {
        return deleted;
    }
 
    @Override
    public String toString() {
        return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
                .append("id", getId())
                .append("monitorType", getMonitorType())
                .append("timeout", getTimeout())
                .append("indicator", getIndicator())
                .append("createTime", getCreateTime())
                .append("updateTime", getUpdateTime())
                .append("deleted", getDeleted())
                .toString();
    }
}