革新人事系统,助力企业高效管理

发表时间: 2024-07-06 12:34

项目介绍

本基于vue的人事系统有管理员和员工两个角色。

管理员功能有个人中心,部门信息管理,员工信息管理,考勤信息管理,上班记录管理,下班记录管理,加班记录管理,员工薪酬管理等。

员工功能有个人中心,考勤信息管理,上班记录管理,下班记录管理,加班记录管理,员工薪酬管理等

环境要求

1.运行环境:最好是java jdk1.8,我们在这个平台上运行的。其他版本理论上也可以。

2.IDE环境:IDEA,Eclipse,Myeclipse都可以。推荐IDEA;

3.tomcat环境:Tomcat7.x,8.X,9.x版本均可

4.硬件环境:windows7/8/10 4G内存以上;或者Mac OS;

5.是否Maven项目:是;查看源码目录中是否包含pom.xml;若包含,则为maven项目,否则为非maven.项目

6.数据库:MySql5.7/8.0等版本均可;

技术栈

运行环境:jdk8 + tomcat9 + mysql5.7 + windows10

服务端技术:SpringBoot + MyBatis + Vue + Bootstrap + jQuery

使用说明

1.使用Navicati或者其它工具,在mysql中创建对应sq文件名称的数据库,并导入项目的sql文件;

2.使用IDEA/Eclipse/MyEclipse导入项目,修改配置,运行项目;

3.将项目中config-propertiesi配置文件中的数据库配置改为自己的配置,然后运行;

运行指导

idea导入源码空间站顶目教程说明(Vindows版)-ssm篇:

http://mtw.so/5MHvZq

源码地址:http://codegym.top

运行截图

文档截图

项目截图

代码

package com.server.api.controller;

import com.server.api.common.BaseController;
import com.server.api.common.ReturnMsg;
import com.server.api.dto.PhysicalTypeDTO;
import com.server.api.service.PhysicalTypeService;
import org.springframework.web.bind.annotation.*;
import org.springframework.web.multipart.MultipartFile;

import javax.annotation.Resource;
import java.io.IOException;
import org.springframework.beans.factory.annotation.Autowired;
import java.util.ArrayList;
import java.util.List;
import com.server.api.common.BaseSelectEntity;
import cn.hutool.core.collection.CollectionUtil;

/**
* @Description: 体质分类管理对外接口层
* @Author: wuming
*/
@RestController
@RequestMapping("/physicalType")
public class PhysicalTypeController extends BaseController<PhysicalTypeService, PhysicalTypeDTO> {

@Override
@Resource(name = "physicalTypeService")
protected void setBaseService(PhysicalTypeService physicalTypeService) {
this.baseService = physicalTypeService;
}

/**
* 默认分页查询
* @param physicalTypeDTO
* @return
* @throws IOException
*/
@PostMapping("/page")
public ReturnMsg page(@RequestBody PhysicalTypeDTO physicalTypeDTO) {
return ReturnMsg.ok(baseService.basePage(physicalTypeDTO));
}


}