| | |
| | | this.saveMdcEquipment(mdcEquipment, null, productionId); |
| | | } |
| | | |
| | | /** |
| | | * 根据产线id集合查询设备列表 |
| | | * @param mdcProductionIds |
| | | * @return |
| | | */ |
| | | @Override |
| | | public List<MdcEquipment> findByProductionIds(List<String> mdcProductionIds) { |
| | | 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); |
| | | } |
| | | |
| | | } |