📄 baseform.java
字号:
/**
*
*/
package cn.bway.common.form;
import org.apache.struts.action.ActionForm;
import cn.bway.common.vo.QueryResult;
/**
* @author Kson
*
*/
public class BaseForm extends ActionForm {
private static final long serialVersionUID = 1L;
private java.lang.String timetypecode;
private java.lang.String departmentid;
private java.lang.String department;
private QueryResult queryResult = null;
private int pageNum = 1;
private String myAction;
private String userId;
private String planid;
private String oid[] = new String[0];
public java.lang.String getDepartment() {
return department;
}
public void setDepartment(java.lang.String department) {
this.department = department;
}
public java.lang.String getDepartmentid() {
return departmentid;
}
public void setDepartmentid(java.lang.String departmentid) {
this.departmentid = departmentid;
}
public java.lang.String getTimetypecode() {
return timetypecode;
}
public void setTimetypecode(java.lang.String timetypecode) {
this.timetypecode = timetypecode;
}
// public ArrayList getDepList() {
// return depList;
// }
//
// public void setDepList(ArrayList depList) {
// this.depList = depList;
// }
//
// public ArrayList getPriList() {
// return priList;
// }
//
// public void setPriList(ArrayList priList) {
// this.priList = priList;
// }
//
// public ArrayList getPlanTypeList() {
// if (planTypeList == null || planTypeList.isEmpty()) {
// planTypeList = new ArrayList();
// planTypeList.add(new LabelValueBean("----请选择属性----", "0"));
// planTypeList.add(new LabelValueBean("计划", "1"));
// planTypeList.add(new LabelValueBean("目录", "2"));
// }
// return planTypeList;
// }
//
// public void setPlanTypeList(ArrayList planTypeList) {
// this.planTypeList = planTypeList;
// }
//
// public ArrayList getTimeTypeList() {
// if (timeTypeList == null || timeTypeList.isEmpty()) {
// timeTypeList = new ArrayList();
// timeTypeList.add(new LabelValueBean("年计划", "Y"));
// timeTypeList.add(new LabelValueBean("月计划", "M"));
// timeTypeList.add(new LabelValueBean("周计划", "W"));
// timeTypeList.add(new LabelValueBean("中长期计划", "L"));
// timeTypeList.add(new LabelValueBean("日计划", "D"));
// }
// return timeTypeList;
// }
//
// public void setTimeTypeList(ArrayList timeTypeList) {
// this.timeTypeList = timeTypeList;
// }
public QueryResult getQueryResult() {
return queryResult;
}
public void setQueryResult(QueryResult queryResult) {
this.queryResult = queryResult;
}
public int getPageNum() {
return pageNum;
}
public void setPageNum(int pageNum) {
this.pageNum = pageNum;
}
public String[] getOid() {
return oid;
}
public void setOid(String[] oid) {
this.oid = oid;
}
// public ArrayList getProjectList() {
// return projectList;
// }
//
// public void setProjectList(ArrayList projectList) {
// this.projectList = projectList;
// }
public String getMyAction() {
return myAction;
}
public void setMyAction(String myAction) {
this.myAction = myAction;
}
public String getUserId() {
return userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
public String getPlanid() {
return planid;
}
public void setPlanid(String planid) {
this.planid = planid;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -