张世豪
3 天以前 0930bed760105b81e2e5055801bec6d6e8d57358
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package Mqttmessage.Entity;
 
 
import lombok.Data;
 
@Data
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;
    }
}