Project Proposal

You might also like

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 3

Employe Salary Structure

Names
Aamir Shahzad
SP21-BCS-001
Abdul Haseeb
SP21-BCS-002
Abdul Rahman
SP21-BCS-003
Ali Nawaz
SP21-BCS-52
1

Overview

The employee salary management software designed to streamline and organize


key aspects of payroll and compensation within an organization. Its primary goals
are to efficiently manage employee information, facilitate dynamic adjustments in
salary structures, and provide insightful reporting for informed decision-making.

Database Schema Description:


2

Employee Table:
● EmployeeID (Primary Key)
● Name
● DepartmentID (Foreign Key referencing Department Table)
● ResignationDate
Department Table:
● DepartmentID (Primary Key)
● DepartmentName
Grade Table:
● GradeID (Primary Key)
● GradeName
● BasicSalary
Allowances Table:
● AllowanceID (Primary Key)
● AllowanceName
● Amount
Employee_Grade Table (to represent the relationship between employees and their
grades):
● EmployeeID (Foreign Key referencing Employee Table)
● GradeID (Foreign Key referencing Grade Table)
Employee_Allowances Table (to represent the relationship between employees and
their allowances):
● EmployeeID (Foreign Key referencing Employee Table)
● AllowanceID (Foreign Key referencing Allowances Table)
Deductions Table:
● DeductionID (Primary Key)
● DeductionName
● Amount
Employee_Deductions Table (to represent the relationship between employees and
their deductions):
● EmployeeID (Foreign Key referencing Employee Table)
● DeductionID (Foreign Key referencing Deductions Table)

You might also like