lizijie
2022-05-13 e71334ddfb8fcde334bdd29a8a6e572a0bc670ea
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);
}