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;
|
private String templateType;
|
private Long issueId;
|
|
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;
|
}
|
|
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;
|
}
|
}
|