lizijie
2020-11-24 9e190cf9d65933c67341514fb3c5e5e9a48b4d8d
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);
}