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