10 lines
188 B
Java
10 lines
188 B
Java
package com.tongran.agent.client.service;
|
|
|
|
import com.tongran.agent.client.core.vo.NetVO;
|
|
|
|
import java.util.List;
|
|
|
|
public interface NetService {
|
|
List<NetVO> netList(long timestamp);
|
|
}
|