资源简介
开发工具:Eclipse MarS.2, JDK 1.7, MySQL 5.5, Maven 3.3.9, Tomcat7
软件架构:Spring3.2+SpringMVC3.2+MyBatis3.2.7
企业人力资源管理系统
代码片段和文件信息
package com.wy.action;
import java.util.List;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionForward;
import org.apache.struts.action.ActionMapping;
import org.apache.struts.actions.DispatchAction;
import com.wy.dao.objectDao;
import com.wy.form.CjForm;
import com.wy.form.TrainForm;
public class CjAction extends DispatchAction {
private objectDao objectDao;
public objectDao getobjectDao() {
return objectDao;
}
public void setobjectDao(objectDao objectDao) {
this.objectDao = objectDao;
}
// 奖惩察看操作
public ActionForward queryCj(ActionMapping mapping ActionForm form
HttpServletRequest request HttpServletResponse response) {
String information = “from CjForm order by id desc“;
if (request.getParameter(“type“) != null) {
String type = request.getParameter(“type“).trim();
information = “from CjForm where cj_type=“ + type
+ “ order by id desc“;
request.setAttribute(“type“ type);
}
System.out.println(“information:“+information);
List list = objectDao.getobjectList(information);
request.setAttribute(“list“ list);
return mapping.findForward(“queryCj“);
}
// 删除奖惩操作
public ActionForward deleteCj(ActionMapping mapping ActionForm form
HttpServletRequest request HttpServletResponse response) {
String id = request.getParameter(“id“);
if (id == null) {
CjForm cjForm = (CjForm) objectDao
.getobjectForm(“from CjForm where id=‘“ + id + “‘“);
this.objectDao.deleteobjectForm(cjForm);
}
return this.queryCj(mapping form request response);
}
// 添加奖惩操作
public ActionForward saveCj(ActionMapping mapping ActionForm form
HttpServletRequest request HttpServletResponse response) {
CjForm cjForm = (CjForm) form;
this.objectDao.insertobjectForm(cjForm);
return mapping.findForward(“operationCj“);
}
// 奖惩详细查询
public ActionForward queryOneCj(ActionMapping mapping ActionForm form
HttpServletRequest request HttpServletResponse response) {
String id = request.getParameter(“id“);
CjForm cjForm = (CjForm) objectDao
.getobjectForm(“from CjForm where id=‘“ + id + “‘“);
request.setAttribute(“cjForm“ cjForm);
return mapping.findForward(“queryOneCj“);
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2017-06-12 11:33 企业人力资源管理系统\
文件 17219 2013-07-09 08:30 企业人力资源管理系统\db_personmanager.sql
目录 0 2017-06-12 11:33 企业人力资源管理系统\PersonManager\
文件 661 2017-06-11 14:56 企业人力资源管理系统\PersonManager\.classpath
文件 1046 2013-07-08 16:21 企业人力资源管理系统\PersonManager\.project
目录 0 2017-06-12 11:33 企业人力资源管理系统\PersonManager\.settings\
文件 503 2013-07-08 16:21 企业人力资源管理系统\PersonManager\.settings\.jsdtscope
文件 395 2013-07-08 16:21 企业人力资源管理系统\PersonManager\.settings\org.eclipse.jdt.core.prefs
文件 469 2013-07-08 16:21 企业人力资源管理系统\PersonManager\.settings\org.eclipse.wst.common.component
文件 345 2013-07-08 16:21 企业人力资源管理系统\PersonManager\.settings\org.eclipse.wst.common.project.facet.core.xm
文件 49 2013-07-08 16:21 企业人力资源管理系统\PersonManager\.settings\org.eclipse.wst.jsdt.ui.superType.container
文件 6 2013-07-08 16:21 企业人力资源管理系统\PersonManager\.settings\org.eclipse.wst.jsdt.ui.superType.name
目录 0 2017-06-12 11:33 企业人力资源管理系统\PersonManager\build\
目录 0 2017-06-12 11:33 企业人力资源管理系统\PersonManager\build\classes\
目录 0 2017-06-12 11:33 企业人力资源管理系统\PersonManager\build\classes\com\
文件 180 2013-07-08 16:36 企业人力资源管理系统\PersonManager\build\classes\com\applicationResources.properties
目录 0 2017-06-12 11:33 企业人力资源管理系统\PersonManager\build\classes\com\wy\
目录 0 2017-06-12 11:33 企业人力资源管理系统\PersonManager\build\classes\com\wy\action\
文件 3100 2017-06-12 08:48 企业人力资源管理系统\PersonManager\build\classes\com\wy\action\CjAction.class
文件 2912 2017-06-12 08:48 企业人力资源管理系统\PersonManager\build\classes\com\wy\action\DepartmentAction.class
文件 6433 2017-06-12 08:48 企业人力资源管理系统\PersonManager\build\classes\com\wy\action\EmployeeAction.class
文件 3523 2017-06-12 08:48 企业人力资源管理系统\PersonManager\build\classes\com\wy\action\InviteJobAction.class
文件 3734 2017-06-12 08:48 企业人力资源管理系统\PersonManager\build\classes\com\wy\action\ManagerAction.class
文件 3883 2017-06-12 08:48 企业人力资源管理系统\PersonManager\build\classes\com\wy\action\PayAction.class
文件 2690 2017-06-12 08:48 企业人力资源管理系统\PersonManager\build\classes\com\wy\action\TrainAction.class
目录 0 2017-06-12 11:33 企业人力资源管理系统\PersonManager\build\classes\com\wy\dao\
文件 1960 2017-06-12 08:48 企业人力资源管理系统\PersonManager\build\classes\com\wy\dao\ob
目录 0 2017-06-12 11:33 企业人力资源管理系统\PersonManager\build\classes\com\wy\form\
文件 1577 2017-06-12 08:48 企业人力资源管理系统\PersonManager\build\classes\com\wy\form\CjForm.class
文件 1266 2013-07-08 16:36 企业人力资源管理系统\PersonManager\build\classes\com\wy\form\CjForm.hbm.xm
文件 1198 2017-06-12 08:48 企业人力资源管理系统\PersonManager\build\classes\com\wy\form\DepartmentForm.class
............此处省略175个文件信息
相关资源
- 基于SSM框架中小型企业oa管理系统
- Toad9.5安装程序及注册码
- sshOA系统源码
- 最权威ToadforOracle11.6中文使用指南
- MVC+ICOAutoFac+EF+三层+VS2013
- Navicat 远程连接 Oracle 时提示oracle li
- 毕业设计项目OA系统 源码及论文
- Game.Design.Workshop.A.Playcentric.Approach.to
- toad for oracle 12.1
- Oracle Instant Client_12_1 Downloads
- 中文破解版_Toad for Oracle 12.8
- 通达OA2013破解版本6.16.130718
- Koa+mysql后台框架
- Toad_for_Oracle_2018_x64_Full
- mysql57-community-release-el7-11.noarch.rpm
- oracle管理神器,Toad_for_Oracle_2018_Edit
- SSH框架开发JBOA办公自动化管理系统含
- toad for oracle
- Toad_for_Oracle_2018_Edition_13.0.0.80_x86
- boa与数据库数据交互的
- mysql-community-release-el6-5.noarch.rpm 安装数
- Struts+hibernate图片上传
- Toad DBA Suite for Oracle 11.6 + Toad for Orac
- ubuntu qt提示QMYSQL driver not loaded 的解决
- Spring Security oAuth2.0 Demo.zip
- Toad DBA Suite for Oracle 12地址和KEY
- Toad_for_Oracle_2019_x64_Trial_Web.exe
- Toad破解支持5.7到6.6
- mha4mysql-manager-0.57-0.el7.noarch.rpm和mha4
- 易语言源码-可继续延伸为OA、企业管
评论
共有 条评论