From 2f55cebbad3dea187a5f91d16ec80a9677dab699 Mon Sep 17 00:00:00 2001 From: 13693261870 <252740454@qq.com> Date: 星期三, 13 十一月 2024 11:16:53 +0800 Subject: [PATCH] 1 --- src/main/java/com/yssh/entity/Coordinate.java | 31 +++++++++++++++++++++++++++++++ 1 files changed, 31 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/yssh/entity/Coordinate.java b/src/main/java/com/yssh/entity/Coordinate.java new file mode 100644 index 0000000..e0ab3b6 --- /dev/null +++ b/src/main/java/com/yssh/entity/Coordinate.java @@ -0,0 +1,31 @@ +package com.yssh.entity; + +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; + } +} -- Gitblit v1.9.3