【例子介绍】基于springboot的勤工助学系统
【相关图片】
【源码结构】.
├── 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
评论