| | |
| | | import kr.wisestone.owl.service.IssueDepartmentService; |
| | | import kr.wisestone.owl.util.CommonUtil; |
| | | import kr.wisestone.owl.util.MapUtil; |
| | | import kr.wisestone.owl.vo.DepartmentVo; |
| | | import org.slf4j.Logger; |
| | | import org.slf4j.LoggerFactory; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | |
| | | return this.issueDepartmentRepository.findByIssueId(issue.getId()); |
| | | } |
| | | |
| | | // 이슈 담당부서 찾기 |
| | | @Override |
| | | @Transactional |
| | | public List<IssueDepartment> findByDepartmentId(Long departmentId) { |
| | | return this.issueDepartmentRepository.findByDepartmentId(departmentId); |
| | | } |
| | | |
| | | @Override |
| | | @Transactional |
| | | public void insertIssueDepartment(List<Map<String, Long>> issueAssigneeMaps) { |