| | |
| | | @Override |
| | | public PageInfo<TExperimentDispatchVO> pageList(TExperimentDispatchQuery query) { |
| | | PageInfo<TExperimentDispatchVO> pageInfo = new PageInfo<>(query.getPageNum(), query.getPageSize()); |
| | | if(CollectionUtils.isEmpty(query.getDispatchIds())){ |
| | | return pageInfo; |
| | | } |
| | | // 查询自己已通过的实验调度 |
| | | if(Objects.nonNull(query.getOtherStatus())){ |
| | | List<TExperimentDispatchParticipants> experimentDispatchParticipants1 = experimentDispatchParticipantsMapper.selectList(Wrappers.lambdaQuery(TExperimentDispatchParticipants.class) |