deptactionform.java
来自「l劳动力管理系统」· Java 代码 · 共 42 行
JAVA
42 行
package com.hr.actionform;import org.apache.struts.action.*;import javax.servlet.http.*;import java.util.ArrayList;import com.hr.util.FillDataUtil;import com.hr.vo.Dept;public class DeptActionForm extends ActionForm { private java.util.List depts = new FillDataUtil(Dept.class); private String operation; private Long deleteUID = null; public DeptActionForm() { operation="display"; } public ActionErrors validate(ActionMapping actionMapping, HttpServletRequest httpServletRequest) { /**@todo: finish this method, this is just the skeleton.*/ return null; } public void reset(ActionMapping actionMapping, HttpServletRequest httpServletRequest) { } public java.util.List getDepts() { return depts; } public void setDepts(java.util.List depts) { this.depts = depts; } public Long getDeleteUID() { return deleteUID; } public void setDeleteUID(Long deleteUID) { this.deleteUID = deleteUID; } public String getOperation() { return operation; } public void setOperation(String operation) { this.operation = operation; }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?