chengf
2025-10-28 2807cca4b6f2e8af204d798679dcee78e695ee28
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
package com.ruoyi.business.aidetection.domain;
 
import java.util.Date;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.ruoyi.common.annotation.Excel;
import com.ruoyi.common.core.domain.BaseEntity;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.ToString;
import lombok.experimental.Accessors;
 
/**
 * alarm对象 av_alarm
 *
 * @author yuankun
 * @date 2024-04-06
 */
@Data
@Accessors(chain = true)
@ToString(callSuper = true)
@EqualsAndHashCode(callSuper = true)
public class AvAlarm extends BaseEntity {
 
    /**
     * $column.columnComment
     */
    private Long id;
 
    /**
     * $column.columnComment
     */
    @Excel(name = "排序", type = Excel.Type.EXPORT)
    private Long sort;
 
    /**
     * $column.columnComment
     */
 
    private String controlCode;
 
    /**
     * $column.columnComment
     */
    @Excel(name = "描述",  type = Excel.Type.EXPORT)
    @TableField("`desc`")
    private String desc;
 
    /**
     * $column.columnComment
     */
    @Excel(name = "视频路径",  type = Excel.Type.EXPORT)
    private String videoPath;
 
    /**
     * $column.columnComment
     */
    @Excel(name = "图片路径",  type = Excel.Type.EXPORT)
    private String imagePath;
 
    /**
     * $column.columnComment
     */
    @Excel(name = "状态", readConverterExp = "1=未处理,2=已处理,3=已忽略", type = Excel.Type.EXPORT)
    private Long state;
 
    /**
     * $column.columnComment
     */
    @Excel(name = "预警等级", readConverterExp = "1=一级预警,2=二级预警,3=三级预警")
    private Long grade;
 
    /**
     * $column.columnComment
     */
    @Excel(name = "备注", type = Excel.Type.EXPORT)
    private String remark;
 
    /**
     * $column.columnComment
     */
    private Date operTime;
 
    /**
     * $column.columnComment
     */
    @Excel(name = "预警类别")
    private String category;
 
}