郑永安
2023-06-19 9d488beac4ff8bdb47f90e2ddd5fd9d907371797
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.gkhy.labRiskManage.domain.basic.service;
 
 
import com.gkhy.labRiskManage.domain.basic.entity.BasicExperimentDeviceType;
import com.gkhy.labRiskManage.domain.basic.model.dto.DeviceTypeDTO;
 
import java.util.List;
 
/**
 * 基础仪器设备类型表
 */
public interface BasicExperimentDeviceTypeService {
 
    /**
     * 基础仪器设备类型 - 查询 by id
     */
    BasicExperimentDeviceType getDeviceTypeById(Long deviceTypeId);
 
    /**
     * 基础字典  - 设备类型
     * */
    List<DeviceTypeDTO> listDeviceType();
}