| | |
| | | import java.util.Map; |
| | | |
| | | public interface IssueUserService extends AbstractService<IssueUser, Long, JpaRepository<IssueUser, Long>>{ |
| | | |
| | | //담당자 |
| | | void modifyIssueUser(Issue issue, Workspace workspace, List<Long> userIds); |
| | | |
| | | void insertIssueUser(List<Map<String, Long>> issueAssigneeMaps); |
| | | |
| | | void removeIssueUser(Long projectId, List<Long> excludeUserIds); |
| | | |
| | | //담당부서 |
| | | void modifyIssueDepartment(Issue issue, Workspace workspace, List<Long> departmentIds); |
| | | |
| | | void insertIssueDepartment(List<Map<String, Long>> issueAssigneeMaps); |
| | | |
| | | void removeIssueDepartment(Long projectId, List<Long> excludeUserIds); |
| | | |
| | | List<IssueUser> find(Issue issue); |
| | | } |