博主介绍:
大家好,我是一名在Java圈混迹十余年的程序员,精通Java编程语言,同时也熟练掌握微信小程序、Python和Android等技术,能够为大家提供全方位的技术支持和交流。
我擅长在JavaWeb、SSH、SSM、SpringBoot等框架下进行项目开发,具有丰富的项目经验和开发技能。我的代码风格规范、优美、易读性强,同时也注重性能优化、代码重构等方面的实践和经验总结。
我有丰富的成品Java毕设项目经验,能够为学生提供各类个性化的开题框架和实际运作方案。同时我也提供相关的学习资料、程序开发、技术解答、代码讲解、文档报告等专业服务。🍅技术交流和部署相关看文章末尾!🍅
👇🏻 精彩专栏推荐订阅👇🏻 不然下次找不到哟
Java项目精品实战案例(300套)
人事管理系统源码下载地址:
https://download.csdn.net/download/weixin_54828627/87798306
一、效果演示
基于springboot+vue的人事管理系统演示视频
二、前言介绍
近年来,由于计算机硬件、软件的飞速发展和广泛应用,对于企业管理而言,研发一个信息化自动化的员工人事管理系统至关重要。在本次毕设中,通过前期查阅企业员工工作流程等相关资料,根据开发设计系统时系统应该满足的可操作性、实用性、可靠性、安全性以及可维护性等原则,针对企业管理员工的主要数据以及功能需求,开发了一个基于MySql数据库,并且利用Java语言书写windows前端界面实现该系统的相关功能的简要企业员工人事管理系统。
三、主要技术
技术名 | 作用 |
---|---|
SpringBoot | 后端框架 |
Vue | 前端框架 |
MySQL | 数据库 |
四、系统设计(部分)
4.1、主要功能模块设计
4.2、用户管理流程设计
五、功能截图
5.1、管理员功能模块
管理员进行登录,进入系统前在登录页面根据要求填写用户名和密码,选择角色等信息,点击登录进行登录操作,如图5-1所示。
图5-1管理员登录界面图
管理员登录系统后,可以对首页,个人中心,员工管理,部门管理,员工考勤管理,请假申请管理,加班申请管理,员工工资管理,招聘计划管理,员工培训管理,部门培训管理,员工详细管理等进行相应的操作管理,如图5-2所示。
图5-2管理员功能界面图
员工管理
图5-3员工管理界面图
部门管理
图5-4部门管理界面图
员工考勤管理
图5-5员工考勤管理界面图
请假申请管理
图5-6请假申请管理界面图
员工工资管理
图5-7员工工资管理界面图
招聘计划管理
图5-8招聘计划管理界面图
部门培训管理
图5-9部门培训管理界面图
员工详细管理
图5-10员工详细管理界面图
5.2、员工功能模块
员工登录进入人事管理系统可以对首页,个人中心,员工考勤管理,请假申请管理,加班申请管理,员工工资管理,招聘计划管理,员工培训管理,部门培训管理,员工详细管理等进行相应操作,如图5-11所示。
图5-11员工功能界面图
个人中心
图5-12个人中心界面图
请假申请管理
图5-13请假申请管理界面图
加班申请管理
图5-14加班申请管理界面图
员工培训管理
图5-15员工培训管理界面图
这里功能太多,就不一一展示啦~
六、数据库设计(部分)
概念模型是对现实中的问题出现的事物的进行描述,ER图是由实体及其关系构成的图,通过E-R图可以清楚地描述系统涉及到的实体之间的相互关系。
员工管理实体图如图所示:
图6-1员工管理实体图
部门管理实体图如图所示:
图6-2部门管理实体图
员工考勤实体图如图所示:
图6-3员工考勤实体图
七、代码参考
package com.controller;import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Calendar;
import java.util.Map;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Date;
import java.util.List;
import javax.servlet.http.HttpServletRequest;import com.utils.ValidatorUtils;
import org.apache.commons.lang3.StringUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.format.annotation.DateTimeFormat;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
import com.baomidou.mybatisplus.mapper.EntityWrapper;
import com.baomidou.mybatisplus.mapper.Wrapper;
import com.annotation.IgnoreAuth;import com.entity.BumenpeixunEntity;
import com.entity.view.BumenpeixunView;import com.service.BumenpeixunService;
import com.service.TokenService;
import com.utils.PageUtils;
import com.utils.R;
import com.utils.MD5Util;
import com.utils.MPUtil;
import com.utils.CommonUtil;
import java.io.IOException;/*** 部门培训* 后端接口* @author * @email * @date 2022-03-22 17:13:54*/
@RestController
@RequestMapping("/bumenpeixun")
public class BumenpeixunController {@Autowiredprivate BumenpeixunService bumenpeixunService;/*** 后端列表*/@RequestMapping("/page")public R page(@RequestParam Map<String, Object> params,BumenpeixunEntity bumenpeixun,HttpServletRequest request){EntityWrapper<BumenpeixunEntity> ew = new EntityWrapper<BumenpeixunEntity>();PageUtils page = bumenpeixunService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, bumenpeixun), params), params));return R.ok().put("data", page);}/*** 前端列表*/@IgnoreAuth@RequestMapping("/list")public R list(@RequestParam Map<String, Object> params,BumenpeixunEntity bumenpeixun, HttpServletRequest request){EntityWrapper<BumenpeixunEntity> ew = new EntityWrapper<BumenpeixunEntity>();PageUtils page = bumenpeixunService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, bumenpeixun), params), params));return R.ok().put("data", page);}/*** 列表*/@RequestMapping("/lists")public R list( BumenpeixunEntity bumenpeixun){EntityWrapper<BumenpeixunEntity> ew = new EntityWrapper<BumenpeixunEntity>();ew.allEq(MPUtil.allEQMapPre( bumenpeixun, "bumenpeixun")); return R.ok().put("data", bumenpeixunService.selectListView(ew));}/*** 查询*/@RequestMapping("/query")public R query(BumenpeixunEntity bumenpeixun){EntityWrapper< BumenpeixunEntity> ew = new EntityWrapper< BumenpeixunEntity>();ew.allEq(MPUtil.allEQMapPre( bumenpeixun, "bumenpeixun")); BumenpeixunView bumenpeixunView = bumenpeixunService.selectView(ew);return R.ok("查询部门培训成功").put("data", bumenpeixunView);}/*** 后端详情*/@RequestMapping("/info/{id}")public R info(@PathVariable("id") Long id){BumenpeixunEntity bumenpeixun = bumenpeixunService.selectById(id);return R.ok().put("data", bumenpeixun);}/*** 前端详情*/@IgnoreAuth@RequestMapping("/detail/{id}")public R detail(@PathVariable("id") Long id){BumenpeixunEntity bumenpeixun = bumenpeixunService.selectById(id);return R.ok().put("data", bumenpeixun);}/*** 后端保存*/@RequestMapping("/save")public R save(@RequestBody BumenpeixunEntity bumenpeixun, HttpServletRequest request){bumenpeixun.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());//ValidatorUtils.validateEntity(bumenpeixun);bumenpeixunService.insert(bumenpeixun);return R.ok();}/*** 前端保存*/@RequestMapping("/add")public R add(@RequestBody BumenpeixunEntity bumenpeixun, HttpServletRequest request){bumenpeixun.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());//ValidatorUtils.validateEntity(bumenpeixun);bumenpeixunService.insert(bumenpeixun);return R.ok();}/*** 修改*/@RequestMapping("/update")public R update(@RequestBody BumenpeixunEntity bumenpeixun, HttpServletRequest request){//ValidatorUtils.validateEntity(bumenpeixun);bumenpeixunService.updateById(bumenpeixun);//全部更新return R.ok();}/*** 删除*/@RequestMapping("/delete")public R delete(@RequestBody Long[] ids){bumenpeixunService.deleteBatchIds(Arrays.asList(ids));return R.ok();}/*** 提醒接口*/@RequestMapping("/remind/{columnName}/{type}")public R remindCount(@PathVariable("columnName") String columnName, HttpServletRequest request, @PathVariable("type") String type,@RequestParam Map<String, Object> map) {map.put("column", columnName);map.put("type", type);if(type.equals("2")) {SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");Calendar c = Calendar.getInstance();Date remindStartDate = null;Date remindEndDate = null;if(map.get("remindstart")!=null) {Integer remindStart = Integer.parseInt(map.get("remindstart").toString());c.setTime(new Date()); c.add(Calendar.DAY_OF_MONTH,remindStart);remindStartDate = c.getTime();map.put("remindstart", sdf.format(remindStartDate));}if(map.get("remindend")!=null) {Integer remindEnd = Integer.parseInt(map.get("remindend").toString());c.setTime(new Date());c.add(Calendar.DAY_OF_MONTH,remindEnd);remindEndDate = c.getTime();map.put("remindend", sdf.format(remindEndDate));}}Wrapper<BumenpeixunEntity> wrapper = new EntityWrapper<BumenpeixunEntity>();if(map.get("remindstart")!=null) {wrapper.ge(columnName, map.get("remindstart"));}if(map.get("remindend")!=null) {wrapper.le(columnName, map.get("remindend"));}int count = bumenpeixunService.selectCount(wrapper);return R.ok().put("count", count);}
}
八、技术交流
大家点赞、收藏、关注、评论啦 、查看文章结尾👇🏻获取联系方式👇🏻
精彩专栏推荐订阅:在下方专栏👇🏻👇🏻👇🏻👇🏻
Java项目精品实战案例(300套)