대시보드
저장소
filestore
액티비티
검색
로그인
~jhpark
/
owl-kisa
OWL ITS + 탐지시스템(인터넷 진흥원)
요약
커밋
트리
문서
포크
비교
blame
|
히스토리
|
raw
대시보드 - 멤버별 진행률 하위 프로젝트와 합쳐서 보여주는 함수 생성 및 파트너리스트 사이드바 수정
이민희
2021-12-01
d31323b4a8a314f010c54d8d9b502126a079eb67
[~jhpark/owl-kisa.git]
/
src
/
main
/
java
/
kr
/
wisestone
/
owl
/
service
/
SystemRoleService.java
1
2
3
4
5
6
7
8
package kr.wisestone.owl.service;
import kr.wisestone.owl.domain.SystemRole;
import org.springframework.data.jpa.repository.JpaRepository;
public interface SystemRoleService extends AbstractService<SystemRole, Long, JpaRepository<SystemRole, Long>>{
SystemRole findByRoleType(String roleType);
}