| | |
| | | private List<Long> userIds = Lists.newArrayList(); |
| | | private List<Long> departmentIds = Lists.newArrayList(); // 담당 부서 |
| | | private List<String> sendEmails = Lists.newArrayList(); // 이메일 발송 대상자 |
| | | private String template; |
| | | private List<Long> attachedFileIds = Lists.newArrayList(); |
| | | private Long relationIssue; // 연관 일감 |
| | | private List<Map<String, Object>> issueCustomFields = Lists.newArrayList(); |
| | |
| | | // 메일 발송자 정보 |
| | | if (MapUtil.getStrings(params, "sendEmails") != null) { |
| | | form.setSendEmails(MapUtil.getStrings(params, "sendEmails")); |
| | | } |
| | | |
| | | // 메일 템플릿 정보 |
| | | if (MapUtil.getString(params, "template") != null) { |
| | | form.setTemplate(MapUtil.getString(params, "template")); |
| | | } |
| | | |
| | | // 텍스트 에디터에 첨부된 파일을 이슈와 연결하는 정보 |
| | |
| | | public void setParentIssueId(Long parentIssueId) { |
| | | this.parentIssueId = parentIssueId; |
| | | } |
| | | |
| | | public String getTemplate() { |
| | | return template; |
| | | } |
| | | |
| | | public void setTemplate(String template) { |
| | | this.template = template; |
| | | } |
| | | } |