first commit
This commit is contained in:
46
hrmsEjb/wenrgise/help/bean/HelpChapterBean.java
Normal file
46
hrmsEjb/wenrgise/help/bean/HelpChapterBean.java
Normal file
@@ -0,0 +1,46 @@
|
||||
package wenrgise.help.bean;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.ArrayList;
|
||||
|
||||
public class HelpChapterBean implements Serializable {
|
||||
private String txtHeading = "";
|
||||
|
||||
private ArrayList arylstPart = new ArrayList();
|
||||
|
||||
private String txtChapId = "";
|
||||
|
||||
private String txtKeyword = "";
|
||||
|
||||
public String getTxtHeading() {
|
||||
return this.txtHeading;
|
||||
}
|
||||
|
||||
public void setTxtHeading(String newTxtHeading) {
|
||||
this.txtHeading = newTxtHeading;
|
||||
}
|
||||
|
||||
public ArrayList getArylstPart() {
|
||||
return this.arylstPart;
|
||||
}
|
||||
|
||||
public void setArylstPart(ArrayList newArylstPart) {
|
||||
this.arylstPart = newArylstPart;
|
||||
}
|
||||
|
||||
public String getTxtChapId() {
|
||||
return this.txtChapId;
|
||||
}
|
||||
|
||||
public void setTxtChapId(String newTxtChapId) {
|
||||
this.txtChapId = newTxtChapId;
|
||||
}
|
||||
|
||||
public String getTxtKeyword() {
|
||||
return this.txtKeyword;
|
||||
}
|
||||
|
||||
public void setTxtKeyword(String newTxtKeyword) {
|
||||
this.txtKeyword = newTxtKeyword;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user