Skip to content

Commit

Permalink
feat:[kakao-tech-campus-2nd-step3#24]- Add repository
Browse files Browse the repository at this point in the history
JpaRepository 생성
  • Loading branch information
yooonwodyd committed Sep 27, 2024
1 parent d374059 commit 3b4ada5
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
package com.helpmeCookies.user.repository;

import org.springframework.data.jpa.repository.JpaRepository;

import com.helpmeCookies.user.entity.ArtistInfo;

public interface ArtistInfoRepository extends JpaRepository<ArtistInfo, Long> {
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
package com.helpmeCookies.user.repository;

import org.springframework.data.jpa.repository.JpaRepository;

import com.helpmeCookies.user.entity.BusinessArtist;

public interface BusinessArtistRepository extends JpaRepository<BusinessArtist, Long> {
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
package com.helpmeCookies.user.repository;

import org.springframework.data.jpa.repository.JpaRepository;

import com.helpmeCookies.user.entity.Social;

public interface SocialRepository extends JpaRepository<Social, Long> {
}

0 comments on commit 3b4ada5

Please sign in to comment.