package kr.wisestone.owl.vo;
|
|
/**
|
* Created by jeong on 2017-12-29.
|
*/
|
public class BaseVo {
|
|
Long registerId;
|
String registerDate;
|
Long modifyId;
|
String modifyDate;
|
Boolean checked = Boolean.FALSE;
|
|
public BaseVo(){}
|
|
public Long getRegisterId() {
|
return registerId;
|
}
|
|
public void setRegisterId(Long registerId) {
|
this.registerId = registerId;
|
}
|
|
public String getRegisterDate() {
|
return registerDate;
|
}
|
|
public void setRegisterDate(String registerDate) {
|
this.registerDate = registerDate;
|
}
|
|
public Long getModifyId() {
|
return modifyId;
|
}
|
|
public void setModifyId(Long modifyId) {
|
this.modifyId = modifyId;
|
}
|
|
public String getModifyDate() {
|
return modifyDate;
|
}
|
|
public void setModifyDate(String modifyDate) {
|
this.modifyDate = modifyDate;
|
}
|
|
public Boolean getChecked() {
|
return checked;
|
}
|
|
public void setChecked(Boolean checked) {
|
this.checked = checked;
|
}
|
}
|