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
| package com.yssh.entity;
|
| /**
| * 坐标
| * @author WWW
| * @date 2023-06-18
| */
| public class Coordinate {
| private double x;
|
| private double y;
|
| public Coordinate() {
| }
|
| public Coordinate(double x, double y) {
| this.x = x;
| this.y = y;
| }
|
| 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;
| }
| }
|
|