TA 역할 Spring 경계 smoke #6

Open
forge-bot wants to merge 9 commits from forge/role-ta-live-1522-001-attempt-2-run-af8c24005cdb into main
Showing only changes of commit 35bbfbba34 - Show all commits

View file

@ -0,0 +1,13 @@
package com.klaroworks.runtime.rolematrix.repository;
import com.klaroworks.runtime.rolematrix.domain.RoleMatrix;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;
import java.util.Optional;
/** 역할 매트릭스 JPA 리포지토리 */
@Repository
public interface RoleMatrixRepository extends JpaRepository<RoleMatrix, Long> {
Optional<RoleMatrix> findByName(String name);
boolean existsByName(String name);
}