Commit 298ab2f4 by gdj

修复首页航飞任务统计bug。

parent 4d5c35fe
...@@ -473,6 +473,7 @@ public class WaylineJobServiceImpl extends ServiceImpl<IWaylineJobMapper, Waylin ...@@ -473,6 +473,7 @@ public class WaylineJobServiceImpl extends ServiceImpl<IWaylineJobMapper, Waylin
startSecond = startSecond*1000; startSecond = startSecond*1000;
endSecond = endSecond*1000; endSecond = endSecond*1000;
waylineJobQueryWrapper.between(WaylineJobEntity::getBeginTime, startSecond, endSecond); waylineJobQueryWrapper.between(WaylineJobEntity::getBeginTime, startSecond, endSecond);
waylineJobQueryWrapper.eq(WaylineJobEntity::getWorkspaceId, workspaceId);
List<WaylineJobEntity> waylineJobList = this.mapper.selectList(waylineJobQueryWrapper); List<WaylineJobEntity> waylineJobList = this.mapper.selectList(waylineJobQueryWrapper);
......
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