124 lines
2.9 KiB
Java
124 lines
2.9 KiB
Java
package seed.map;
|
|
|
|
import java.util.Date;
|
|
|
|
import javax.persistence.Entity;
|
|
import javax.persistence.Column;
|
|
import javax.persistence.Id;
|
|
import javax.persistence.Table;
|
|
|
|
@Entity
|
|
@Table(name = "VIEW_BBS_DATA")
|
|
public class VIEW_BBS_DATA {
|
|
|
|
@Id
|
|
@Column(name = "BBS_DATA_IDX", nullable=false, insertable=true, updatable=false)
|
|
private Integer bbsDataIdx;
|
|
|
|
@Column(name = "SITE_IDX", length=100, nullable=false, insertable=true, updatable=false)
|
|
private String siteIdx;
|
|
|
|
@Column(name = "SITE_NAME", length=100, nullable=false, insertable=true, updatable=false)
|
|
private String siteName;
|
|
|
|
@Column(name = "BBS_SET_IDX", nullable=false, insertable=true, updatable=true)
|
|
private Integer bbsSetIdx;
|
|
|
|
@Column(name = "BBS_SET_NAME", length=100, nullable=false, insertable=true, updatable=true)
|
|
private String bbsSetName;
|
|
|
|
@Column(name = "SITE_MENU_IDXS", length=100, nullable=true, insertable=true, updatable=true)
|
|
private String siteMenuIdxs;
|
|
|
|
@Column(name = "BBS_DATA_TITLE", length=255, nullable=true, insertable=true, updatable=true)
|
|
private String bbsDataTitle;
|
|
|
|
@Column(name = "BBS_DATA_STATUS", length=1, nullable=true, insertable=true, updatable=true)
|
|
private String bbsDataStatus;
|
|
|
|
@Column(name = "MEMBER_IDX", nullable=false, insertable=true, updatable=true)
|
|
private Integer memberIdx;
|
|
|
|
@Column(name = "BBS_DATA_REGDATE", columnDefinition="TIMESTAMP", nullable=false, insertable=true, updatable=true)
|
|
private Date bbsDataRegDate;
|
|
|
|
public Integer getBbsDataIdx() {
|
|
return bbsDataIdx;
|
|
}
|
|
|
|
public void setBbsDataIdx(Integer bbsDataIdx) {
|
|
this.bbsDataIdx = bbsDataIdx;
|
|
}
|
|
|
|
public String getSiteIdx() {
|
|
return siteIdx;
|
|
}
|
|
|
|
public void setSiteIdx(String siteIdx) {
|
|
this.siteIdx = siteIdx;
|
|
}
|
|
|
|
public String getSiteName() {
|
|
return siteName;
|
|
}
|
|
|
|
public void setSiteName(String siteName) {
|
|
this.siteName = siteName;
|
|
}
|
|
|
|
public Integer getBbsSetIdx() {
|
|
return bbsSetIdx;
|
|
}
|
|
|
|
public void setBbsSetIdx(Integer bbsSetIdx) {
|
|
this.bbsSetIdx = bbsSetIdx;
|
|
}
|
|
|
|
public String getBbsSetName() {
|
|
return bbsSetName;
|
|
}
|
|
|
|
public void setBbsSetName(String bbsSetName) {
|
|
this.bbsSetName = bbsSetName;
|
|
}
|
|
|
|
public String getSiteMenuIdxs() {
|
|
return siteMenuIdxs;
|
|
}
|
|
|
|
public void setSiteMenuIdxs(String siteMenuIdxs) {
|
|
this.siteMenuIdxs = siteMenuIdxs;
|
|
}
|
|
|
|
public String getBbsDataTitle() {
|
|
return bbsDataTitle;
|
|
}
|
|
|
|
public void setBbsDataTitle(String bbsDataTitle) {
|
|
this.bbsDataTitle = bbsDataTitle;
|
|
}
|
|
|
|
public String getBbsDataStatus() {
|
|
return bbsDataStatus;
|
|
}
|
|
|
|
public void setBbsDataStatus(String bbsDataStatus) {
|
|
this.bbsDataStatus = bbsDataStatus;
|
|
}
|
|
|
|
public Integer getMemberIdx() {
|
|
return memberIdx;
|
|
}
|
|
|
|
public void setMemberIdx(Integer memberIdx) {
|
|
this.memberIdx = memberIdx;
|
|
}
|
|
|
|
public Date getBbsDataRegDate() {
|
|
return bbsDataRegDate;
|
|
}
|
|
|
|
public void setBbsDataRegDate(Date bbsDataRegDate) {
|
|
this.bbsDataRegDate = bbsDataRegDate;
|
|
}
|
|
} |