Commit 924f0158 authored by kpandey's avatar kpandey

Added a coloumn EnterPrise to fetch sites according to enterPrise

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@176482 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 53f23e57
......@@ -23,6 +23,9 @@ public class SiteMaster implements java.io.Serializable {
@Column(name = "SITE_CODE")
@Field(store = Store.YES, analyze = Analyze.NO)
private String siteCode;
@Column(name = "ENTERPRISE")
private String enterPrise;
@Column(name = "DESCR")
private String descr;
......@@ -49,6 +52,10 @@ public class SiteMaster implements java.io.Serializable {
public String getSiteCode() {
return siteCode;
}
public String getEnterPrise() {
return enterPrise;
}
public String getDescr() {
return descr;
......@@ -81,6 +88,11 @@ public class SiteMaster implements java.io.Serializable {
public void setSiteCode(String siteCode) {
this.siteCode = siteCode;
}
public void setEnterPrise(String enterPrise) {
this.enterPrise = enterPrise;
}
public void setDescr(String descr) {
this.descr = descr;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment