月球大数据地理空间分析展示平台-【后端】-月球后台服务
13693261870
2023-09-06 9c9ffe92c377cbb2f26e18e51620523315ef61de
src/main/java/com/moon/server/entity/ctrl/PubEntity.java
@@ -26,6 +26,27 @@
    }
    /**
     * 设置默认值
     */
    public void setDefault() {
        if (null == min) {
            min = 0;
        }
        if (null == max) {
            max = 18;
        }
        if (null == epsg || epsg == 0) {
            epsg = 104903;
        }
        if (StringHelper.isEmpty(uuid)) {
            uuid = StringHelper.getGuid();
        }
        if (StringHelper.isEmpty(time)) {
            time = StringHelper.YMDHMS2_FORMAT.format(new Date());
        }
    }
    /**
     * 发布ID
     */
    private Integer pubid;