月球大数据地理空间分析展示平台-【后端】-月球后台服务
1
13693261870
2024-11-11 fee67ca8a0760315047a52fc4101a8f4f80b7a7f
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() {