1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| package com.dji.sample.manage.service;
|
| import com.dji.sample.manage.model.dto.DeviceDictionaryDTO;
|
| import java.util.Optional;
|
| /**
| * @author sean.zhou
| * @version 0.1
| * @date 2021/11/15
| */
| public interface IDeviceDictionaryService {
|
| /**
| * Query the type data of the device based on domain, device type and sub type.
| *
| * @param domain
| * @param deviceType
| * @param subType
| * @return
| */
| Optional<DeviceDictionaryDTO> getOneDictionaryInfoByTypeSubType(Integer domain, Integer deviceType, Integer subType);
|
| }
|
|