admin
2024-02-20 435bc751b10bf5868182219bc4c0851ab7674cd7
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
package com.ruoyi.activeMQ.vo;
 
import java.util.List;
 
/**
 * CameraCon
 *
 * @author wf
 * @date 2023-03-08
 */
public class CameraCon {
    private Integer state;
    private List<CameraControlVO> cameras;
 
    public Integer getState() {
        return state;
    }
 
    public void setState(Integer state) {
        this.state = state;
    }
 
    public List<CameraControlVO> getCameras() {
        return cameras;
    }
 
    public void setCameras(List<CameraControlVO> cameras) {
        this.cameras = cameras;
    }
}