hyingbo
2025-07-03 38eed874fc4cf74789d438b78381bd26448ceb3f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package org.jeecg.modules.mdc.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import org.jeecg.modules.system.entity.MdcEquipmentDepart;
import org.jeecg.modules.system.model.DepartIdModel;
 
import java.util.List;
 
/**
 * @author: LiuS
 * @create: 2023-03-28 10:13
 */
public interface IMdcEquipmentDepartService extends IService<MdcEquipmentDepart> {
 
    /**
     * 根据指定设备id查询部门信息
     * @param equipmentId 设备id
     * @return
     */
    List<DepartIdModel> queryDepartIdsOfEquipment(String equipmentId);
}