新火炬后端单体项目初始化代码
Lius
7 天以前 904727f59b7e10a291ce7d1576e33192a619f2f2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
package org.jeecg.modules.mdc.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import org.jeecg.modules.base.model.FactoryIdModel;
import org.jeecg.modules.mdc.entity.MdcEquipment;
import org.jeecg.modules.mdc.entity.FactoryEquipment;
 
import java.util.List;
 
/**
 * @author: LiuS
 * @create: 2023-03-28 10:30
 */
public interface IFactoryEquipmentService extends IService<FactoryEquipment> {
 
    /**
     * 根据指定设备id查询产线信息
     */
    List<FactoryIdModel> queryFactoryIdsOfEquipment(String equipmentId);
 
    /**
     * 根据指定产线id查询设备信息
     */
    List<MdcEquipment> queryEquipmentsOfFactory(String factoryId);
 
    /**
     * 根据指定产线ids查询设备信息
     */
    List<MdcEquipment> queryEquipmentsOfFactorys(List<String> factoryIds);
}