This commit is contained in:
shuo.wang
2025-02-28 09:49:33 +08:00
parent 0d22935ca2
commit 638986f216
2 changed files with 6 additions and 0 deletions

View File

@@ -259,6 +259,9 @@ public class ExportRealizeServiceImpl implements ExportRealizeService {
}
private List<Date> JsonToDate(String json) {
if (StringUtils.isBlank(json)){
return new ArrayList<>();
}
ObjectMapper mapper = new ObjectMapper();
// 解析JSON字符串为JsonNode对象
JsonNode jsonNode = null;

View File

@@ -383,6 +383,9 @@ public class SignFranchiseServiceImpl implements SignFranchiseService, AuditResu
}
private List<Date> JsonToDate(String json) {
if (StringUtils.isBlank(json)){
return new ArrayList<>();
}
ObjectMapper mapper = new ObjectMapper();
// 解析JSON字符串为JsonNode对象
JsonNode jsonNode = null;