jpy
2023-05-27 278e09b096efd227e9928547e575ed2057aaf720
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.moral.api.service;
 
import com.moral.api.entity.Sensor;
import com.baomidou.mybatisplus.extension.service.IService;
 
import java.util.List;
import java.util.Map;
 
/**
 * <p>
 *  服务类
 * </p>
 *
 * @author moral
 * @since 2021-06-28
 */
public interface SensorService extends IService<Sensor> {
    Sensor getSensorByCode(String code);
 
    List<Map<String, Object>> getSensorsByMonitorPointIds(Map map);
}