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
| package com.terra.system.entity.ctrl;
|
| /**
| * 坐标实体类
| *
| * @author WWW
| * @date 2024-02-28
| */
| public class CoordinateEntity {
| public CoordinateEntity() {
| }
|
| private Double x;
|
| private Double 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;
| }
| }
|
|