liurunyu
2024-11-08 e3aae0ec49b7423d4e8a9c903fe0b9852c89d6b6
pipIrr-platform/pipIrr-web/pipIrr-web-base/src/main/java/com/dy/pipIrrBase/dict/DictSv.java
@@ -56,9 +56,14 @@
        BigDecimal lat = new BigDecimal(baSettingsMapper.getItemValue("lat"));
        BigDecimal lng = new BigDecimal(baSettingsMapper.getItemValue("lng"));
        Integer zoomMp = Integer.parseInt(Optional.ofNullable(baSettingsMapper.getItemValue("zoomMp")).orElse("0"));
        Integer zoomPc = Integer.parseInt(Optional.ofNullable(baSettingsMapper.getItemValue("zoomPc")).orElse("0"));
        VoMapCenter po = new VoMapCenter();
        po.setLat(lat);
        po.setLng(lng);
        po.setZoomMp(zoomMp);
        po.setZoomPc(zoomPc);
        return po;
    }
}