Interface LogRepository

    • Method Detail

      • findByUuid

        java.util.Optional<Log> findByUuid​(java.lang.String uuid)
      • findLogsByLogTime

        java.util.List<Log> findLogsByLogTime​(java.sql.Timestamp timestamp)
      • updateLaunchIdByLaunchId

        @Modifying
        @Query(value="UPDATE log SET launch_id = :newLaunchId WHERE launch_id = :currentLaunchId",
               nativeQuery=true)
        void updateLaunchIdByLaunchId​(@Param("currentLaunchId")
                                      java.lang.Long currentLaunchId,
                                      @Param("newLaunchId")
                                      java.lang.Long newLaunchId)