如何使用JPA存储库在@Query注释中添加start和maxResults?

时间:2016-06-08 12:47:28

标签: java spring spring-data-jpa

我想在JPA中的@Query注释中添加start和maxResults。 例如:

@Query(value = "Select * from agent_appointment where status in('CIN','CRTD') and start_time >= CURDATE()", nativeQuery = true)
List<AgentAppointment> getAppointmentAndCheckInList();

我希望此查询返回特定数量的结果,例如start和maxResults

0 个答案:

没有答案