2023-09-08 06:17:16 +00:00
|
|
|
package inc.sdt.controlcentermanagement.application;
|
|
|
|
|
|
2023-09-11 00:40:43 +00:00
|
|
|
import inc.sdt.controlcentermanagement.presentation.StatsDetailRecord;
|
|
|
|
|
import inc.sdt.controlcentermanagement.presentation.StatsRecord;
|
|
|
|
|
import org.springframework.data.domain.Page;
|
|
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
2023-09-08 06:17:16 +00:00
|
|
|
public interface StatsService {
|
2023-09-11 00:40:43 +00:00
|
|
|
List<StatsRecord> getChamberStats();
|
|
|
|
|
|
|
|
|
|
Page<StatsDetailRecord> getChamberStatsDetail(int page, int size, String chamberNumber);
|
2023-09-08 06:17:16 +00:00
|
|
|
}
|