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;
|
}
|
}
|