jinpengyong
2021-07-15 68a49e074e779e1960f827ff02d69d3b73fa9165
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.moral.api.service;
 
import com.moral.api.entity.Device;
import com.baomidou.mybatisplus.extension.service.IService;
 
import java.util.List;
 
/**
 * <p>
 * 设备表 服务类
 * </p>
 *
 * @author moral
 * @since 2021-06-28
 */
public interface DeviceService extends IService<Device> {
    List<Device> getDevicesByMonitorPointId(Integer monitorPointId);
}