Skip to content

Commit

Permalink
fix : fix UserAdmissionRepository findAllWithName method(#745)
Browse files Browse the repository at this point in the history
  • Loading branch information
OH-GITAEK committed Nov 4, 2024
1 parent fa04ca7 commit 3650f55
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,10 @@ public interface UserAdmissionRepository extends JpaRepository<UserAdmission, St
"WHERE u.state = :user_state ORDER BY ua.created_at DESC", nativeQuery = true)
Page<UserAdmission> findAll(@Param("user_state") String userState, Pageable pageable);

@Query(value = "SELECT ua.id AS id, ua.user_id,ua.image,ua.reject_reason,ua.description,ua.updated_at,ua.created_at, u.name, u.state " +
@Query(value = "SELECT ua.id AS id, ua.user_id,uai.uuid_file_id AS user_admission_attach_image ,ua.description,ua.updated_at,ua.created_at, u.name, u.state " +
"FROM tb_user_admission AS ua " +
"LEFT JOIN tb_user AS u ON ua.user_id = u.id " +
"LEFT JOIN tb_user_admission_attach_image_uuid_file AS uai ON ua.id = uai.user_admission_id " +
"WHERE u.state = :user_state AND (:name IS NULL OR u.name LIKE %:name%) ORDER BY ua.created_at DESC", nativeQuery = true)
Page<UserAdmission> findAllWithName(@Param("user_state") String userState, @Param("name") String name, Pageable pageable);
}

0 comments on commit 3650f55

Please sign in to comment.