Commit 392ca027 by 王祖波

异常处理

parent c90d1a7d
......@@ -17,6 +17,7 @@ import org.springframework.stereotype.Component;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Objects;
/**
* Created by wangzubo on 2025/3/21.
......@@ -260,7 +261,7 @@ public class PotentialDataAdaptor {
if (reportType == null) {
return new Pair<>("", "");
}
if (StringUtils.isBlank(bizDate)) {
if (StringUtils.isBlank(bizDate) || Objects.equals(bizDate, "null")) {
return new Pair<>("", "");
}
String endDate = bizDate;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment