jinpengyong
2020-05-21 9b2e4fa2c1b8374d3496f56535547558efa61d30
1
2
3
4
5
6
7
8
9
10
package com.moral.service;
 
import java.util.List;
 
public interface SensorService {
 
    List<String> getSensorKeys();
 
    List<String> getSensorKeyByMac(List<String> macs);
}