OWL ITS + 탐지시스템(인터넷 진흥원)
jhjang
2022-01-03 9c283e735476f1106262de58b4042f30acf61a45
src/main/java/kr/wisestone/owl/web/condition/EmailTemplateCondition.java
@@ -8,6 +8,8 @@
    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);
@@ -36,4 +38,20 @@
    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;
    }
}