提交 20e62f33 authored 作者: 李瑞鑫's avatar 李瑞鑫

Merge branch 'v25.3_broker_20240906'

......@@ -145,7 +145,7 @@ public class SettlementJob {
if (StringUtils.isNotBlank(jobParam)) {
childNoList = JSON.parseArray(jobParam, String.class);
}
if (childNoList == null && childNoList.isEmpty()) {
if (childNoList == null || childNoList.isEmpty()) {
return;
}
......@@ -173,7 +173,7 @@ public class SettlementJob {
if (StringUtils.isNotBlank(jobParam)) {
childNoList = JSON.parseArray(jobParam, String.class);
}
if (childNoList == null && childNoList.isEmpty()) {
if (childNoList == null || childNoList.isEmpty()) {
return;
}
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论