47 lines
964 B
Java
47 lines
964 B
Java
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;
|
|
}
|
|
}
|