Creation of a simple web application

1. Database design and creation

1.1. Database system

entities, attributes, relationships

Insert image description here

Insert image description here

员工表:“员工编号”、员工姓名、出生日期、“岗位编号”;
岗位表:“岗位编号”、岗位名称、岗位级别、岗位职责;(做了修改)
部门表:“部门编号”、岗位名称、办公地点;
调岗表:“员工编号”、“岗位编号”、起始时间、结束时间;


Employee Table: "Employee ID", Employee Name, Date of Birth;
Position Table: "Position ID", Position Name, Position Level, Job Responsibilities;
Department Table: "Department ID", Position Name, Office Location;
Job Transfer Table: "Employee ID", "Position ID", Start Time, End Time;

1.2、Navicat Premium

a brief introdction

1.3、Power Designer

a brief introdction

2. Use maven to create a SpringBoot project

2.1. Configure maven

2.2. Install idea

2.3. Use idea to create a maven project

2.4. Configure the pom.xml file and configure project startup-related files as needed.

2.5. Write the SpringBoot project startup file

2.6. Divide the project hierarchy, and then use mybatiscodehelper to generate code for other layers except the controller layer.

3. Front-end project creation

3.1 Create a project using vue

Guess you like

Origin blog.csdn.net/weixin_42797483/article/details/132475372