package com.ruoyi.aibrain.domain;
|
|
public class Point {
|
private Double x;
|
private Double y;
|
private String pictureBase64;
|
private String cameraId;
|
private String name;
|
|
public String getCameraId() {
|
return cameraId;
|
}
|
|
public void setCameraId(String cameraId) {
|
this.cameraId = cameraId;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getPictureBase64() {
|
return pictureBase64;
|
}
|
|
public void setPictureBase64(String pictureBase64) {
|
this.pictureBase64 = pictureBase64;
|
}
|
|
public Double getX() {
|
return x;
|
}
|
|
public void setX(Double x) {
|
this.x = x;
|
}
|
|
public Double getY() {
|
return y;
|
}
|
|
public void setY(Double y) {
|
this.y = y;
|
}
|
}
|