| | |
| | | List<String> getEquipmentIdsProduction(String userId, String key); |
| | | |
| | | /** |
| | | * 查询产线下的所有设备(首页部根据用户进行数据筛选) |
| | | */ |
| | | List<String> getEquipmentIdsProduction(String key); |
| | | |
| | | /** |
| | | * 根据设备id查询设备名称 |
| | | * |
| | | * @param equipmentId |
| | |
| | | * @return |
| | | */ |
| | | List<MdcEquipment> findByProductionIds(List<String> mdcProductionIds); |
| | | |
| | | /** |
| | | * 根据产线id集合和配送小组查询设备列表 |
| | | * @param allProductionIds |
| | | * @param teamCodelist |
| | | * @return |
| | | */ |
| | | List<MdcEquipment> findByProIdsAndTeamCode(List<String> allProductionIds, List<String> teamCodelist); |
| | | |
| | | /** |
| | | * 根据产线id集合和设备类型查询设备列表 |
| | | * @param allProductionIds |
| | | * @param typeList |
| | | * @return |
| | | */ |
| | | List<MdcEquipment> findByProIdsAndType(List<String> allProductionIds, List<String> typeList); |
| | | |
| | | List<String> getEquIdsByProIds(List<String> proIds); |
| | | |
| | | |
| | | /** |
| | | * 根据用户查询设备列表信息 |
| | | * @return |
| | | */ |
| | | List<MdcEquipment> getEquipmentList(); |
| | | } |