Files
SmartJavaAI/smartjavaai-common/src/main/java/cn/smartjavaai/common/entity/Point.java

42 lines
688 B
Java
Raw Normal View History

2025-02-21 11:26:58 +08:00
package cn.smartjavaai.common.entity;
import ai.djl.util.JsonUtils;
import java.io.Serializable;
/**
*
* @author dwj
*/
public class Point implements Serializable {
private static final long serialVersionUID = 1L;
private double x;
private double y;
2025-02-21 11:26:58 +08:00
public Point(double x, double y) {
2025-02-21 11:26:58 +08:00
this.x = x;
this.y = y;
}
public double getX() {
2025-02-21 11:26:58 +08:00
return x;
}
public void setX(double x) {
2025-02-21 11:26:58 +08:00
this.x = x;
}
public double getY() {
2025-02-21 11:26:58 +08:00
return y;
}
public void setY(double y) {
2025-02-21 11:26:58 +08:00
this.y = y;
}
@Override
public String toString() {
return JsonUtils.GSON_COMPACT.toJson(this);
}
}