| | |
| | | |
| | | @Override |
| | | public List<LocMast> findOutMast(Short locType1, List<Integer> crnNos) { |
| | | if (crnNos.size() == 0) { |
| | | return null; |
| | | } |
| | | return this.baseMapper.findOutMast(locType1, crnNos); |
| | | } |
| | | |
| | | @Override |
| | | public LocMast findInEmptyLocMast(Short locType1, List<Integer> rows) { |
| | | return this.baseMapper.findInEmptyLocMast(locType1, rows); |
| | | public List<LocMast> findInEmptyLocMast(Short locType1, List<Integer> rows, Integer crnNo) { |
| | | return this.baseMapper.findInEmptyLocMast(locType1, rows, crnNo); |
| | | } |
| | | |
| | | @Override |
| | | public List<LocMast> findEmptyLocMastByLocNos(Short locType1, List<String> locNos) { |
| | | return this.baseMapper.findEmptyLocMastByLocNos(locType1, locNos); |
| | | public List<LocMast> findEmptyLocMastByLocNos(Short locType1, List<String> locNos, Integer crnNo) { |
| | | return this.baseMapper.findEmptyLocMastByLocNos(locType1, locNos, crnNo); |
| | | } |
| | | |
| | | @Override |
| | | public List<LocMast> findEmptyLowFrequencyLocMast(Short locType1) { |
| | | return this.baseMapper.findEmptyLowFrequencyLocMast(locType1); |
| | | public List<LocMast> findEmptyLowFrequencyLocMast(Short locType1, Integer crnNo) { |
| | | return this.baseMapper.findEmptyLowFrequencyLocMast(locType1, crnNo); |
| | | } |
| | | |
| | | @Override |
| | | public List<LocMast> findEmptyLocMast(Short locType1, Integer crnNo) { |
| | | return this.baseMapper.findEmptyLocMast(locType1, crnNo); |
| | | } |
| | | |
| | | @Override |