admin
2024-04-11 a2e67e004a5b908cb2b5eeda53101befb0d9578f
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
package com.ruoyi.activeMQ.vo;
 
import com.ruoyi.aibrain.domain.AiCameraRule;
import com.ruoyi.aibrain.domain.Point;
import io.swagger.models.auth.In;
 
import java.util.List;
 
/**
 * 坐标
 *
 * @author wf
 * @date 2023-03-08
 */
public class RuleAreaVO {
    private Integer b;
    private Integer g;
    private Integer r;
    private Integer pic_w;
    private Integer pic_h;
    private List<Point> points;
 
    public Integer getPic_w() {
        return pic_w;
    }
 
    public void setPic_w(Integer pic_w) {
        this.pic_w = pic_w;
    }
 
    public Integer getPic_h() {
        return pic_h;
    }
 
    public void setPic_h(Integer pic_h) {
        this.pic_h = pic_h;
    }
 
    public Integer getB() {
        return b;
    }
 
    public void setB(Integer b) {
        this.b = b;
    }
 
    public Integer getG() {
        return g;
    }
 
    public void setG(Integer g) {
        this.g = g;
    }
 
    public Integer getR() {
        return r;
    }
 
    public void setR(Integer r) {
        this.r = r;
    }
 
    public List<Point> getPoints() {
        return points;
    }
 
    public void setPoints(List<Point> points) {
        this.points = points;
    }
}