From f60cf23a76972c0e0c7a437b17f37e1237e7d8d9 Mon Sep 17 00:00:00 2001
From: shicf <shi_chongfu@163.com>
Date: 星期一, 04 八月 2025 16:17:10 +0800
Subject: [PATCH] GPS坐标转换成百度坐标
---
src/main/java/com/product/mobile/core/service/FaceMobileService.java | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/src/main/java/com/product/mobile/core/service/FaceMobileService.java b/src/main/java/com/product/mobile/core/service/FaceMobileService.java
index eefa8ef..f608e99 100644
--- a/src/main/java/com/product/mobile/core/service/FaceMobileService.java
+++ b/src/main/java/com/product/mobile/core/service/FaceMobileService.java
@@ -252,7 +252,7 @@
String faceType = BaseUtil.ifNull(fse.getString("face_type"), "2");
FieldSetEntity faceFse = getBaseDao().getFieldSetByFilter("product_sys_face", "table_uuid=? and face_type=?", new Object[]{tableUuid, faceType}, true);
faceFse.setTableName(tableName);
- if ("1".equals(faceType) && FieldSetEntity.isEmpty(faceFse)) {
+ if ("1".equals(faceType) && !FieldSetEntity.isEmpty(faceFse)) {
//鍒楄〃
return faceApplyService.getFaceListConf(faceFse);
}
--
Gitblit v1.9.2