- Posted By: freeproject
- Comments: 0
Posted By freeproject on July 17, 2017
This ER (Entity Relationship) Diagram represents the model of RTO Registration System Entity. The entity-relationship diagram of RTO Registration System shows all the visual instrument of database tables and the relations between Registration, Payment, Vehicle, Customer etc. It used structure data and to define the relationships between structured data groups of RTO Registration System functionalities. The main entities of the RTO Registration System are Vehicle, Registration, Driving License, Payment, Insurance and Customer.
RTO Registration System entities and their attributes :
- Vehicle Entity : Attributes of Vehicle are vehicle_id, vehicle_customer_id, vehicle_number, vehicle_type, vehicle_description
- Registration Entity : Attributes of Registration are registration_id, registration_vehicle_id, registration_customer_id, registration_name, registration_type, registration_number, registration_date, registration_description
- Driving License Entity : Attributes of Driving License are license_id, license_name, license_type, license_description
- Payment Entity : Attributes of Payment are payment_id, payment_customer_id, payment_date, payment_amount, payment_description
- Insurance Entity : Attributes of Insurance are insurance_id, insurance_plan_id, insurance_number, insurance_issue_date, insurance_premium, insurance_amount, insurance_type, insurance_description
- Customer Entity : Attributes of Customer are customer_id, customer_name, customer_mobile, customer_email, customer_username, customer_password, customer_address
Description of RTO Registration System Database :
- The details of Vehicle is store into the Vehicle tables respective with all tables
- Each entity ( Customer, Driving License, Insurance, Registration, Vehicle) contains primary key and unique keys.
- The entity Driving License, Insurance has binded with Vehicle, Registration entities with foreign key
- There is one-to-one and one-to-many relationships available between Insurance, Payment, Customer, Vehicle
- All the entities Vehicle, Insurance, Driving License, Customer are normalized and reduce duplicacy of records
- We have implemented indexing on each tables of RTO Registration System tables for fast query execution.