在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → 基于微信小程序的培训机构系统源码(微信小程序+后台Java).zip

基于微信小程序的培训机构系统源码(微信小程序+后台Java).zip

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:44.34M
  • 下载次数:34
  • 浏览次数:472
  • 发布时间:2020-11-04
  • 实例类别:一般编程问题
  • 发 布 人:robot666
  • 文件格式:.zip
  • 所需积分:2
 

实例介绍

【实例简介】
完整前后端代码:微信小程序端源代码+后台管理端以及小程序界面所需的接口源代码 博客地址:https://blog.csdn.net/qq_38285537/article/details/91056177
【实例截图】
【核心代码】
基于微信小程序的培训机构系统源码(微信小程序后台Java)
├── Java后台
│   ├── Examination_System
│   │   ├── pom.xml
│   │   ├── src
│   │   │   ├── main
│   │   │   │   ├── java
│   │   │   │   │   └── com
│   │   │   │   │   └── system
│   │   │   │   │   ├── controller
│   │   │   │   │   │   ├── AdminController.java
│   │   │   │   │   │   ├── converter
│   │   │   │   │   │   │   └── CustomDateConverter.java
│   │   │   │   │   │   ├── LoginController.java
│   │   │   │   │   │   ├── RegistController.java
│   │   │   │   │   │   ├── RestPasswordController.java
│   │   │   │   │   │   ├── StudentController.java
│   │   │   │   │   │   ├── TeacherController.java
│   │   │   │   │   │   ├── WxAdminController.java
│   │   │   │   │   │   ├── WxStudentController.java
│   │   │   │   │   │   └── WxTeacherController.java
│   │   │   │   │   ├── exception
│   │   │   │   │   │   ├── CustomException.java
│   │   │   │   │   │   └── CustomExceptionResolver.java
│   │   │   │   │   ├── mapper
│   │   │   │   │   │   ├── CollegeMapper.java
│   │   │   │   │   │   ├── CollegeMapper.xml
│   │   │   │   │   │   ├── CourseMapperCustom.java
│   │   │   │   │   │   ├── CourseMapperCustom.xml
│   │   │   │   │   │   ├── CourseMapper.java
│   │   │   │   │   │   ├── CourseMapper.xml
│   │   │   │   │   │   ├── RoleMapper.java
│   │   │   │   │   │   ├── RoleMapper.xml
│   │   │   │   │   │   ├── SelectedcourseMapper.java
│   │   │   │   │   │   ├── SelectedcourseMapper.xml
│   │   │   │   │   │   ├── StudentMapperCustom.java
│   │   │   │   │   │   ├── StudentMapperCustom.xml
│   │   │   │   │   │   ├── StudentMapper.java
│   │   │   │   │   │   ├── StudentMapper.xml
│   │   │   │   │   │   ├── TeacherMapperCustom.java
│   │   │   │   │   │   ├── TeacherMapperCustom.xml
│   │   │   │   │   │   ├── TeacherMapper.java
│   │   │   │   │   │   ├── TeacherMapper.xml
│   │   │   │   │   │   ├── UserloginMapperCustom.java
│   │   │   │   │   │   ├── UserloginMapperCustom.xml
│   │   │   │   │   │   ├── UserloginMapper.java
│   │   │   │   │   │   └── UserloginMapper.xml
│   │   │   │   │   ├── po
│   │   │   │   │   │   ├── Advice.java
│   │   │   │   │   │   ├── CollegeCustom.java
│   │   │   │   │   │   ├── CollegeExample.java
│   │   │   │   │   │   ├── College.java
│   │   │   │   │   │   ├── CourseCustom.java
│   │   │   │   │   │   ├── CourseExample.java
│   │   │   │   │   │   ├── Course.java
│   │   │   │   │   │   ├── PagingVO.java
│   │   │   │   │   │   ├── RoleExample.java
│   │   │   │   │   │   ├── Role.java
│   │   │   │   │   │   ├── SelectedCourseCustom.java
│   │   │   │   │   │   ├── SelectedcourseExample.java
│   │   │   │   │   │   ├── Selectedcourse.java
│   │   │   │   │   │   ├── StudentCustom.java
│   │   │   │   │   │   ├── StudentExample.java
│   │   │   │   │   │   ├── Student.java
│   │   │   │   │   │   ├── Teacher2.java
│   │   │   │   │   │   ├── TeacherCustom.java
│   │   │   │   │   │   ├── TeacherExample.java
│   │   │   │   │   │   ├── Teacher.java
│   │   │   │   │   │   ├── UserloginCustom.java
│   │   │   │   │   │   ├── UserloginExample.java
│   │   │   │   │   │   └── Userlogin.java
│   │   │   │   │   ├── realm
│   │   │   │   │   │   └── LoginRealm.java
│   │   │   │   │   └── service
│   │   │   │   │   ├── CollegeService.java
│   │   │   │   │   ├── CourseService.java
│   │   │   │   │   ├── impl
│   │   │   │   │   │   ├── CollegeServiceImpl.java
│   │   │   │   │   │   ├── CourseServiceImpl.java
│   │   │   │   │   │   ├── RoleServiceImpl.java
│   │   │   │   │   │   ├── SelectedCourseServiceImpl.java
│   │   │   │   │   │   ├── StudentServiceImpl.java
│   │   │   │   │   │   ├── TeacherServiceImpl.java
│   │   │   │   │   │   └── UserloginServiceImpl.java
│   │   │   │   │   ├── RoleService.java
│   │   │   │   │   ├── SelectedCourseService.java
│   │   │   │   │   ├── StudentService.java
│   │   │   │   │   ├── TeacherService.java
│   │   │   │   │   └── UserloginService.java
│   │   │   │   ├── resources
│   │   │   │   │   ├── jdbc.properties
│   │   │   │   │   ├── log4j.properties
│   │   │   │   │   ├── mybatis
│   │   │   │   │   │   └── mybatis.cfg.xml
│   │   │   │   │   └── spring
│   │   │   │   │   ├── applicationContext-dao.xml
│   │   │   │   │   ├── applicationContext-service.xml
│   │   │   │   │   ├── applicationContext-shiro.xml
│   │   │   │   │   ├── applicationContext-trsaction.xml
│   │   │   │   │   └── springmvc.xml
│   │   │   │   └── webapp
│   │   │   │   ├── css
│   │   │   │   │   ├── bootstrap.css
│   │   │   │   │   ├── bootstrap.min.css
│   │   │   │   │   ├── bootstrap-theme.css
│   │   │   │   │   └── bootstrap-theme.min.css
│   │   │   │   ├── fonts
│   │   │   │   │   ├── glyphicons-halflings-regular.eot
│   │   │   │   │   ├── glyphicons-halflings-regular.svg
│   │   │   │   │   ├── glyphicons-halflings-regular.ttf
│   │   │   │   │   ├── glyphicons-halflings-regular.woff
│   │   │   │   │   └── glyphicons-halflings-regular.woff2
│   │   │   │   ├── images
│   │   │   │   │   └── 1.jpg
│   │   │   │   ├── js
│   │   │   │   │   ├── bootstrap.js
│   │   │   │   │   ├── bootstrap.min.js
│   │   │   │   │   ├── jquery-3.2.1.min.js
│   │   │   │   │   ├── jquery.validate.min.js
│   │   │   │   │   ├── messages_zh.min.js
│   │   │   │   │   └── npm.js
│   │   │   │   └── WEB-INF
│   │   │   │   ├── jsp
│   │   │   │   │   ├── admin
│   │   │   │   │   │   ├── addCourse.jsp
│   │   │   │   │   │   ├── addStudent.jsp
│   │   │   │   │   │   ├── addTeacher.jsp
│   │   │   │   │   │   ├── editCourse.jsp
│   │   │   │   │   │   ├── editStudent.jsp
│   │   │   │   │   │   ├── editTeacher.jsp
│   │   │   │   │   │   ├── menu.jsp
│   │   │   │   │   │   ├── passwordRest.jsp
│   │   │   │   │   │   ├── showCourse.jsp
│   │   │   │   │   │   ├── showStudent.jsp
│   │   │   │   │   │   ├── showTeacher.jsp
│   │   │   │   │   │   ├── top.jsp
│   │   │   │   │   │   └── userPasswordRest.jsp
│   │   │   │   │   ├── error.jsp
│   │   │   │   │   ├── login.jsp
│   │   │   │   │   ├── registsuccess.jsp
│   │   │   │   │   ├── student
│   │   │   │   │   │   ├── menu.jsp
│   │   │   │   │   │   ├── overCourse.jsp
│   │   │   │   │   │   ├── passwordRest.jsp
│   │   │   │   │   │   ├── selectCourse.jsp
│   │   │   │   │   │   ├── showCourse.jsp
│   │   │   │   │   │   └── top.jsp
│   │   │   │   │   ├── success.jsp
│   │   │   │   │   └── teacher
│   │   │   │   │   ├── mark.jsp
│   │   │   │   │   ├── menu.jsp
│   │   │   │   │   ├── passwordRest.jsp
│   │   │   │   │   ├── showCourse.jsp
│   │   │   │   │   ├── showGrade.jsp
│   │   │   │   │   └── top.jsp
│   │   │   │   └── web.xml
│   │   │   └── test
│   │   │   └── test
│   │   │   └── com
│   │   │   └── system
│   │   │   ├── mapper
│   │   │   │   ├── CourseMapperCustomTest.java
│   │   │   │   ├── StudentMapperCustomTest.java
│   │   │   │   ├── StudentMapperTest.java
│   │   │   │   ├── TeacherMapperCustomTest.java
│   │   │   │   └── UserloginMapperCustomTest.java
│   │   │   └── service
│   │   │   └── impl
│   │   │   ├── CourseServiceImplTest.java
│   │   │   ├── SelectedCourseServiceImplTest.java
│   │   │   ├── StudentServiceImplTest.java
│   │   │   ├── TeacherServiceImplTest.java
│   │   │   └── UserloginServiceImplTest.java
│   │   └── target
│   │   ├── classes
│   │   │   ├── com
│   │   │   │   └── system
│   │   │   │   ├── controller
│   │   │   │   │   ├── AdminController.class
│   │   │   │   │   ├── converter
│   │   │   │   │   │   └── CustomDateConverter.class
│   │   │   │   │   ├── LoginController.class
│   │   │   │   │   ├── RegistController.class
│   │   │   │   │   ├── RestPasswordController.class
│   │   │   │   │   ├── StudentController.class
│   │   │   │   │   ├── TeacherController.class
│   │   │   │   │   ├── WxAdminController.class
│   │   │   │   │   ├── WxStudentController.class
│   │   │   │   │   └── WxTeacherController.class
│   │   │   │   ├── exception
│   │   │   │   │   ├── CustomException.class
│   │   │   │   │   └── CustomExceptionResolver.class
│   │   │   │   ├── mapper
│   │   │   │   │   ├── CollegeMapper.class
│   │   │   │   │   ├── CollegeMapper.xml
│   │   │   │   │   ├── CourseMapper.class
│   │   │   │   │   ├── CourseMapperCustom.class
│   │   │   │   │   ├── CourseMapperCustom.xml
│   │   │   │   │   ├── CourseMapper.xml
│   │   │   │   │   ├── RoleMapper.class
│   │   │   │   │   ├── RoleMapper.xml
│   │   │   │   │   ├── SelectedcourseMapper.class
│   │   │   │   │   ├── SelectedcourseMapper.xml
│   │   │   │   │   ├── StudentMapper.class
│   │   │   │   │   ├── StudentMapperCustom.class
│   │   │   │   │   ├── StudentMapperCustom.xml
│   │   │   │   │   ├── StudentMapper.xml
│   │   │   │   │   ├── TeacherMapper.class
│   │   │   │   │   ├── TeacherMapperCustom.class
│   │   │   │   │   ├── TeacherMapperCustom.xml
│   │   │   │   │   ├── TeacherMapper.xml
│   │   │   │   │   ├── UserloginMapper.class
│   │   │   │   │   ├── UserloginMapperCustom.class
│   │   │   │   │   ├── UserloginMapperCustom.xml
│   │   │   │   │   └── UserloginMapper.xml
│   │   │   │   ├── po
│   │   │   │   │   ├── Advice.class
│   │   │   │   │   ├── College.class
│   │   │   │   │   ├── CollegeCustom.class
│   │   │   │   │   ├── CollegeExample$Criteria.class
│   │   │   │   │   ├── CollegeExample$Criterion.class
│   │   │   │   │   ├── CollegeExample$GeneratedCriteria.class
│   │   │   │   │   ├── CollegeExample.class
│   │   │   │   │   ├── Course.class
│   │   │   │   │   ├── CourseCustom.class
│   │   │   │   │   ├── CourseExample$Criteria.class
│   │   │   │   │   ├── CourseExample$Criterion.class
│   │   │   │   │   ├── CourseExample$GeneratedCriteria.class
│   │   │   │   │   ├── CourseExample.class
│   │   │   │   │   ├── PagingVO.class
│   │   │   │   │   ├── Role.class
│   │   │   │   │   ├── RoleExample$Criteria.class
│   │   │   │   │   ├── RoleExample$Criterion.class
│   │   │   │   │   ├── RoleExample$GeneratedCriteria.class
│   │   │   │   │   ├── RoleExample.class
│   │   │   │   │   ├── Selectedcourse.class
│   │   │   │   │   ├── SelectedCourseCustom.class
│   │   │   │   │   ├── SelectedcourseExample$Criteria.class
│   │   │   │   │   ├── SelectedcourseExample$Criterion.class
│   │   │   │   │   ├── SelectedcourseExample$GeneratedCriteria.class
│   │   │   │   │   ├── SelectedcourseExample.class
│   │   │   │   │   ├── Student.class
│   │   │   │   │   ├── StudentCustom.class
│   │   │   │   │   ├── StudentExample$Criteria.class
│   │   │   │   │   ├── StudentExample$Criterion.class
│   │   │   │   │   ├── StudentExample$GeneratedCriteria.class
│   │   │   │   │   ├── StudentExample.class
│   │   │   │   │   ├── Teacher2.class
│   │   │   │   │   ├── Teacher.class
│   │   │   │   │   ├── TeacherCustom.class
│   │   │   │   │   ├── TeacherExample$Criteria.class
│   │   │   │   │   ├── TeacherExample$Criterion.class
│   │   │   │   │   ├── TeacherExample$GeneratedCriteria.class
│   │   │   │   │   ├── TeacherExample.class
│   │   │   │   │   ├── Userlogin.class
│   │   │   │   │   ├── UserloginCustom.class
│   │   │   │   │   ├── UserloginExample$Criteria.class
│   │   │   │   │   ├── UserloginExample$Criterion.class
│   │   │   │   │   ├── UserloginExample$GeneratedCriteria.class
│   │   │   │   │   └── UserloginExample.class
│   │   │   │   ├── realm
│   │   │   │   │   └── LoginRealm.class
│   │   │   │   └── service
│   │   │   │   ├── CollegeService.class
│   │   │   │   ├── CourseService.class
│   │   │   │   ├── impl
│   │   │   │   │   ├── CollegeServiceImpl.class
│   │   │   │   │   ├── CourseServiceImpl.class
│   │   │   │   │   ├── RoleServiceImpl.class
│   │   │   │   │   ├── SelectedCourseServiceImpl.class
│   │   │   │   │   ├── StudentServiceImpl.class
│   │   │   │   │   ├── TeacherServiceImpl.class
│   │   │   │   │   └── UserloginServiceImpl.class
│   │   │   │   ├── RoleService.class
│   │   │   │   ├── SelectedCourseService.class
│   │   │   │   ├── StudentService.class
│   │   │   │   ├── TeacherService.class
│   │   │   │   └── UserloginService.class
│   │   │   ├── jdbc.properties
│   │   │   ├── log4j.properties
│   │   │   ├── META-INF
│   │   │   │   └── Examination_System.kotlin_module
│   │   │   ├── mybatis
│   │   │   │   └── mybatis.cfg.xml
│   │   │   └── spring
│   │   │   ├── applicationContext-dao.xml
│   │   │   ├── applicationContext-service.xml
│   │   │   ├── applicationContext-shiro.xml
│   │   │   ├── applicationContext-trsaction.xml
│   │   │   └── springmvc.xml
│   │   ├── Examination_System
│   │   │   ├── css
│   │   │   │   ├── bootstrap.css
│   │   │   │   ├── bootstrap.min.css
│   │   │   │   ├── bootstrap-theme.css
│   │   │   │   └── bootstrap-theme.min.css
│   │   │   ├── fonts
│   │   │   │   ├── glyphicons-halflings-regular.eot
│   │   │   │   ├── glyphicons-halflings-regular.svg
│   │   │   │   ├── glyphicons-halflings-regular.ttf
│   │   │   │   ├── glyphicons-halflings-regular.woff
│   │   │   │   └── glyphicons-halflings-regular.woff2
│   │   │   ├── images
│   │   │   │   └── 1.jpg
│   │   │   ├── js
│   │   │   │   ├── bootstrap.js
│   │   │   │   ├── bootstrap.min.js
│   │   │   │   ├── jquery-3.2.1.min.js
│   │   │   │   ├── jquery.validate.min.js
│   │   │   │   ├── messages_zh.min.js
│   │   │   │   └── npm.js
│   │   │   ├── META-INF
│   │   │   │   └── MANIFEST.MF
│   │   │   └── WEB-INF
│   │   │   ├── classes
│   │   │   │   ├── com
│   │   │   │   │   └── system
│   │   │   │   │   ├── controller
│   │   │   │   │   │   ├── AdminController.class
│   │   │   │   │   │   ├── converter
│   │   │   │   │   │   │   └── CustomDateConverter.class
│   │   │   │   │   │   ├── LoginController.class
│   │   │   │   │   │   ├── RegistController.class
│   │   │   │   │   │   ├── RestPasswordController.class
│   │   │   │   │   │   ├── StudentController.class
│   │   │   │   │   │   ├── TeacherController.class
│   │   │   │   │   │   ├── WxAdminController.class
│   │   │   │   │   │   ├── WxStudentController.class
│   │   │   │   │   │   └── WxTeacherController.class
│   │   │   │   │   ├── exception
│   │   │   │   │   │   ├── CustomException.class
│   │   │   │   │   │   └── CustomExceptionResolver.class
│   │   │   │   │   ├── mapper
│   │   │   │   │   │   ├── CollegeMapper.class
│   │   │   │   │   │   ├── CollegeMapper.xml
│   │   │   │   │   │   ├── CourseMapper.class
│   │   │   │   │   │   ├── CourseMapperCustom.class
│   │   │   │   │   │   ├── CourseMapperCustom.xml
│   │   │   │   │   │   ├── CourseMapper.xml
│   │   │   │   │   │   ├── RoleMapper.class
│   │   │   │   │   │   ├── RoleMapper.xml
│   │   │   │   │   │   ├── SelectedcourseMapper.class
│   │   │   │   │   │   ├── SelectedcourseMapper.xml
│   │   │   │   │   │   ├── StudentMapper.class
│   │   │   │   │   │   ├── StudentMapperCustom.class
│   │   │   │   │   │   ├── StudentMapperCustom.xml
│   │   │   │   │   │   ├── StudentMapper.xml
│   │   │   │   │   │   ├── TeacherMapper.class
│   │   │   │   │   │   ├── TeacherMapperCustom.class
│   │   │   │   │   │   ├── TeacherMapperCustom.xml
│   │   │   │   │   │   ├── TeacherMapper.xml
│   │   │   │   │   │   ├── UserloginMapper.class
│   │   │   │   │   │   ├── UserloginMapperCustom.class
│   │   │   │   │   │   ├── UserloginMapperCustom.xml
│   │   │   │   │   │   └── UserloginMapper.xml
│   │   │   │   │   ├── po
│   │   │   │   │   │   ├── Advice.class
│   │   │   │   │   │   ├── College.class
│   │   │   │   │   │   ├── CollegeCustom.class
│   │   │   │   │   │   ├── CollegeExample$Criteria.class
│   │   │   │   │   │   ├── CollegeExample$Criterion.class
│   │   │   │   │   │   ├── CollegeExample$GeneratedCriteria.class
│   │   │   │   │   │   ├── CollegeExample.class
│   │   │   │   │   │   ├── Course.class
│   │   │   │   │   │   ├── CourseCustom.class
│   │   │   │   │   │   ├── CourseExample$Criteria.class
│   │   │   │   │   │   ├── CourseExample$Criterion.class
│   │   │   │   │   │   ├── CourseExample$GeneratedCriteria.class
│   │   │   │   │   │   ├── CourseExample.class
│   │   │   │   │   │   ├── PagingVO.class
│   │   │   │   │   │   ├── Role.class
│   │   │   │   │   │   ├── RoleExample$Criteria.class
│   │   │   │   │   │   ├── RoleExample$Criterion.class
│   │   │   │   │   │   ├── RoleExample$GeneratedCriteria.class
│   │   │   │   │   │   ├── RoleExample.class
│   │   │   │   │   │   ├── Selectedcourse.class
│   │   │   │   │   │   ├── SelectedCourseCustom.class
│   │   │   │   │   │   ├── SelectedcourseExample$Criteria.class
│   │   │   │   │   │   ├── SelectedcourseExample$Criterion.class
│   │   │   │   │   │   ├── SelectedcourseExample$GeneratedCriteria.class
│   │   │   │   │   │   ├── SelectedcourseExample.class
│   │   │   │   │   │   ├── Student.class
│   │   │   │   │   │   ├── StudentCustom.class
│   │   │   │   │   │   ├── StudentExample$Criteria.class
│   │   │   │   │   │   ├── StudentExample$Criterion.class
│   │   │   │   │   │   ├── StudentExample$GeneratedCriteria.class
│   │   │   │   │   │   ├── StudentExample.class
│   │   │   │   │   │   ├── Teacher2.class
│   │   │   │   │   │   ├── Teacher.class
│   │   │   │   │   │   ├── TeacherCustom.class
│   │   │   │   │   │   ├── TeacherExample$Criteria.class
│   │   │   │   │   │   ├── TeacherExample$Criterion.class
│   │   │   │   │   │   ├── TeacherExample$GeneratedCriteria.class
│   │   │   │   │   │   ├── TeacherExample.class
│   │   │   │   │   │   ├── Userlogin.class
│   │   │   │   │   │   ├── UserloginCustom.class
│   │   │   │   │   │   ├── UserloginExample$Criteria.class
│   │   │   │   │   │   ├── UserloginExample$Criterion.class
│   │   │   │   │   │   ├── UserloginExample$GeneratedCriteria.class
│   │   │   │   │   │   └── UserloginExample.class
│   │   │   │   │   ├── realm
│   │   │   │   │   │   └── LoginRealm.class
│   │   │   │   │   └── service
│   │   │   │   │   ├── CollegeService.class
│   │   │   │   │   ├── CourseService.class
│   │   │   │   │   ├── impl
│   │   │   │   │   │   ├── CollegeServiceImpl.class
│   │   │   │   │   │   ├── CourseServiceImpl.class
│   │   │   │   │   │   ├── RoleServiceImpl.class
│   │   │   │   │   │   ├── SelectedCourseServiceImpl.class
│   │   │   │   │   │   ├── StudentServiceImpl.class
│   │   │   │   │   │   ├── TeacherServiceImpl.class
│   │   │   │   │   │   └── UserloginServiceImpl.class
│   │   │   │   │   ├── RoleService.class
│   │   │   │   │   ├── SelectedCourseService.class
│   │   │   │   │   ├── StudentService.class
│   │   │   │   │   ├── TeacherService.class
│   │   │   │   │   └── UserloginService.class
│   │   │   │   ├── jdbc.properties
│   │   │   │   ├── log4j.properties
│   │   │   │   ├── META-INF
│   │   │   │   │   └── Examination_System.kotlin_module
│   │   │   │   ├── mybatis
│   │   │   │   │   └── mybatis.cfg.xml
│   │   │   │   └── spring
│   │   │   │   ├── applicationContext-dao.xml
│   │   │   │   ├── applicationContext-service.xml
│   │   │   │   ├── applicationContext-shiro.xml
│   │   │   │   ├── applicationContext-trsaction.xml
│   │   │   │   └── springmvc.xml
│   │   │   ├── jsp
│   │   │   │   ├── admin
│   │   │   │   │   ├── addCourse.jsp
│   │   │   │   │   ├── addStudent.jsp
│   │   │   │   │   ├── addTeacher.jsp
│   │   │   │   │   ├── editCourse.jsp
│   │   │   │   │   ├── editStudent.jsp
│   │   │   │   │   ├── editTeacher.jsp
│   │   │   │   │   ├── menu.jsp
│   │   │   │   │   ├── passwordRest.jsp
│   │   │   │   │   ├── showCourse.jsp
│   │   │   │   │   ├── showStudent.jsp
│   │   │   │   │   ├── showTeacher.jsp
│   │   │   │   │   ├── top.jsp
│   │   │   │   │   └── userPasswordRest.jsp
│   │   │   │   ├── error.jsp
│   │   │   │   ├── login.jsp
│   │   │   │   ├── registsuccess.jsp
│   │   │   │   ├── student
│   │   │   │   │   ├── menu.jsp
│   │   │   │   │   ├── overCourse.jsp
│   │   │   │   │   ├── passwordRest.jsp
│   │   │   │   │   ├── selectCourse.jsp
│   │   │   │   │   ├── showCourse.jsp
│   │   │   │   │   └── top.jsp
│   │   │   │   ├── success.jsp
│   │   │   │   └── teacher
│   │   │   │   ├── mark.jsp
│   │   │   │   ├── menu.jsp
│   │   │   │   ├── passwordRest.jsp
│   │   │   │   ├── showCourse.jsp
│   │   │   │   ├── showGrade.jsp
│   │   │   │   └── top.jsp
│   │   │   ├── lib
│   │   │   │   ├── annotations-java5-17.0.0.jar
│   │   │   │   ├── aspectjweaver-1.8.10.jar
│   │   │   │   ├── c3p0-0.9.5.2.jar
│   │   │   │   ├── classmate-1.3.1.jar
│   │   │   │   ├── commons-beanutils-1.8.3.jar
│   │   │   │   ├── commons-collections-3.2.1.jar
│   │   │   │   ├── commons-lang-2.5.jar
│   │   │   │   ├── commons-logging-1.1.1.jar
│   │   │   │   ├── ezmorph-1.0.6.jar
│   │   │   │   ├── hibernate-validator-5.4.1.Final.jar
│   │   │   │   ├── jackson-annotations-2.8.9.jar
│   │   │   │   ├── jackson-core-2.5.4.jar
│   │   │   │   ├── jackson-core-asl-1.9.2.jar
│   │   │   │   ├── jackson-databind-2.5.4.jar
│   │   │   │   ├── jackson-databind-2.9.3.jar
│   │   │   │   ├── jackson-mapper-asl-1.9.2.jar
│   │   │   │   ├── jboss-logging-3.3.0.Final.jar
│   │   │   │   ├── json-lib-2.4-jdk15.jar
│   │   │   │   ├── jstl-1.2.jar
│   │   │   │   ├── log4j-1.2.17.jar
│   │   │   │   ├── mchange-commons-java-0.2.11.jar
│   │   │   │   ├── mybatis-3.4.1.jar
│   │   │   │   ├── mybatis-generator-core-1.3.5.jar
│   │   │   │   ├── mybatis-spring-1.3.0.jar
│   │   │   │   ├── mysql-connector-java-5.1.41.jar
│   │   │   │   ├── shiro-core-1.2.4.jar
│   │   │   │   ├── shiro-spring-1.2.4.jar
│   │   │   │   ├── shiro-web-1.2.4.jar
│   │   │   │   ├── slf4j-api-1.6.4.jar
│   │   │   │   ├── spring-aop-4.3.9.RELEASE.jar
│   │   │   │   ├── spring-beans-4.3.8.RELEASE.jar
│   │   │   │   ├── spring-context-4.3.8.RELEASE.jar
│   │   │   │   ├── spring-core-4.3.8.RELEASE.jar
│   │   │   │   ├── spring-expression-4.3.8.RELEASE.jar
│   │   │   │   ├── spring-jdbc-4.2.5.RELEASE.jar
│   │   │   │   ├── spring-tx-4.3.8.RELEASE.jar
│   │   │   │   ├── spring-web-4.3.8.RELEASE.jar
│   │   │   │   ├── spring-webmvc-4.3.7.RELEASE.jar
│   │   │   │   └── validation-api-1.1.0.Final.jar
│   │   │   └── web.xml
│   │   ├── Examination_System.war
│   │   ├── m2e-wtp
│   │   │   └── web-resources
│   │   │   └── META-INF
│   │   │   └── MANIFEST.MF
│   │   ├── maven-archiver
│   │   │   └── pom.properties
│   │   └── maven-status
│   │   └── maven-compiler-plugin
│   │   ├── compile
│   │   │   └── default-compile
│   │   │   ├── createdFiles.lst
│   │   │   └── inputFiles.lst
│   │   └── testCompile
│   │   └── default-testCompile
│   │   └── inputFiles.lst
│   └── examination_system.sql
└── 微信小程序
└── wxapp-train-master
└── wxapp-training-master
├── app.js
├── app.json
├── app.wxss
├── config.js
├── image
│   ├── 001.png
│   ├── 002.png
│   ├── 004.png
│   ├── 005.png
│   ├── 006.png
│   ├── 0106arrow3x.png
│   ├── 3.png
│   ├── a1.png
│   ├── a2.png
│   ├── a3.png
│   ├── a4.png
│   ├── add1.png
│   ├── add2.png
│   ├── add3.png
│   ├── add4.png
│   ├── adminmanage.png
│   ├── android.jpg
│   ├── back.png
│   ├── bmactive.png
│   ├── bm.png
│   ├── C.jpg
│   ├── del1.png
│   ├── del2.png
│   ├── del3.png
│   ├── delresult.png
│   ├── edit1.png
│   ├── edit2.png
│   ├── edit3.png
│   ├── edit.png
│   ├── gywm.png
│   ├── homeactive.png
│   ├── home.png
│   ├── icon1.png
│   ├── icon2.png
│   ├── icon3.png
│   ├── icon4.png
│   ├── icon5.png
│   ├── icon6.png
│   ├── icon-address.png
│   ├── icon_API_HL.png
│   ├── icon_API.png
│   ├── icon-clock.png
│   ├── icon_component_HL.png
│   ├── icon_component.png
│   ├── icon-jt.png
│   ├── icon-phone.png
│   ├── icon-pic.png
│   ├── icon_product_HL.png
│   ├── icon_product.png
│   ├── indextel.png
│   ├── java1.jpg
│   ├── Java.jpg
│   ├── javascript.jpg
│   ├── kecheng1.png
│   ├── kecheng.png
│   ├── kefu.png
│   ├── list.png
│   ├── liucheng.png
│   ├── login1.png
│   ├── login2.png
│   ├── login.jpg
│   ├── logo.png
│   ├── lunbo1.jpg
│   ├── lunbo2.jpg
│   ├── lunbo3.jpg
│   ├── lxwm.png
│   ├── mima.png
│   ├── mine1.png
│   ├── mine.png
│   ├── net.jpg
│   ├── none.png
│   ├── p1.jpg
│   ├── p2.jpg
│   ├── p3.jpg
│   ├── p4.jpg
│   ├── photo.png
│   ├── python.jpg
│   ├── qiandao.png
│   ├── read.png
│   ├── right.png
│   ├── school.png
│   ├── seach.png
│   ├── shoucang.png
│   ├── shouye1.png
│   ├── shouye.png
│   ├── skd.jpg
│   ├── studentmanage.png
│   ├── szll.png
│   ├── t1.jpg
│   ├── t2.jpg
│   ├── t3.jpg
│   ├── t4.jpg
│   ├── t5.jpg
│   ├── t6.jpg
│   ├── t7.jpg
│   ├── tcxt.png
│   ├── teachermanage.png
│   ├── tel.png
│   ├── type1.png
│   ├── type.png
│   ├── usercount.png
│   ├── user.png
│   ├── Vue.jpg
│   ├── weizhi.png
│   ├── xueyuan1.png
│   ├── xueyuan.png
│   ├── xy1.jpg
│   ├── xy2.jpg
│   ├── xy3.jpg
│   ├── xy4.jpg
│   ├── xy.png
│   ├── yijan.png
│   ├── youhui.png
│   ├── yuyue.png
│   ├── zixun1.jpg
│   ├── zixun2.jpg
│   ├── zixun3.jpg
│   ├── zixun4.jpg
│   └── zixun.jpg
├── pages
│   ├── about
│   │   ├── about.js
│   │   ├── about.json
│   │   ├── about.wxml
│   │   └── about.wxss
│   ├── action
│   │   ├── action.js
│   │   ├── action.json
│   │   ├── action.wxml
│   │   └── action.wxss
│   ├── admin
│   │   ├── admin
│   │   │   ├── index.js
│   │   │   ├── index.json
│   │   │   ├── index.wxml
│   │   │   └── index.wxss
│   │   ├── courseadmin
│   │   │   ├── addcourse
│   │   │   │   ├── addcourse.js
│   │   │   │   ├── addcourse.json
│   │   │   │   ├── addcourse.wxml
│   │   │   │   └── addcourse.wxss
│   │   │   ├── deletecourse
│   │   │   │   ├── deletecourse.js
│   │   │   │   ├── deletecourse.json
│   │   │   │   ├── deletecourse.wxml
│   │   │   │   └── deletecourse.wxss
│   │   │   ├── editcourse
│   │   │   │   ├── editcourse.js
│   │   │   │   ├── editcourse.json
│   │   │   │   ├── editcourse.wxml
│   │   │   │   └── editcourse.wxss
│   │   │   └── editform
│   │   │   ├── editform.js
│   │   │   ├── editform.json
│   │   │   ├── editform.wxml
│   │   │   └── editform.wxss
│   │   ├── none
│   │   │   ├── none.js
│   │   │   ├── none.json
│   │   │   ├── none.wxml
│   │   │   └── none.wxss
│   │   ├── passwordreset
│   │   │   ├── passwordreset.js
│   │   │   ├── passwordreset.json
│   │   │   ├── passwordreset.wxml
│   │   │   └── passwordreset.wxss
│   │   ├── showuser
│   │   │   ├── showuser.js
│   │   │   ├── showuser.json
│   │   │   ├── showuser.wxml
│   │   │   └── showuser.wxss
│   │   ├── studentadmin
│   │   │   ├── addstudent
│   │   │   │   ├── addstudent.js
│   │   │   │   ├── addstudent.json
│   │   │   │   ├── addstudent.wxml
│   │   │   │   └── addstudent.wxss
│   │   │   ├── deletestudent
│   │   │   │   ├── deletestudent.js
│   │   │   │   ├── deletestudent.json
│   │   │   │   ├── deletestudent.wxml
│   │   │   │   └── deletestudent.wxss
│   │   │   ├── editform
│   │   │   │   ├── editform.js
│   │   │   │   ├── editform.json
│   │   │   │   ├── editform.wxml
│   │   │   │   └── editform.wxss
│   │   │   └── editstudent
│   │   │   ├── editstudent.js
│   │   │   ├── editstudent.json
│   │   │   ├── editstudent.wxml
│   │   │   └── editstudent.wxss
│   │   ├── success
│   │   │   ├── delresult.js
│   │   │   ├── delresult.json
│   │   │   ├── delresult.wxml
│   │   │   └── delresult.wxss
│   │   └── teacheradmin
│   │   ├── addteacher
│   │   │   ├── addteacher.js
│   │   │   ├── addteacher.json
│   │   │   ├── addteacher.wxml
│   │   │   └── addteacher.wxss
│   │   ├── deleteteacher
│   │   │   ├── deleteteacher.js
│   │   │   ├── deleteteacher.json
│   │   │   ├── deleteteacher.wxml
│   │   │   └── deleteteacher.wxss
│   │   ├── editform
│   │   │   ├── editform.js
│   │   │   ├── editform.json
│   │   │   ├── editform.wxml
│   │   │   └── editform.wxss
│   │   └── editteacher
│   │   ├── editteacher.js
│   │   ├── editteacher.json
│   │   ├── editteacher.wxml
│   │   └── editteacher.wxss
│   ├── asset
│   │   ├── index.js
│   │   ├── index.json
│   │   ├── index.wxml
│   │   └── index.wxss
│   ├── course
│   │   ├── course.js
│   │   ├── course.json
│   │   ├── course.wxml
│   │   └── course.wxss
│   ├── coursedetail
│   │   ├── index.js
│   │   ├── index.json
│   │   ├── index.wxml
│   │   └── index.wxss
│   ├── detail
│   │   ├── index.js
│   │   ├── index.json
│   │   ├── index.wxml
│   │   └── index.wxss
│   ├── example
│   │   ├── collect
│   │   │   ├── collect.js
│   │   │   ├── collect.json
│   │   │   ├── collect.wxml
│   │   │   └── collect.wxss
│   │   ├── contact
│   │   │   ├── index.js
│   │   │   ├── index.json
│   │   │   ├── index.wxml
│   │   │   └── index.wxss
│   │   ├── coupons
│   │   │   ├── index.js
│   │   │   ├── index.json
│   │   │   ├── index.wxml
│   │   │   └── index.wxss
│   │   ├── fdback
│   │   │   ├── fdback.js
│   │   │   ├── fdback.json
│   │   │   ├── fdback.wxml
│   │   │   └── fdback.wxss
│   │   ├── order
│   │   │   ├── order.js
│   │   │   ├── order.json
│   │   │   ├── order.wxml
│   │   │   └── order.wxss
│   │   └── sign
│   │   ├── index.js
│   │   ├── index.json
│   │   ├── index.wxml
│   │   └── index.wxss
│   ├── forget
│   │   ├── forget.js
│   │   ├── forget.json
│   │   ├── forget.wxml
│   │   └── forget.wxss
│   ├── index
│   │   ├── index.js
│   │   ├── index.json
│   │   ├── index.wxml
│   │   └── index.wxss
│   ├── liucheng
│   │   ├── index.js
│   │   ├── index.json
│   │   ├── index.wxml
│   │   └── index.wxss
│   ├── mine
│   │   ├── mine.js
│   │   ├── mine.json
│   │   ├── mine.wxml
│   │   └── mine.wxss
│   ├── recharge
│   │   ├── index.js
│   │   ├── index.json
│   │   ├── index.wxml
│   │   └── index.wxss
│   ├── score
│   │   ├── index.js
│   │   ├── index.json
│   │   ├── index.wxml
│   │   └── index.wxss
│   ├── teacher
│   │   ├── teacher.js
│   │   ├── teacher.json
│   │   ├── teacher.wxml
│   │   └── teacher.wxss
│   ├── teacherlist
│   │   ├── teacherlist.js
│   │   ├── teacherlist.json
│   │   ├── teacherlist.wxml
│   │   └── teacherlist.wxss
│   ├── userlogin
│   │   ├── userlogin.js
│   │   ├── userlogin.json
│   │   ├── userlogin.wxml
│   │   └── userlogin.wxss
│   ├── userregist
│   │   ├── userregist.js
│   │   ├── userregist.json
│   │   ├── userregist.wxml
│   │   └── userregist.wxss
│   ├── xueyuan
│   │   ├── index.js
│   │   ├── index.json
│   │   ├── index.wxml
│   │   └── index.wxss
│   ├── zixun
│   │   ├── zixun.js
│   │   ├── zixun.json
│   │   ├── zixun.wxml
│   │   └── zixun.wxss
│   └── zixundetail
│   ├── detail.js
│   ├── detail.json
│   ├── detail.wxml
│   └── detail.wxss
├── project.config.json
├── readme.md
├── sitemap.json
├── style
│   └── weui.wxss
├── template
│   ├── calendar
│   │   ├── index.js
│   │   ├── index.wxml
│   │   └── index.wxss
│   └── datepicker
│   ├── index.js
│   ├── index.wxml
│   └── index.wxss
├── utils
│   ├── image.js
│   ├── moment.min.js
│   ├── pay.js
│   ├── runtime.js
│   ├── swiper.js
│   ├── util.js
│   └── weapp.qrcode.min.js
└── wxapi
├── config.js
└── main.js

144 directories, 744 files

标签:

实例下载地址

基于微信小程序的培训机构系统源码(微信小程序+后台Java).zip

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警