jinpengyong
2023-08-22 e6f974ca6eab798c2df5c09cdb8320ecf4ff4185
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);
}