Skip to content

Commit

Permalink
feat: #119-헬퍼 매칭글 Repository 구현
Browse files Browse the repository at this point in the history
  • Loading branch information
BlueBerrySoda committed May 2, 2024
1 parent 5d099e9 commit 9a52527
Showing 1 changed file with 15 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
package com.example.capstone.domain.help.repository;

import com.example.capstone.domain.help.entity.Help;
import org.springframework.data.jpa.repository.JpaRepository;

import java.util.Optional;

public interface HelpRepository extends JpaRepository<Help, Long>, HelpListRepository {

Help save(Help help);

Optional<Help> findById(Long id);

void deleteById(Long id);
}

0 comments on commit 9a52527

Please sign in to comment.