package kr.wisestone.owl.domain;
|
|
import javax.persistence.*;
|
import java.io.Serializable;
|
|
@Entity
|
public class EmailTemplate extends BaseEntity {
|
@Id
|
@GeneratedValue(strategy = GenerationType.IDENTITY)
|
private Long id;
|
private String title;
|
private String template;
|
|
|
public EmailTemplate() {
|
}
|
|
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;
|
}
|
}
|