Skip to content

ShashankSinha9592/Human_Resource_Management_System

Repository files navigation

Human_Resource_Management_System

This is a human resource management system where admin can manage everything between employees and departments

Work Flow diagram

Presentation_Img

Database Schema

Screenshot (35)

Admin login details are hardcoded

Admin email : admin@123.com

Admin password : admin

To Run this application first create a database in my sql

Change db.password and db.username in DBdetail.properties file according to ur mysql username and password

Next follow these steps in your mysql and copy paste these queries

1) create database humanresource;

2) use humanresource;

3) create table Department(did int PRIMARY KEY AUTO_INCREMENT, dname varchar(20), location varchar(20));

4) create table Employee(eid int PRIMARY KEY AUTO_INCREMENT, ename varchar(20), email varchar(50) not null, password varchar(15) not null, deptid int , empLeave varchar(15) , FOREIGN KEY(deptid) REFERENCES Department(did));

Now go to the usecase folder and run the application from main file

About

A system service which provides solution in handling and managing the data between employees and department .

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages