xiangpei
2024-04-15 75cf6d5a2484cc13ad78898e26e452ffa664f2cb
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
package com.ycl.platform.domain.entity;
 
 
import annotation.Excel;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.ycl.system.entity.BaseEntity;
import enumeration.general.BusinessTypeEnum;
import lombok.Data;
 
/**
 * 运维阈值对象 t_yw_threshold
 *
 * @author gonghl
 * @date 2024-03-25
 */
@Data
@TableName("t_yw_threshold")
public class YwThreshold extends BaseEntity {
 
    private static final long serialVersionUID = 1L;
 
    /**
     * 主键
     */
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
 
    /**
     * 设备类型:1人脸 2车辆 3视频
     */
    @Excel(name = "设备类型")
    @TableField("monitor_type")
    private BusinessTypeEnum monitorType;
 
    /**
     * 超时天数
     */
    @Excel(name = "超时天数")
    @TableField("timeout")
    private Integer timeout;
 
    /**
     * 指标json
     */
    @Excel(name = "指标json")
    @TableField("indicator")
    private String indicator;
 
    /**
     * 逻辑删除:0未删除 1删除
     */
    @TableField("deleted")
    private String deleted;
 
}