1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| package com.moral.service;
|
| import com.moral.entity.SensorUnit;
|
| import java.util.List;
| import java.util.Map;
|
| public interface SensorUnitService {
| public boolean addOrModify(SensorUnit sensorUnit);
|
| List<SensorUnit> queryListBySensorId(int sensorId);
|
| List<SensorUnit> queryListBySensorId(int sensorId, Boolean isDelete);
|
| void remove(Integer id);
|
| Map<Integer,List<SensorUnit>> queryGroupSensorBySids(List<Integer> sensorIds);
| }
|
|