| | |
| | | private Long id; |
| | | private String title; |
| | | private String template; |
| | | private String templateType; |
| | | private Long issueId; |
| | | |
| | | public static EmailTemplateCondition make(Map<String, Object> condition) { |
| | | return ConvertUtil.convertMapToClass(condition, EmailTemplateCondition.class); |
| | |
| | | public void setTemplate(String template) { |
| | | this.template = template; |
| | | } |
| | | |
| | | public String getTemplateType() { |
| | | return templateType; |
| | | } |
| | | |
| | | public void setTemplateType(String templateType) { |
| | | this.templateType = templateType; |
| | | } |
| | | |
| | | public Long getIssueId() { |
| | | return issueId; |
| | | } |
| | | |
| | | public void setIssueId(Long issueId) { |
| | | this.issueId = issueId; |
| | | } |
| | | } |