Package kr.com.inspect.dao
Interface ChartDao
-
- All Known Implementing Classes:
ChartDaoImpl
public interface ChartDao차트와 관련된 DAO Interface- Version:
- 1.0
- Author:
- Yeonhee Kim
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetCountLessAndMoreThanOnJsonLog(java.time.LocalTime time1, java.time.LocalTime time2)특정 시간보다 빠르거나 느린 jsonlog 개수 가져오기intgetCountLessThanOnJsonLog(java.time.LocalTime time)특정 시간보다 빠른 jsonlog 개수 가져오기intgetCountMoreThanOnJsonLog(java.time.LocalTime time)특정 시간보다 느린 jsonlog 개수 가져오기
-
-
-
Method Detail
-
getCountLessThanOnJsonLog
int getCountLessThanOnJsonLog(java.time.LocalTime time)
특정 시간보다 빠른 jsonlog 개수 가져오기- Parameters:
time- 기준시간- Returns:
- 특정 시간보다 빠른 jsonlog 개수
-
getCountMoreThanOnJsonLog
int getCountMoreThanOnJsonLog(java.time.LocalTime time)
특정 시간보다 느린 jsonlog 개수 가져오기- Parameters:
time- 기준시간- Returns:
- 특정 시간보다 느린 jsonlog 개수
-
getCountLessAndMoreThanOnJsonLog
int getCountLessAndMoreThanOnJsonLog(java.time.LocalTime time1, java.time.LocalTime time2)특정 시간보다 빠르거나 느린 jsonlog 개수 가져오기- Parameters:
time1- 기준시간1time2- 기준시간2- Returns:
- 특정 시간보다 빠르거나 느린 jsonlog 개수
-
-