src/main/java/com/moon/server/entity/data/PointEntity.java
@@ -1,10 +1,8 @@ package com.moon.server.entity.data; /** * 点实体类 * @author WWW * @date 2023-11-16 */ import com.moon.server.helper.WebHelper; @SuppressWarnings("ALL") public class PointEntity { private double x; @@ -16,9 +14,9 @@ } public PointEntity(double x, double y, double val) { this.x = x; this.y = y; this.val = val; this.x = WebHelper.round(x, 6); this.y = WebHelper.round(y, 6); this.val = WebHelper.round(val, 2); } public double getX() {