| | |
| | | package org.jeecg.modules.mdc.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import org.jeecg.modules.mdc.entity.MdcEquipment; |
| | | import org.jeecg.modules.system.entity.MdcProductionEquipment; |
| | | import org.jeecg.modules.system.model.ProductionIdModel; |
| | | |
| | |
| | | * 根据指定设备id查询产线信息 |
| | | */ |
| | | List<ProductionIdModel> queryProductionIdsOfEquipment(String equipmentId); |
| | | |
| | | /** |
| | | * 根据指定产线id查询设备信息 |
| | | */ |
| | | List<MdcEquipment> queryEquipmentsOfProduction(String productionId); |
| | | |
| | | /** |
| | | * 根据指定产线ids查询设备信息 |
| | | */ |
| | | List<MdcEquipment> queryEquipmentsOfProductions(List<String> productionIds); |
| | | } |