package kr.wisestone.owl.vo;
|
|
/**
|
* zenith at 20200730
|
*/
|
public class QnaVo extends BaseVo{
|
private Long id;
|
private String title;
|
private String description;
|
private String writer;
|
|
public QnaVo(){}
|
|
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 getDescription() {
|
return description;
|
}
|
|
public void setDescription(String description) {
|
this.description = description;
|
}
|
|
public String getWriter() {
|
return writer;
|
}
|
|
public void setWriter(String writer) {
|
this.writer = writer;
|
}
|
}
|