| | |
| | | |
| | | Page<Activity> findByPidAndStateOrderByCreateTimeDesc(Long pid, int state, Pageable pageable); |
| | | |
| | | Page<Activity> findByPidAndStateNotOrderByCreateTimeDesc(Long pid, int state, Pageable pageable); |
| | | |
| | | Page<Activity> findByPidAndStateNotAndNameContainingOrderByCreateTimeDesc(Long pid, int state, String name, Pageable pageable); |
| | | |
| | | List<Activity> findByPidAndStateOrderByCreateTimeAsc(Long pid, int state); |
| | | |
| | | List<Activity> findByPidAndStateOrderByCreateTimeDesc(Long pid, int state); |
| | | |
| | | List<Activity> findByStateOrderByPidAscNameAsc(int state); |
| | | |
| | | @Query("SELECT a FROM Activity a WHERE a.pid = 0 ORDER BY a.createTime DESC") |