Skip to content

Commit

Permalink
feat: trip repository 구현 (#27)
Browse files Browse the repository at this point in the history
  • Loading branch information
gardening-y committed Jan 8, 2024
1 parent d03c4d0 commit 5eac63d
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
package org.doorip.trip.repository;

import org.doorip.trip.domain.Trip;
import org.springframework.data.jpa.repository.JpaRepository;

public interface TripRepository extends JpaRepository<Trip, Long> {
Boolean existsByCode(String code);
}

0 comments on commit 5eac63d

Please sign in to comment.