| | |
| | | } |
| | | |
| | | @Override |
| | | public LocMast findOutMast(Short locType1, List<Integer> crnNos) { |
| | | 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 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 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 |
| | | public List<LocMast> selectLocByLev(Integer lev) { |
| | | return this.baseMapper.selectLocByLev(lev); |
| | | } |
| | | |
| | | @Override |
| | | public List<LocMast> selectByLocNos(List<String> locNos) { |
| | | if (locNos == null || locNos.size() == 0) { |
| | | return new ArrayList<LocMast>(); |
| | | } |
| | | return this.baseMapper.selectByLocNos(locNos); |
| | | } |
| | | } |