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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
package com.ruoyi.business.aidetection.domain;
 
/**
 * @Author:yuankun
 * @Package:com.ruoyi.business.aidetection.domain
 * @Project:ruoyi-vue-service
 * @name:AvControl
 * @Date:2024/4/9 20:28
 * @Filename:AvControl
 */
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;
 
/**
 * control对象 av_control
 *
 * @author yuankun
 * @date 2024-04-09
 */
@Data
@Accessors(chain = true)
@ToString(callSuper = true)
@EqualsAndHashCode(callSuper = true)
public class AvControl extends BaseEntity {
 
    /**
     *
     */
    private Long id;
    /**
     * 排序
     */
    @Excel(name = "识别名称")
    private String name;
    /**
     * 排序
     */
    @Excel(name = "排序")
    private Long sort;
 
    /**
     * 编码
     */
    @Excel(name = "编码")
    private String code;
 
    /**
     * 流app
     */
    @Excel(name = "流app")
    private String streamApp;
 
    /**
     * 流name
     */
    @Excel(name = "流name")
    private String streamName;
 
    /**
     * 视频信息
     */
    @Excel(name = "视频信息")
    private String streamVideo;
 
    /**
     * 音频信息
     */
    @Excel(name = "音频信息")
    private String streamAudio;
 
    /**
     * 识别物体码
     */
    @Excel(name = "识别物体码")
    private String objectCode;
 
    /**
     * 算法码
     */
    @Excel(name = "算法码")
    private String algorithmCode;
 
    /**
     * 最小报警时间间隔
     */
    @Excel(name = "最小报警时间间隔")
    private Long minInterval;
 
    /**
     * 最小报警时间间隔
     */
    @Excel(name = "识别区域")
    private String recognitionRegion;
    /**
     * 置信度
     */
    @Excel(name = "置信度")
    private Double classThresh;
 
    /**
     * 阈值
     */
    @Excel(name = "阈值")
    private Double overlapThresh;
 
    /**
     * 拉流地址
     */
    @Excel(name = "推流地址")
    private Long pushStream;
    /**
     * 拉流app
     */
    @Excel(name = "推流app")
    private String pushStreamApp;
 
    /**
     * 拉流name
     */
    @Excel(name = "推流name")
    private String pushStreamName;
 
    /**
     * 备注
     */
    @Excel(name = "备注")
    private String remark;
 
    /**
     * 状态
     */
    @Excel(name = "状态")
    private Long state;
 
}