admin
2024-03-25 6729c925673fcf41cf12f6f1b59d1489a6031731
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
package com.ruoyi.activeMQ.vo;
 
import com.ruoyi.aibrain.domain.AiCameraRule;
import com.ruoyi.common.annotation.Excel;
import com.ruoyi.common.core.domain.BaseEntity;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
 
import java.util.List;
 
/**
 * 设备管理对象 ai_camera
 *
 * @author wf
 * @date 2023-03-08
 */
public class CameraControlVO {
    /** 摄像头ID */
    private String id;
 
    /** rtspUrl */
    private String rtspUrl;
 
    /** ip */
    private String ip;
 
    /** name */
    private String name;
 
    /** 推流高度 */
    private Integer remp_h;
 
    /** 推流宽度 */
    private Integer remp_w;
 
    /** 皮带宽度 */
    private String beltWidth;
 
    /** toRtmp */
    private String toRtmp;
 
    /** 运行算法 */
    private List<CameraRuleVO> models;
 
    public String getId() {
        return id;
    }
 
    public void setId(String id) {
        this.id = id;
    }
 
    public Integer getRemp_h() {
        return remp_h;
    }
 
    public void setRemp_h(Integer remp_h) {
        this.remp_h = remp_h;
    }
 
    public Integer getRemp_w() {
        return remp_w;
    }
 
    public void setRemp_w(Integer remp_w) {
        this.remp_w = remp_w;
    }
 
    public String getBeltWidth() {
        return beltWidth;
    }
 
    public void setBeltWidth(String beltWidth) {
        this.beltWidth = beltWidth;
    }
 
    public String getRtspUrl() {
        return rtspUrl;
    }
 
    public void setRtspUrl(String rtspUrl) {
        this.rtspUrl = rtspUrl;
    }
 
    public String getIp() {
        return ip;
    }
 
    public void setIp(String ip) {
        this.ip = ip;
    }
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
 
 
    public String getToRtmp() {
        return toRtmp;
    }
 
    public void setToRtmp(String toRtmp) {
        this.toRtmp = toRtmp;
    }
 
    public List<CameraRuleVO> getModels() {
        return models;
    }
 
    public void setModels(List<CameraRuleVO> models) {
        this.models = models;
    }
}