欢迎来到传世资源网!
加载中...
正在加载,请耐心等待...
本站为收藏、学习站,如有侵权,请联系管理员删除!

员工工资管理系统

介绍 评论 失效链接反馈

【例子介绍】员工工资管理系统

数据库小学期,一个数据库表的增删改查,使用springboot mybatis mysql thyleaf

【相关图片】

登录界面

from clipboard

主界面

from clipboard部门管理界面

from clipboard工资管理界面

from clipboard

【源码结构】

.
├── 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

下载声明:

本站资源均有第三方用户自行上传分享推荐,非本站自制,仅供玩家做交流学习之用!切勿用于商业用途!游戏作品版权归原作者享有,如有版权问题,请附带版权证明至邮件,本平台将应您的要求删除。
相关推荐:

评论

发表评论必须先登陆, 您可以 登陆 或者 注册新账号 !


在线咨询: 问题反馈
客服QQ:174666394

有问题请留言,看到后及时答复