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
......@@ -24,6 +24,9 @@ public class SiteMaster implements java.io.Serializable {
@Field(store = Store.YES, analyze = Analyze.NO)
private String siteCode;
@Column(name = "ENTERPRISE")
private String enterPrise;
@Column(name = "DESCR")
private String descr;
......@@ -50,6 +53,10 @@ public class SiteMaster implements java.io.Serializable {
return siteCode;
}
public String getEnterPrise() {
return enterPrise;
}
public String getDescr() {
return descr;
}
......@@ -82,6 +89,11 @@ public class SiteMaster implements java.io.Serializable {
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