188 lines
4.9 KiB
Java
188 lines
4.9 KiB
Java
package seed.map;
|
|
|
|
import javax.persistence.Entity;
|
|
import javax.persistence.Column;
|
|
import javax.persistence.Id;
|
|
import javax.persistence.Table;
|
|
|
|
@Entity
|
|
@Table(name = "VIEW_SITE_MENU_MANAGER")
|
|
public class VIEW_SITE_MENU_MANAGER {
|
|
|
|
@Id
|
|
@Column(name = "SITE_MENU_IDX", nullable=false, insertable=true, updatable=false)
|
|
private Integer siteMenuIdx;
|
|
|
|
@Column(name = "SITE_IDX", length=100, nullable=false, insertable=true, updatable=false)
|
|
private String siteIdx;
|
|
|
|
@Column(name = "MEMBER_IDX", nullable=false, insertable=true, updatable=false)
|
|
private Integer memberIdx;
|
|
|
|
@Column(name = "SITE_MENU_IDXS", length=20, nullable=false, insertable=true, updatable=false)
|
|
private String siteMenuIdxs;
|
|
|
|
@Column(name = "SITE_MENU_NAME_TYPE", length=1, nullable=false, insertable=true, updatable=false)
|
|
private String siteMenuNameType;
|
|
|
|
@Column(name = "SITE_MENU_NAME", length=100, nullable=false, insertable=true, updatable=false)
|
|
private String siteMenuName;
|
|
|
|
@Column(name = "SITE_MENU_LINK_URL", length=500, nullable=true, insertable=true, updatable=false)
|
|
private String siteMenuLinkUrl;
|
|
|
|
@Column(name = "SITE_MENU_STATUS", length=1, nullable=false, insertable=true, updatable=false)
|
|
private String siteMenuStatus;
|
|
|
|
@Column(name = "SITE_MENU_DEPTH", nullable=false, insertable=true, updatable=false)
|
|
private Integer siteMenuDepth;
|
|
|
|
@Column(name = "SITE_MENU_ORDER", nullable=false, insertable=true, updatable=false)
|
|
private Integer siteMenuOrder;
|
|
|
|
@Column(name = "SITE_MENU_TYPE", length=1, nullable=false, insertable=true, updatable=false)
|
|
private String siteMenuType;
|
|
|
|
@Column(name = "SITE_SATISFACTION_STATUS1", nullable=true, insertable=true, updatable=false)
|
|
private Long siteSatisfaction1;
|
|
|
|
@Column(name = "SITE_SATISFACTION_STATUS2", nullable=true, insertable=true, updatable=false)
|
|
private Long siteSatisfaction2;
|
|
|
|
@Column(name = "SITE_SATISFACTION_STATUS3", nullable=true, insertable=true, updatable=false)
|
|
private Long siteSatisfaction3;
|
|
|
|
@Column(name = "SITE_SATISFACTION_STATUS4", nullable=true, insertable=true, updatable=false)
|
|
private Long siteSatisfaction4;
|
|
|
|
@Column(name = "SITE_SATISFACTION_STATUS5", nullable=true, insertable=true, updatable=false)
|
|
private Long siteSatisfaction5;
|
|
|
|
public Integer getSiteMenuIdx() {
|
|
return siteMenuIdx;
|
|
}
|
|
|
|
public void setSiteMenuIdx(Integer siteMenuIdx) {
|
|
this.siteMenuIdx = siteMenuIdx;
|
|
}
|
|
|
|
public String getSiteIdx() {
|
|
return siteIdx;
|
|
}
|
|
|
|
public void setSiteIdx(String siteIdx) {
|
|
this.siteIdx = siteIdx;
|
|
}
|
|
|
|
public Integer getMemberIdx() {
|
|
return memberIdx;
|
|
}
|
|
|
|
public void setMemberIdx(Integer memberIdx) {
|
|
this.memberIdx = memberIdx;
|
|
}
|
|
|
|
public String getSiteMenuIdxs() {
|
|
return siteMenuIdxs;
|
|
}
|
|
|
|
public void setSiteMenuIdxs(String siteMenuIdxs) {
|
|
this.siteMenuIdxs = siteMenuIdxs;
|
|
}
|
|
|
|
public String getSiteMenuNameType() {
|
|
return siteMenuNameType;
|
|
}
|
|
|
|
public void setSiteMenuNameType(String siteMenuNameType) {
|
|
this.siteMenuNameType = siteMenuNameType;
|
|
}
|
|
|
|
public String getSiteMenuName() {
|
|
return siteMenuName;
|
|
}
|
|
|
|
public void setSiteMenuName(String siteMenuName) {
|
|
this.siteMenuName = siteMenuName;
|
|
}
|
|
|
|
public String getSiteMenuLinkUrl() {
|
|
return siteMenuLinkUrl;
|
|
}
|
|
|
|
public void setSiteMenuLinkUrl(String siteMenuLinkUrl) {
|
|
this.siteMenuLinkUrl = siteMenuLinkUrl;
|
|
}
|
|
|
|
public String getSiteMenuStatus() {
|
|
return siteMenuStatus;
|
|
}
|
|
|
|
public void setSiteMenuStatus(String siteMenuStatus) {
|
|
this.siteMenuStatus = siteMenuStatus;
|
|
}
|
|
|
|
public Integer getSiteMenuDepth() {
|
|
return siteMenuDepth;
|
|
}
|
|
|
|
public void setSiteMenuDepth(Integer siteMenuDepth) {
|
|
this.siteMenuDepth = siteMenuDepth;
|
|
}
|
|
|
|
public Integer getSiteMenuOrder() {
|
|
return siteMenuOrder;
|
|
}
|
|
|
|
public void setSiteMenuOrder(Integer siteMenuOrder) {
|
|
this.siteMenuOrder = siteMenuOrder;
|
|
}
|
|
|
|
public String getSiteMenuType() {
|
|
return siteMenuType;
|
|
}
|
|
|
|
public void setSiteMenuType(String siteMenuType) {
|
|
this.siteMenuType = siteMenuType;
|
|
}
|
|
|
|
public Long getSiteSatisfaction1() {
|
|
return siteSatisfaction1;
|
|
}
|
|
|
|
public void setSiteSatisfaction1(Long siteSatisfaction1) {
|
|
this.siteSatisfaction1 = siteSatisfaction1;
|
|
}
|
|
|
|
public Long getSiteSatisfaction2() {
|
|
return siteSatisfaction2;
|
|
}
|
|
|
|
public void setSiteSatisfaction2(Long siteSatisfaction2) {
|
|
this.siteSatisfaction2 = siteSatisfaction2;
|
|
}
|
|
|
|
public Long getSiteSatisfaction3() {
|
|
return siteSatisfaction3;
|
|
}
|
|
|
|
public void setSiteSatisfaction3(Long siteSatisfaction3) {
|
|
this.siteSatisfaction3 = siteSatisfaction3;
|
|
}
|
|
|
|
public Long getSiteSatisfaction4() {
|
|
return siteSatisfaction4;
|
|
}
|
|
|
|
public void setSiteSatisfaction4(Long siteSatisfaction4) {
|
|
this.siteSatisfaction4 = siteSatisfaction4;
|
|
}
|
|
|
|
public Long getSiteSatisfaction5() {
|
|
return siteSatisfaction5;
|
|
}
|
|
|
|
public void setSiteSatisfaction5(Long siteSatisfaction5) {
|
|
this.siteSatisfaction5 = siteSatisfaction5;
|
|
}
|
|
} |