Commit c36e009e by 王祖波

Merge branch 'feature-recommend3' into 'master'

异常处理

See merge request !3063
parents 015c6580 392ca027
......@@ -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