| | |
| | | return this.baseMapper.findByProductionIds(mdcProductionIds); |
| | | } |
| | | |
| | | /** |
| | | * 根据产线id集合和配送小组查询设备列表 |
| | | * @param mdcProductionIds |
| | | * @param teamCodeList |
| | | * @return |
| | | */ |
| | | @Override |
| | | public List<MdcEquipment> findByProIdsAndTeamCode(List<String> mdcProductionIds, List<String> teamCodeList) { |
| | | return this.baseMapper.findByProIdsAndTeamCode(mdcProductionIds, teamCodeList); |
| | | } |
| | | |
| | | /** |
| | | * 根据产线id集合和设备类型查询设备列表 |
| | | * @param allProductionIds |
| | | * @param typeList |
| | | * @return |
| | | */ |
| | | @Override |
| | | public List<MdcEquipment> findByProIdsAndType(List<String> allProductionIds, List<String> typeList) { |
| | | return this.baseMapper.findByProIdsAndType(allProductionIds, typeList); |
| | | } |
| | | |
| | | } |