13 lines
287 B
Java
13 lines
287 B
Java
package com.tongran.agent.client.service;
|
|
|
|
import com.tongran.agent.client.core.vo.DiskVO;
|
|
import com.tongran.agent.client.core.vo.PointVO;
|
|
|
|
import java.util.List;
|
|
|
|
public interface DiskService {
|
|
List<DiskVO> diskList(long timestamp);
|
|
|
|
List<PointVO> pointList(long timestamp);
|
|
}
|