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
| package Mqttmessage.Entity;
|
|
|
|
| public class CoordinatePoint {
| private String x; // X坐标
| private String y; // Y坐标
|
| public CoordinatePoint() {
| }
|
| public CoordinatePoint(String x, String y) {
| this.x = x;
| this.y = y;
| }
|
| public String getX() {
| return x;
| }
|
| public void setX(String x) {
| this.x = x;
| }
|
| public String getY() {
| return y;
| }
|
| public void setY(String y) {
| this.y = y;
| }
| }
|
|