first commit
This commit is contained in:
65
hrmsEjb/wenrgise/help/bean/SearchBean.java
Normal file
65
hrmsEjb/wenrgise/help/bean/SearchBean.java
Normal file
@@ -0,0 +1,65 @@
|
||||
package wenrgise.help.bean;
|
||||
|
||||
import wenrgise.common.bean.BaseDetailBean;
|
||||
|
||||
public class SearchBean extends BaseDetailBean {
|
||||
private String chapterId;
|
||||
|
||||
private String chapterName;
|
||||
|
||||
private String partName;
|
||||
|
||||
private String txtModuleName;
|
||||
|
||||
private String txtScreenName;
|
||||
|
||||
private String txtAction;
|
||||
|
||||
public String getChapterId() {
|
||||
return this.chapterId;
|
||||
}
|
||||
|
||||
public void setChapterId(String newChapterId) {
|
||||
this.chapterId = newChapterId;
|
||||
}
|
||||
|
||||
public String getChapterName() {
|
||||
return this.chapterName;
|
||||
}
|
||||
|
||||
public void setChapterName(String newChapterName) {
|
||||
this.chapterName = newChapterName;
|
||||
}
|
||||
|
||||
public String getPartName() {
|
||||
return this.partName;
|
||||
}
|
||||
|
||||
public void setPartName(String newPartName) {
|
||||
this.partName = newPartName;
|
||||
}
|
||||
|
||||
public String getTxtModuleName() {
|
||||
return this.txtModuleName;
|
||||
}
|
||||
|
||||
public void setTxtModuleName(String newTxtModuleName) {
|
||||
this.txtModuleName = newTxtModuleName;
|
||||
}
|
||||
|
||||
public String getTxtScreenName() {
|
||||
return this.txtScreenName;
|
||||
}
|
||||
|
||||
public void setTxtScreenName(String newTxtScreenName) {
|
||||
this.txtScreenName = newTxtScreenName;
|
||||
}
|
||||
|
||||
public String getTxtAction() {
|
||||
return this.txtAction;
|
||||
}
|
||||
|
||||
public void setTxtAction(String newTxtAction) {
|
||||
this.txtAction = newTxtAction;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user