提交 | 用户 | 时间
|
a6de49
|
1 |
package com.iailab.module.device.service; |
H |
2 |
|
|
3 |
import com.iailab.framework.common.service.CrudService; |
|
4 |
import com.iailab.module.device.dto.DeviceIndexDTO; |
|
5 |
import com.iailab.module.device.entity.DeviceIndexEntity; |
|
6 |
|
|
7 |
import java.util.List; |
|
8 |
|
|
9 |
/** |
|
10 |
* 设备故障库; |
|
11 |
* |
|
12 |
* @author lirm ${email} |
|
13 |
* @since 1.0.0 2024-05-23 |
|
14 |
*/ |
|
15 |
public interface DeviceIndexService extends CrudService<DeviceIndexEntity, DeviceIndexDTO> { |
|
16 |
|
|
17 |
void deleteByDeviceId(String id); |
|
18 |
|
|
19 |
List<DeviceIndexDTO> getByDeviceId(String id); |
|
20 |
} |