91av视频/亚洲h视频/操亚洲美女/外国一级黄色毛片 - 国产三级三级三级三级

  • 大小: 15.83MB
    文件類型: .zip
    金幣: 1
    下載: 0 次
    發(fā)布日期: 2023-07-06
  • 語言: 其他
  • 標(biāo)簽:

資源簡介

使用ssh框架實現(xiàn)的員工管理系統(tǒng)

資源截圖

代碼片段和文件信息

package?cn.mani123.employee.action;

import?java.util.List;

import?javax.servlet.RequestDispatcher;

import?org.springframework.http.HttpRequest;

import?cn.mani123.employee.domani.Department;
import?cn.mani123.employee.domani.PageBean;
import?cn.mani123.employee.service.DepartmentService;

import?com.opensymphony.xwork2.ActionContext;
import?com.opensymphony.xwork2.ActionSupport;
import?com.opensymphony.xwork2.ModelDriven;

public?class?DepartmentAction?extends?ActionSupport?implements?ModelDriven{

/**
?*?
?*/
private?static?final?long?serialVersionUID?=?1L;
Department?department?=?new?Department();
@Override
public?Department?getModel()?{
return?department;
}
private?Integer?currPage?=?1;
private?DepartmentService?departmentService;

public?void?setDepartmentService(DepartmentService?departmentService)?{
this.departmentService?=?departmentService;
}

public?void?setCurrPage(Integer?currPage)?{
this.currPage?=?currPage;
}

//分頁顯示
public?String?findAll(){
PageBean?pageBean?=?departmentService.findByPage(currPage);
ActionContext.getContext().getValueStack().push(pageBean);//傳到value棧中
return?“findAll“;
}
//跳轉(zhuǎn)到添加部門頁面的方法
public?String?saveUI(){
return?“saveUI“;
}

public?String?add(){
departmentService.add(department);
return?“addSuccess“;
}

//action編輯返回頁面的方法
public?String?edit(){
department?=?departmentService.findById(department.getDid());
return?“editSuccess“;
}

//action中修改部門的方法
public?String?update(){
departmentService.update(department);
return?“updateSuccess“;
}

//action中刪除部門的方法
public?String?delete(){
department?=?departmentService.findById(department.getDid());
departmentService.delete(department);
return?“deleteSuccess“;
}
}

?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????目錄???????????0??2017-04-24?16:40??ssh_employee\
?????文件?????????598??2017-04-24?16:43??ssh_employee\.classpath
?????目錄???????????0??2017-04-24?16:40??ssh_employee\.myeclipse\
?????文件?????????309??2017-04-24?16:40??ssh_employee\.mymetadata
?????文件????????1755??2017-04-24?17:21??ssh_employee\.project
?????目錄???????????0??2017-04-24?16:40??ssh_employee\.settings\
?????文件?????????493??2017-04-24?16:40??ssh_employee\.settings\.jsdtscope
?????文件?????????395??2017-04-24?16:40??ssh_employee\.settings\org.eclipse.jdt.core.prefs
?????文件?????????474??2017-04-24?16:40??ssh_employee\.settings\org.eclipse.wst.common.component
?????文件?????????252??2017-04-24?16:40??ssh_employee\.settings\org.eclipse.wst.common.project.facet.core.xml
?????文件??????????49??2017-04-24?16:40??ssh_employee\.settings\org.eclipse.wst.jsdt.ui.superType.container
?????文件???????????6??2017-04-24?16:40??ssh_employee\.settings\org.eclipse.wst.jsdt.ui.superType.name
?????目錄???????????0??2017-05-12?17:23??ssh_employee\src\
?????文件????????3739??2017-05-01?01:33??ssh_employee\src\applicationContext.xml
?????目錄???????????0??2017-04-24?16:44??ssh_employee\src\cn\
?????目錄???????????0??2017-04-24?16:44??ssh_employee\src\cn\mani123\
?????目錄???????????0??2017-04-24?16:45??ssh_employee\src\cn\mani123\employee\
?????目錄???????????0??2017-04-27?19:01??ssh_employee\src\cn\mani123\employee\action\
?????文件????????1918??2017-05-01?01:38??ssh_employee\src\cn\mani123\employee\action\DepartmentAction.java
?????文件????????2585??2017-05-01?18:07??ssh_employee\src\cn\mani123\employee\action\EmployeeAction.java
?????目錄???????????0??2017-04-27?18:59??ssh_employee\src\cn\mani123\employee\dao\
?????文件?????????472??2017-05-01?01:38??ssh_employee\src\cn\mani123\employee\dao\DepartmentDao.java
?????文件?????????510??2017-05-01?18:05??ssh_employee\src\cn\mani123\employee\dao\EmployeeDao.java
?????目錄???????????0??2017-04-27?18:58??ssh_employee\src\cn\mani123\employee\dao\impl\
?????文件????????1894??2017-05-01?01:39??ssh_employee\src\cn\mani123\employee\dao\impl\DepartmentDaoImpl.java
?????文件????????1729??2017-05-13?20:34??ssh_employee\src\cn\mani123\employee\dao\impl\EmployeeDaoImpl.java
?????目錄???????????0??2017-04-27?19:39??ssh_employee\src\cn\mani123\employee\domani\
?????文件?????????817??2017-05-01?18:13??ssh_employee\src\cn\mani123\employee\domani\Department.hbm.xml
?????文件?????????828??2017-04-24?16:55??ssh_employee\src\cn\mani123\employee\domani\Department.java
?????文件?????????989??2017-04-24?17:16??ssh_employee\src\cn\mani123\employee\domani\Employee.hbm.xml
?????文件????????1487??2017-04-24?16:57??ssh_employee\src\cn\mani123\employee\domani\Employee.java
............此處省略227個文件信息

評論

共有 條評論

相關(guān)資源