#93 removed comment
This commit is contained in:
parent
ed7707c4d8
commit
2adaf7740a
@ -3,17 +3,17 @@ package ru.ulstu.user.repository;
|
||||
import org.springframework.data.jpa.repository.JpaRepository;
|
||||
import org.springframework.data.jpa.repository.Query;
|
||||
import org.springframework.data.repository.query.Param;
|
||||
//import ru.ulstu.user.model.Activity;
|
||||
//
|
||||
//import java.util.Date;
|
||||
//import java.util.List;
|
||||
//
|
||||
//public interface ActivityRepository extends JpaRepository<Activity, Integer> {
|
||||
//
|
||||
// @Query("SELECT a FROM Activity a WHERE (:userId IS NULL OR a.user.id = :userId) " +
|
||||
// "AND (CAST(:dateFrom AS date) IS NULL OR :dateFrom < a.date) " +
|
||||
// "AND (CAST(:dateTo AS date) IS NULL OR :dateTo > a.date)")
|
||||
// List<Activity> getByUserAndDateInterval(@Param("userId") Integer userId,
|
||||
// @Param("dateFrom") Date dateFrom,
|
||||
// @Param("dateTo") Date dateTo);
|
||||
//}
|
||||
import ru.ulstu.user.model.Activity;
|
||||
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
|
||||
public interface ActivityRepository extends JpaRepository<Activity, Integer> {
|
||||
|
||||
@Query("SELECT a FROM Activity a WHERE (:userId IS NULL OR a.user.id = :userId) " +
|
||||
"AND (CAST(:dateFrom AS date) IS NULL OR :dateFrom < a.date) " +
|
||||
"AND (CAST(:dateTo AS date) IS NULL OR :dateTo > a.date)")
|
||||
List<Activity> getByUserAndDateInterval(@Param("userId") Integer userId,
|
||||
@Param("dateFrom") Date dateFrom,
|
||||
@Param("dateTo") Date dateTo);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user