资源简介
通过人力资源管理系统可使管理者快速高效地完成企业日常事务中的人事工作,降低人力资源管理的成本,使管理者能集中精力实现企业战略目标。
代码片段和文件信息
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“);
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 213 2007-12-02 11:31 一个基于JSP的人力资源管理系统\cj_deawith.jsp
文件 3643 2007-12-04 09:50 一个基于JSP的人力资源管理系统\cj_insert.jsp
文件 4809 2007-12-04 09:56 一个基于JSP的人力资源管理系统\cj_query.jsp
文件 2778 2007-12-02 11:47 一个基于JSP的人力资源管理系统\cj_queryOne.jsp
文件 3224 2007-12-01 14:04 一个基于JSP的人力资源管理系统\css\st
文件 1310720 2008-01-11 14:52 一个基于JSP的人力资源管理系统\Databa
文件 1048576 2008-01-11 14:52 一个基于JSP的人力资源管理系统\Databa
文件 556 2007-12-01 14:04 一个基于JSP的人力资源管理系统\dealwith.jsp
文件 400 2007-12-01 14:04 一个基于JSP的人力资源管理系统\department_deawith.jsp
文件 3072 2007-12-02 08:57 一个基于JSP的人力资源管理系统\department_insert.jsp
文件 4500 2007-12-02 13:07 一个基于JSP的人力资源管理系统\department_query.jsp
文件 179 2007-12-01 14:04 一个基于JSP的人力资源管理系统\down.jsp
文件 621 2007-12-01 14:04 一个基于JSP的人力资源管理系统\employee_deawith.jsp
文件 7750 2007-12-01 14:04 一个基于JSP的人力资源管理系统\employee_employ.jsp
文件 7663 2007-12-01 14:04 一个基于JSP的人力资源管理系统\employee_insert.jsp
文件 6023 2007-12-04 10:04 一个基于JSP的人力资源管理系统\employee_query.jsp
文件 5505 2007-12-01 14:04 一个基于JSP的人力资源管理系统\employee_queryOne.jsp
文件 7596 2007-12-01 14:04 一个基于JSP的人力资源管理系统\employee_update.jsp
文件 68 2007-12-01 14:04 一个基于JSP的人力资源管理系统\exitSave.jsp
文件 3940 2007-12-01 14:04 一个基于JSP的人力资源管理系统\images\addDepartment.gif
文件 4493 2007-12-01 14:04 一个基于JSP的人力资源管理系统\images\addEmployee.gif
文件 4023 2007-12-01 14:04 一个基于JSP的人力资源管理系统\images\addInvite.gif
文件 25125 2007-12-01 14:04 一个基于JSP的人力资源管理系统\images\center1.jpg
文件 14905 2007-12-01 14:04 一个基于JSP的人力资源管理系统\images\center2.jpg
文件 4128 2007-12-01 14:04 一个基于JSP的人力资源管理系统\images\constituteCompensation.gif
文件 4181 2007-12-01 14:04 一个基于JSP的人力资源管理系统\images\constituteDeal.gif
文件 4494 2007-12-01 14:04 一个基于JSP的人力资源管理系统\images\constituteTrain.gif
文件 31173 2007-12-21 09:18 一个基于JSP的人力资源管理系统\images\down.jpg
文件 2807 2007-12-01 14:04 一个基于JSP的人力资源管理系统\images\land.gif
文件 188988 2007-12-01 14:04 一个基于JSP的人力资源管理系统\images\managerLand.jpg
............此处省略131个文件信息
相关资源
- 用jsp+servlet+EL表达式+JSTL写的分页代码
- jsp+myeclipse+mysql员工管理系统
- JAVA工资管理系统课程设计附报告
- android 英文生词本设计
- jsp+sql简单购物车
- 基于JSP+Servlet+JavaBean+Dao开发模式——
- JAVA语言超市收银系统课程设计
- jsp 用户登录注册实现
- jsp+mysql做得网上论坛系统
- 基于JSP高校实验室仪器设备管理系统
- 仓库管理系统jsp+mysql
- 三个完整的java注册登录模块源代码和
- Java语言程序设计例题解析与实验指导
- Java课程设计-学生学籍管理系统
- java课程设计 魔板游戏 内含源代码 打
- java课程设计 图书查询系统 内含源代
- java课程设计 蜘蛛纸牌 内含源代码 打
- 图书借阅系统Java课程设计
- 毕业实训求职招聘系统源码完整《j
- jspSmartUpload.jar已解决utf-8乱码问题
- java课程设计--记事本程序
- 学生管理系统jpa+jsp+servlet
- 基于JSP的B/S模式网上商城购物系统的
- idea+springboot+mybatis+jsp+bootstrap实现从
- 基于JavaWeb的服装销售管理系统的设计
- java图书管理系统设计模式
- 超市管理系统-jsp大作业-java大作业-
- servlet-api-2.5.jar和jsp-api-2.0.jar
- java学生信息管理系统+代码
- 一个纯jsp+Javabean+mysql的学生信息管理
评论
共有 条评论