package kr.wisestone.owl.repository; import kr.wisestone.owl.domain.IssueTableConfig; import org.springframework.data.jpa.repository.JpaRepository; import org.springframework.data.repository.query.Param; public interface IssueTableConfigRepository extends JpaRepository { IssueTableConfig findByUserIdAndWorkspaceIdAndIssueIdAndIssueTableType(@Param("userId") Long userId, @Param("workspaceId") Long workspaceId, @Param("issueId") Long issueId, @Param("issueTableType") int issueTableType); IssueTableConfig findByIssueIdAndIssueTableType(@Param("issueId") Long issueId, @Param("issueTableType") int issueTableType); }