| | |
| | | if (param.getDkmj()!=null){ |
| | | queryWrapper.eq(LotInfo::getDkmj,param.getDkmj()); |
| | | } |
| | | if (param.getIsPlan() != null) { |
| | | queryWrapper.eq(LotInfo::getIsPlan, param.getIsPlan()); |
| | | if (param.getIsPush() != null) { |
| | | queryWrapper.eq(LotInfo::getIsPush, param.getIsPush()); |
| | | } |
| | | |
| | | // 执行分页查询 |
| | |
| | | queryWrapper.in(LotInfo::getId, ids); |
| | | return mapper.selectList(queryWrapper); |
| | | } |
| | | public List<LotInfo> listLotinfo() { |
| | | return mapper.selectList(null); |
| | | public List<LotInfo> listLotinfo(String workspaceId) { |
| | | return mapper.selectList(new LambdaQueryWrapper<LotInfo>().eq(LotInfo::getWorkspaceId,workspaceId)); |
| | | } |
| | | @Override |
| | | public LotInfo getPatchesFromId(String patchesId){ |