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

基于springboot的勤工助学系统

介绍 评论 失效链接反馈

【例子介绍】基于springboot的勤工助学系统

【相关图片】

from clipboard

from clipboardfrom clipboardfrom clipboardfrom clipboard

【源码结构】.
├── work-master
│   ├── HELP.md
│   ├── LICENSE
│   ├── README.md
│   ├── WEB-INF
│   │   └── web.xml
│   ├── db
│   │   ├── table.sql
│   │   └── table_change.sql
│   ├── out
│   │   └── artifacts
│   │       └── work_Web_exploded
│   │           ├── META-INF
│   │           │   └── MANIFEST.MF
│   │           ├── WEB-INF
│   │           │   ├── classes
│   │           │   │   ├── application.yml
│   │           │   │   ├── com
│   │           │   │   │   └── student
│   │           │   │   │       └── work
│   │           │   │   │           ├── WorkApplication.class
│   │           │   │   │           ├── common
│   │           │   │   │           │   ├── BaseResponse.class
│   │           │   │   │           │   └── ResultCodeEnum.class
│   │           │   │   │           ├── controller
│   │           │   │   │           │   ├── JobController.class
│   │           │   │   │           │   └── UserController.class
│   │           │   │   │           ├── mapper
│   │           │   │   │           │   ├── JobApplicationMapper.class
│   │           │   │   │           │   ├── JobInfoMapper.class
│   │           │   │   │           │   ├── UserAttendanceMapper.class
│   │           │   │   │           │   ├── UserProfileMapper.class
│   │           │   │   │           │   ├── UserRegisterInfoMapper.class
│   │           │   │   │           │   └── UserSalaryDetailMapper.class
│   │           │   │   │           ├── model
│   │           │   │   │           │   ├── JobApplication.class
│   │           │   │   │           │   ├── JobInfo.class
│   │           │   │   │           │   ├── UserAttendance.class
│   │           │   │   │           │   ├── UserProfile.class
│   │           │   │   │           │   ├── UserRegisterInfo.class
│   │           │   │   │           │   └── UserSalaryDetail.class
│   │           │   │   │           ├── service
│   │           │   │   │           │   ├── JobService.class
│   │           │   │   │           │   ├── UserService.class
│   │           │   │   │           │   └── impl
│   │           │   │   │           │       ├── JobServiceImpl.class
│   │           │   │   │           │       └── UserServiceImpl.class
│   │           │   │   │           └── utils
│   │           │   │   │               └── TimeUtils.class
│   │           │   │   ├── logback-spring.xml
│   │           │   │   ├── mybatis
│   │           │   │   │   ├── JobApplicationMapper.xml
│   │           │   │   │   ├── JobInfoMapper.xml
│   │           │   │   │   ├── UserAttendanceMapper.xml
│   │           │   │   │   ├── UserProfileMapper.xml
│   │           │   │   │   ├── UserRegisterInfoMapper.xml
│   │           │   │   │   └── UserSalaryDetailMapper.xml
│   │           │   │   ├── mybatisGenerator.xml
│   │           │   │   └── static
│   │           │   │       ├── create-resume.html
│   │           │   │       ├── css
│   │           │   │       │   ├── bootstrap.min.css
│   │           │   │       │   ├── fontawesome.css
│   │           │   │       │   ├── materialdesignicons.min.css
│   │           │   │       │   ├── nice-select.css
│   │           │   │       │   ├── owl.carousel.css
│   │           │   │       │   ├── owl.theme.css
│   │           │   │       │   ├── owl.transitions.css
│   │           │   │       │   ├── selectize.css
│   │           │   │       │   └── style.css
│   │           │   │       ├── faq.html
│   │           │   │       ├── fonts
│   │           │   │       │   ├── fa-solid-900.woff2
│   │           │   │       │   └── materialdesignicons-webfont.woff2
│   │           │   │       ├── images
│   │           │   │       │   ├── about.jpg
│   │           │   │       │   ├── app-download-img.png
│   │           │   │       │   ├── apple.png
│   │           │   │       │   ├── bg-counters.jpg
│   │           │   │       │   ├── bg-home.jpg
│   │           │   │       │   ├── bg-page-header.jpg
│   │           │   │       │   ├── blog-details-img.jpg
│   │           │   │       │   ├── counter-bg.jpg
│   │           │   │       │   ├── cta-bg.jpg
│   │           │   │       │   ├── google.png
│   │           │   │       │   ├── logo-dark.png
│   │           │   │       │   ├── logo-light.png
│   │           │   │       │   └── user.jpg
│   │           │   │       ├── index.html
│   │           │   │       ├── job-details.html
│   │           │   │       ├── job-list.html
│   │           │   │       ├── job-manager.html
│   │           │   │       ├── js
│   │           │   │       │   ├── app.js
│   │           │   │       │   ├── bootstrap.bundle.min.js
│   │           │   │       │   ├── contact.js
│   │           │   │       │   ├── counter.int.js
│   │           │   │       │   ├── create-resume.js
│   │           │   │       │   ├── header-user.js
│   │           │   │       │   ├── home.js
│   │           │   │       │   ├── index.js
│   │           │   │       │   ├── job-details.js
│   │           │   │       │   ├── job-list.js
│   │           │   │       │   ├── job-manager.js
│   │           │   │       │   ├── jquery.easing.min.js
│   │           │   │       │   ├── jquery.min.js
│   │           │   │       │   ├── jquery.nice-select.min.js
│   │           │   │       │   ├── js.cookie.js
│   │           │   │       │   ├── login.js
│   │           │   │       │   ├── my-apply.js
│   │           │   │       │   ├── my-attendance.js
│   │           │   │       │   ├── my-employ.js
│   │           │   │       │   ├── my-job.js
│   │           │   │       │   ├── my-publish.js
│   │           │   │       │   ├── my-salary.js
│   │           │   │       │   ├── my-staff.js
│   │           │   │       │   ├── owl.carousel.min.js
│   │           │   │       │   ├── plugins.js
│   │           │   │       │   ├── post-a-job.js
│   │           │   │       │   ├── selectize.min.js
│   │           │   │       │   ├── signup.js
│   │           │   │       │   ├── user-manager.js
│   │           │   │       │   └── user-profile.js
│   │           │   │       ├── login.html
│   │           │   │       ├── my-apply.html
│   │           │   │       ├── my-attendance.html
│   │           │   │       ├── my-employ.html
│   │           │   │       ├── my-job.html
│   │           │   │       ├── my-publish.html
│   │           │   │       ├── my-salary.html
│   │           │   │       ├── my-staff.html
│   │           │   │       ├── post-a-job.html
│   │           │   │       ├── signup.html
│   │           │   │       ├── user-manager.html
│   │           │   │       └── user-profile.html
│   │           │   └── web.xml
│   │           └── web.xml
│   ├── pom.xml
│   ├── src
│   │   ├── main
│   │   │   ├── java
│   │   │   │   └── com
│   │   │   │       └── student
│   │   │   │           └── work
│   │   │   │               ├── WorkApplication.java
│   │   │   │               ├── common
│   │   │   │               │   ├── BaseResponse.java
│   │   │   │               │   └── ResultCodeEnum.java
│   │   │   │               ├── controller
│   │   │   │               │   ├── JobController.java
│   │   │   │               │   └── UserController.java
│   │   │   │               ├── mapper
│   │   │   │               │   ├── JobApplicationMapper.java
│   │   │   │               │   ├── JobInfoMapper.java
│   │   │   │               │   ├── UserAttendanceMapper.java
│   │   │   │               │   ├── UserProfileMapper.java
│   │   │   │               │   ├── UserRegisterInfoMapper.java
│   │   │   │               │   └── UserSalaryDetailMapper.java
│   │   │   │               ├── model
│   │   │   │               │   ├── JobApplication.java
│   │   │   │               │   ├── JobInfo.java
│   │   │   │               │   ├── UserAttendance.java
│   │   │   │               │   ├── UserProfile.java
│   │   │   │               │   ├── UserRegisterInfo.java
│   │   │   │               │   └── UserSalaryDetail.java
│   │   │   │               ├── service
│   │   │   │               │   ├── JobService.java
│   │   │   │               │   ├── UserService.java
│   │   │   │               │   └── impl
│   │   │   │               │       ├── JobServiceImpl.java
│   │   │   │               │       └── UserServiceImpl.java
│   │   │   │               └── utils
│   │   │   │                   └── TimeUtils.java
│   │   │   └── resources
│   │   │       ├── application.yml
│   │   │       ├── logback-spring.xml
│   │   │       ├── mybatis
│   │   │       │   ├── JobApplicationMapper.xml
│   │   │       │   ├── JobInfoMapper.xml
│   │   │       │   ├── UserAttendanceMapper.xml
│   │   │       │   ├── UserProfileMapper.xml
│   │   │       │   ├── UserRegisterInfoMapper.xml
│   │   │       │   └── UserSalaryDetailMapper.xml
│   │   │       ├── mybatisGenerator.xml
│   │   │       └── static
│   │   │           ├── create-resume.html
│   │   │           ├── css
│   │   │           │   ├── bootstrap.min.css
│   │   │           │   ├── fontawesome.css
│   │   │           │   ├── materialdesignicons.min.css
│   │   │           │   ├── nice-select.css
│   │   │           │   ├── owl.carousel.css
│   │   │           │   ├── owl.theme.css
│   │   │           │   ├── owl.transitions.css
│   │   │           │   ├── selectize.css
│   │   │           │   └── style.css
│   │   │           ├── faq.html
│   │   │           ├── fonts
│   │   │           │   ├── fa-solid-900.woff2
│   │   │           │   └── materialdesignicons-webfont.woff2
│   │   │           ├── images
│   │   │           │   ├── about.jpg
│   │   │           │   ├── app-download-img.png
│   │   │           │   ├── apple.png
│   │   │           │   ├── bg-counters.jpg
│   │   │           │   ├── bg-home.jpg
│   │   │           │   ├── bg-page-header.jpg
│   │   │           │   ├── blog-details-img.jpg
│   │   │           │   ├── counter-bg.jpg
│   │   │           │   ├── cta-bg.jpg
│   │   │           │   ├── google.png
│   │   │           │   ├── logo-dark.png
│   │   │           │   ├── logo-light.png
│   │   │           │   └── user.jpg
│   │   │           ├── index.html
│   │   │           ├── job-details.html
│   │   │           ├── job-list.html
│   │   │           ├── job-manager.html
│   │   │           ├── js
│   │   │           │   ├── app.js
│   │   │           │   ├── bootstrap.bundle.min.js
│   │   │           │   ├── contact.js
│   │   │           │   ├── counter.int.js
│   │   │           │   ├── create-resume.js
│   │   │           │   ├── header-user.js
│   │   │           │   ├── home.js
│   │   │           │   ├── index.js
│   │   │           │   ├── job-details.js
│   │   │           │   ├── job-list.js
│   │   │           │   ├── job-manager.js
│   │   │           │   ├── jquery.easing.min.js
│   │   │           │   ├── jquery.min.js
│   │   │           │   ├── jquery.nice-select.min.js
│   │   │           │   ├── js.cookie.js
│   │   │           │   ├── login.js
│   │   │           │   ├── my-apply.js
│   │   │           │   ├── my-attendance.js
│   │   │           │   ├── my-employ.js
│   │   │           │   ├── my-job.js
│   │   │           │   ├── my-publish.js
│   │   │           │   ├── my-salary.js
│   │   │           │   ├── my-staff.js
│   │   │           │   ├── owl.carousel.min.js
│   │   │           │   ├── plugins.js
│   │   │           │   ├── post-a-job.js
│   │   │           │   ├── selectize.min.js
│   │   │           │   ├── signup.js
│   │   │           │   ├── user-manager.js
│   │   │           │   └── user-profile.js
│   │   │           ├── login.html
│   │   │           ├── my-apply.html
│   │   │           ├── my-attendance.html
│   │   │           ├── my-employ.html
│   │   │           ├── my-job.html
│   │   │           ├── my-publish.html
│   │   │           ├── my-salary.html
│   │   │           ├── my-staff.html
│   │   │           ├── post-a-job.html
│   │   │           ├── signup.html
│   │   │           ├── user-manager.html
│   │   │           └── user-profile.html
│   │   └── test
│   │       └── java
│   │           └── com
│   │               └── student
│   │                   └── work
│   │                       └── WorkApplicationTests.java
│   ├── target
│   │   ├── classes
│   │   │   ├── application.yml
│   │   │   ├── com
│   │   │   │   └── student
│   │   │   │       └── work
│   │   │   │           ├── WorkApplication.class
│   │   │   │           ├── common
│   │   │   │           │   ├── BaseResponse.class
│   │   │   │           │   └── ResultCodeEnum.class
│   │   │   │           ├── controller
│   │   │   │           │   ├── JobController.class
│   │   │   │           │   └── UserController.class
│   │   │   │           ├── mapper
│   │   │   │           │   ├── JobApplicationMapper.class
│   │   │   │           │   ├── JobInfoMapper.class
│   │   │   │           │   ├── UserAttendanceMapper.class
│   │   │   │           │   ├── UserProfileMapper.class
│   │   │   │           │   ├── UserRegisterInfoMapper.class
│   │   │   │           │   └── UserSalaryDetailMapper.class
│   │   │   │           ├── model
│   │   │   │           │   ├── JobApplication.class
│   │   │   │           │   ├── JobInfo.class
│   │   │   │           │   ├── UserAttendance.class
│   │   │   │           │   ├── UserProfile.class
│   │   │   │           │   ├── UserRegisterInfo.class
│   │   │   │           │   └── UserSalaryDetail.class
│   │   │   │           ├── service
│   │   │   │           │   ├── JobService.class
│   │   │   │           │   ├── UserService.class
│   │   │   │           │   └── impl
│   │   │   │           │       ├── JobServiceImpl.class
│   │   │   │           │       └── UserServiceImpl.class
│   │   │   │           └── utils
│   │   │   │               └── TimeUtils.class
│   │   │   ├── logback-spring.xml
│   │   │   ├── mybatis
│   │   │   │   ├── JobApplicationMapper.xml
│   │   │   │   ├── JobInfoMapper.xml
│   │   │   │   ├── UserAttendanceMapper.xml
│   │   │   │   ├── UserProfileMapper.xml
│   │   │   │   ├── UserRegisterInfoMapper.xml
│   │   │   │   └── UserSalaryDetailMapper.xml
│   │   │   ├── mybatisGenerator.xml
│   │   │   └── static
│   │   │       ├── create-resume.html
│   │   │       ├── css
│   │   │       │   ├── bootstrap.min.css
│   │   │       │   ├── fontawesome.css
│   │   │       │   ├── materialdesignicons.min.css
│   │   │       │   ├── nice-select.css
│   │   │       │   ├── owl.carousel.css
│   │   │       │   ├── owl.theme.css
│   │   │       │   ├── owl.transitions.css
│   │   │       │   ├── selectize.css
│   │   │       │   └── style.css
│   │   │       ├── faq.html
│   │   │       ├── fonts
│   │   │       │   ├── fa-solid-900.woff2
│   │   │       │   └── materialdesignicons-webfont.woff2
│   │   │       ├── images
│   │   │       │   ├── about.jpg
│   │   │       │   ├── app-download-img.png
│   │   │       │   ├── apple.png
│   │   │       │   ├── bg-counters.jpg
│   │   │       │   ├── bg-home.jpg
│   │   │       │   ├── bg-page-header.jpg
│   │   │       │   ├── blog-details-img.jpg
│   │   │       │   ├── counter-bg.jpg
│   │   │       │   ├── cta-bg.jpg
│   │   │       │   ├── google.png
│   │   │       │   ├── logo-dark.png
│   │   │       │   ├── logo-light.png
│   │   │       │   └── user.jpg
│   │   │       ├── index.html
│   │   │       ├── job-details.html
│   │   │       ├── job-list.html
│   │   │       ├── job-manager.html
│   │   │       ├── js
│   │   │       │   ├── app.js
│   │   │       │   ├── bootstrap.bundle.min.js
│   │   │       │   ├── contact.js
│   │   │       │   ├── counter.int.js
│   │   │       │   ├── create-resume.js
│   │   │       │   ├── header-user.js
│   │   │       │   ├── home.js
│   │   │       │   ├── index.js
│   │   │       │   ├── job-details.js
│   │   │       │   ├── job-list.js
│   │   │       │   ├── job-manager.js
│   │   │       │   ├── jquery.easing.min.js
│   │   │       │   ├── jquery.min.js
│   │   │       │   ├── jquery.nice-select.min.js
│   │   │       │   ├── js.cookie.js
│   │   │       │   ├── login.js
│   │   │       │   ├── my-apply.js
│   │   │       │   ├── my-attendance.js
│   │   │       │   ├── my-employ.js
│   │   │       │   ├── my-job.js
│   │   │       │   ├── my-publish.js
│   │   │       │   ├── my-salary.js
│   │   │       │   ├── my-staff.js
│   │   │       │   ├── owl.carousel.min.js
│   │   │       │   ├── plugins.js
│   │   │       │   ├── post-a-job.js
│   │   │       │   ├── selectize.min.js
│   │   │       │   ├── signup.js
│   │   │       │   ├── user-manager.js
│   │   │       │   └── user-profile.js
│   │   │       ├── login.html
│   │   │       ├── my-apply.html
│   │   │       ├── my-attendance.html
│   │   │       ├── my-employ.html
│   │   │       ├── my-job.html
│   │   │       ├── my-publish.html
│   │   │       ├── my-salary.html
│   │   │       ├── my-staff.html
│   │   │       ├── post-a-job.html
│   │   │       ├── signup.html
│   │   │       ├── user-manager.html
│   │   │       └── user-profile.html
│   │   ├── generated-sources
│   │   │   └── annotations
│   │   ├── generated-test-sources
│   │   │   └── test-annotations
│   │   └── test-classes
│   │       └── com
│   │           └── student
│   │               └── work
│   │                   └── WorkApplicationTests.class
│   └── work.iml
└── 基于springboot的勤工助学系统_work-master.rar

76 directories, 323 files

下载声明:

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

评论

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


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

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