Skip to content

Commit 2d827cd

Browse files
committed
feat: 활동 연혁 리포지토리 인터페이스 정의 (DASOMBE-15)
1 parent 070c798 commit 2d827cd

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
package dmu.dasom.api.domain.activity.repository;
2+
3+
import dmu.dasom.api.domain.activity.entity.ActivityHistory;
4+
import org.springframework.data.jpa.repository.JpaRepository;
5+
6+
public interface ActivityHistoryRepository extends JpaRepository<ActivityHistory, Long> {
7+
8+
}

0 commit comments

Comments
 (0)