package kr.wisestone.owl.web.condition;
|
|
import kr.wisestone.owl.util.ConvertUtil;
|
|
import java.util.Map;
|
|
/**
|
* Create By J E O N G - S U N / 2019-05-22
|
*/
|
public class NoticeCondition {
|
private Long id;
|
private String title;
|
private String description;
|
private Integer page;
|
private Integer pageSize;
|
|
public NoticeCondition(){}
|
|
public static NoticeCondition make(Map<String, Object> conditions) {
|
return ConvertUtil.convertMapToClass(conditions, NoticeCondition.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 getDescription() {
|
return description;
|
}
|
|
public void setDescription(String description) {
|
this.description = description;
|
}
|
|
public Integer getPage() {
|
return page;
|
}
|
|
public void setPage(Integer page) {
|
this.page = page;
|
}
|
|
public Integer getPageSize() {
|
return pageSize;
|
}
|
|
public void setPageSize(Integer pageSize) {
|
this.pageSize = pageSize;
|
}
|
}
|