【例子介绍】员工工资管理系统
数据库小学期,一个数据库表的增删改查,使用springboot mybatis mysql thyleaf
【相关图片】
登录界面
主界面
【源码结构】
.
├── staffsalar
│ ├── pom.xml
│ ├── src
│ │ ├── main
│ │ │ ├── java
│ │ │ │ └── com
│ │ │ │ └── ya
│ │ │ │ ├── StaffsalarApplication.java
│ │ │ │ ├── config
│ │ │ │ │ ├── LoginHandlerInterceptor.java
│ │ │ │ │ └── MyMvcConfig.java
│ │ │ │ ├── controller
│ │ │ │ │ ├── DepartmentController.java
│ │ │ │ │ ├── EmployeeController.java
│ │ │ │ │ ├── IndexController.java
│ │ │ │ │ ├── LoginController.java
│ │ │ │ │ └── UserController.java
│ │ │ │ ├── mapper
│ │ │ │ │ ├── DepartmentMapper.java
│ │ │ │ │ ├── EmployeeMapper.java
│ │ │ │ │ └── UserMapper.java
│ │ │ │ └── pojo
│ │ │ │ ├── Department.java
│ │ │ │ ├── Employee.java
│ │ │ │ └── User.java
│ │ │ └── resources
│ │ │ ├── application.properties
│ │ │ ├── mybatis
│ │ │ │ ├── DepartmentMapper.xml
│ │ │ │ ├── EmployeeMapper.xml
│ │ │ │ └── UserMapper.xml
│ │ │ ├── public
│ │ │ ├── static
│ │ │ │ ├── css
│ │ │ │ │ ├── bootstrap.min.css
│ │ │ │ │ ├── dashboard.css
│ │ │ │ │ └── signin.css
│ │ │ │ ├── img
│ │ │ │ │ └── bootstrap-solid.svg
│ │ │ │ └── js
│ │ │ │ ├── Chart.min.js
│ │ │ │ ├── bootstrap.min.js
│ │ │ │ ├── feather.min.js
│ │ │ │ ├── jquery-3.2.1.slim.min.js
│ │ │ │ └── popper.min.js
│ │ │ └── templates
│ │ │ ├── commons
│ │ │ │ └── commons.html
│ │ │ ├── dashboard.html
│ │ │ ├── department
│ │ │ │ ├── departmentAdd.html
│ │ │ │ ├── departmentList.html
│ │ │ │ └── departmentUpdate.html
│ │ │ ├── employee
│ │ │ │ ├── employeeAdd.html
│ │ │ │ ├── employeeList.html
│ │ │ │ └── employeeUpdate.html
│ │ │ ├── error
│ │ │ │ └── 404.html
│ │ │ ├── index.html
│ │ │ └── list.html
│ │ └── test
│ │ └── java
│ │ └── com
│ │ └── ya
│ │ └── StaffsalarApplicationTests.java
│ ├── staffsalar.iml
│ └── target
│ ├── classes
│ │ ├── application.properties
│ │ ├── com
│ │ │ └── ya
│ │ │ ├── StaffsalarApplication.class
│ │ │ ├── config
│ │ │ │ ├── LoginHandlerInterceptor.class
│ │ │ │ └── MyMvcConfig.class
│ │ │ ├── controller
│ │ │ │ ├── DepartmentController.class
│ │ │ │ ├── EmployeeController.class
│ │ │ │ ├── IndexController.class
│ │ │ │ ├── LoginController.class
│ │ │ │ └── UserController.class
│ │ │ ├── mapper
│ │ │ │ ├── DepartmentMapper.class
│ │ │ │ ├── EmployeeMapper.class
│ │ │ │ └── UserMapper.class
│ │ │ └── pojo
│ │ │ ├── Department.class
│ │ │ ├── Employee.class
│ │ │ └── User.class
│ │ ├── mybatis
│ │ │ ├── DepartmentMapper.xml
│ │ │ ├── EmployeeMapper.xml
│ │ │ └── UserMapper.xml
│ │ ├── static
│ │ │ ├── css
│ │ │ │ ├── bootstrap.min.css
│ │ │ │ ├── dashboard.css
│ │ │ │ └── signin.css
│ │ │ ├── img
│ │ │ │ └── bootstrap-solid.svg
│ │ │ └── js
│ │ │ ├── Chart.min.js
│ │ │ ├── bootstrap.min.js
│ │ │ ├── feather.min.js
│ │ │ ├── jquery-3.2.1.slim.min.js
│ │ │ └── popper.min.js
│ │ └── templates
│ │ ├── commons
│ │ │ └── commons.html
│ │ ├── dashboard.html
│ │ ├── department
│ │ │ ├── departmentAdd.html
│ │ │ ├── departmentList.html
│ │ │ └── departmentUpdate.html
│ │ ├── employee
│ │ │ ├── employeeAdd.html
│ │ │ ├── employeeList.html
│ │ │ └── employeeUpdate.html
│ │ ├── error
│ │ │ └── 404.html
│ │ ├── index.html
│ │ └── list.html
│ ├── generated-sources
│ │ └── annotations
│ ├── generated-test-sources
│ │ └── test-annotations
│ ├── maven-status
│ │ └── maven-compiler-plugin
│ │ ├── compile
│ │ │ └── default-cli
│ │ │ ├── createdFiles.lst
│ │ │ └── inputFiles.lst
│ │ └── testCompile
│ │ └── default-cli
│ │ ├── createdFiles.lst
│ │ └── inputFiles.lst
│ └── test-classes
│ └── com
│ └── ya
│ └── StaffsalarApplicationTests.class
└── 员工工资管理系统.rar
57 directories, 85 files
评论