Commit 72da949c by guoxuejian Committed by gdj

fix bug

parent 6367dab9
...@@ -223,7 +223,7 @@ public class WaylineJobServiceImpl extends ServiceImpl<IWaylineJobMapper, Waylin ...@@ -223,7 +223,7 @@ public class WaylineJobServiceImpl extends ServiceImpl<IWaylineJobMapper, Waylin
} }
// jobid // jobid
if (param.getJobIds() != null) { if (StringUtils.hasText(param.getJobIds())) {
List<String> jobIdList = Arrays.asList(param.getJobIds().split(",")); List<String> jobIdList = Arrays.asList(param.getJobIds().split(","));
if (!CollectionUtils.isEmpty(jobIdList)) { if (!CollectionUtils.isEmpty(jobIdList)) {
waylineJobQueryWrapper.in(WaylineJobEntity::getJobId, jobIdList); waylineJobQueryWrapper.in(WaylineJobEntity::getJobId, jobIdList);
......
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