OWL ITS + 탐지시스템(인터넷 진흥원)
wyu
2021-12-11 a60879f718fb4fee3bb2b8783a92570f8ead16c3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
package kr.wisestone.owl.web.condition;
 
import kr.wisestone.owl.util.ConvertUtil;
 
import java.util.Map;
 
public class EmailTemplateCondition {
    private Long id;
    private String title;
    private String template;
 
    public static EmailTemplateCondition make(Map<String, Object> condition) {
        return ConvertUtil.convertMapToClass(condition, EmailTemplateCondition.class);
    }
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public String getTitle() {
        return title;
    }
 
    public void setTitle(String title) {
        this.title = title;
    }
 
    public String getTemplate() {
        return template;
    }
 
    public void setTemplate(String template) {
        this.template = template;
    }
}