基于springboot+mybatis+mysql+html企业人事管理系统

基于springboot+mybatis+mysql+html企业人事管理系统

  • 一、系统介绍
  • 二、功能展示
    • 1.用户登陆
    • 2.员工奖惩--员工
    • 3.合同管理--员工
    • 4.个人薪酬--员工
    • 5.培训管理--员工
    • 6.个人绩效--员工
    • 7.员工管理(管理员)
    • 8.奖惩管理(管理员)
    • 9.薪酬管理(管理员)
    • 10.绩效评估(管理员)
  • 三、代码展示
  • 四.获取源码

一、系统介绍

主要功能
员工:员工奖惩、合同管理、个人薪酬、培训管理、个人绩效
管理员:员工管理、奖惩管理、合同管理、薪酬管理、培训管理、绩效评估、用户管理

开发工具:idea/maven,数据库:MySQL8.0 jdk1.8

二、功能展示

1.用户登陆

在这里插入图片描述

2.员工奖惩–员工

在这里插入图片描述

3.合同管理–员工

在这里插入图片描述

4.个人薪酬–员工

在这里插入图片描述

5.培训管理–员工

在这里插入图片描述

6.个人绩效–员工

在这里插入图片描述

7.员工管理(管理员)

在这里插入图片描述

8.奖惩管理(管理员)

在这里插入图片描述

9.薪酬管理(管理员)

在这里插入图片描述

10.绩效评估(管理员)

在这里插入图片描述

三、代码展示

package com.query;

import java.io.IOException;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;


@WebServlet("/queryAttendance")
public class queryAttendance extends HttpServlet {
	private static final long serialVersionUID = 1L;

    public queryAttendance() {
        super();

    }

	protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
		request.setCharacterEncoding("UTF-8");
		String userA=request.getParameter("userA");
		if(userA!=null) {
		response.sendRedirect(request.getContextPath() + "/qureyuserA.jsp?userA="+userA);
		}else {
			response.sendRedirect(request.getContextPath() + "/AttendanceManagement.jsp");
		}
	}

	protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
		doGet(request, response);
	}

}

四.获取源码

点击下载
基于springboot+mybatis+mysql+html企业人事管理系统

你可能感兴趣的:(mybatis,mysql,spring,boot)