├── result ├── 注册.png ├── 首页.png ├── 统计1.png └── 统计2.png ├── log ├── log.log.2021-05-12.0.gz └── log.log.2021-05-13.0.gz ├── src ├── main │ ├── resources │ │ ├── static │ │ │ ├── img │ │ │ │ ├── add.png │ │ │ │ ├── back.png │ │ │ │ ├── code.bmp │ │ │ │ ├── exit.png │ │ │ │ ├── logo2.png │ │ │ │ ├── search.png │ │ │ │ ├── statistic.png │ │ │ │ └── pwd-icons-new.png │ │ │ └── css │ │ │ │ └── style.css │ │ ├── templates │ │ │ ├── common │ │ │ │ ├── bottom.html │ │ │ │ ├── head.html │ │ │ │ ├── navigate.html │ │ │ │ ├── visualize.html │ │ │ │ └── page_naiv.html │ │ │ ├── error │ │ │ │ ├── 4xx.html │ │ │ │ └── 5xx.html │ │ │ ├── user │ │ │ │ ├── login.html │ │ │ │ └── regist.html │ │ │ ├── useless │ │ │ │ └── statistic.jsp │ │ │ ├── test │ │ │ │ └── test.html │ │ │ └── menu │ │ │ │ ├── update.html │ │ │ │ ├── queryByNo.html │ │ │ │ ├── add.html │ │ │ │ ├── queryByName.html │ │ │ │ ├── queryResult.html │ │ │ │ ├── show.html │ │ │ │ └── stat.html │ │ ├── application.properties │ │ ├── application.yaml │ │ └── kaptcha.xml │ └── java │ │ └── indi │ │ └── huishi │ │ └── shizuo │ │ ├── pojo │ │ ├── User.java │ │ ├── Statistics.java │ │ └── Student.java │ │ ├── ShizuoApplication.java │ │ ├── service │ │ ├── UserService.java │ │ ├── StudentService.java │ │ └── impl │ │ │ ├── UserServiceImpl.java │ │ │ ├── UserServiceImplRedis.java │ │ │ └── StudentServiceImpl.java │ │ ├── config │ │ ├── MyBatisPlusConfig.java │ │ └── AdminWebConfig.java │ │ ├── dao │ │ ├── UserDao.java │ │ └── StudentDao.java │ │ ├── util │ │ ├── CodeUtil.java │ │ └── BeanUtil.java │ │ ├── interceptor │ │ └── LoginInterceptor.java │ │ └── controller │ │ ├── KaptchaController.java │ │ ├── UserController.java │ │ └── StudentController.java └── test │ └── java │ └── indi │ └── huishi │ └── shizuo │ ├── ShizuoApplicationTests.java │ ├── util │ └── UtilTest.java │ ├── controller │ └── StudentTest.java │ └── service │ └── ServiceTest.java ├── pom.xml ├── readme.md ├── mvnw.cmd └── mvnw /result/注册.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsajuHuishi/StudentScoreManagementSystemSpringBoot/HEAD/result/注册.png -------------------------------------------------------------------------------- /result/首页.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsajuHuishi/StudentScoreManagementSystemSpringBoot/HEAD/result/首页.png -------------------------------------------------------------------------------- /result/统计1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsajuHuishi/StudentScoreManagementSystemSpringBoot/HEAD/result/统计1.png -------------------------------------------------------------------------------- /result/统计2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsajuHuishi/StudentScoreManagementSystemSpringBoot/HEAD/result/统计2.png -------------------------------------------------------------------------------- /log/log.log.2021-05-12.0.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsajuHuishi/StudentScoreManagementSystemSpringBoot/HEAD/log/log.log.2021-05-12.0.gz -------------------------------------------------------------------------------- /log/log.log.2021-05-13.0.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsajuHuishi/StudentScoreManagementSystemSpringBoot/HEAD/log/log.log.2021-05-13.0.gz -------------------------------------------------------------------------------- /src/main/resources/static/img/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsajuHuishi/StudentScoreManagementSystemSpringBoot/HEAD/src/main/resources/static/img/add.png -------------------------------------------------------------------------------- /src/main/resources/static/img/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsajuHuishi/StudentScoreManagementSystemSpringBoot/HEAD/src/main/resources/static/img/back.png -------------------------------------------------------------------------------- /src/main/resources/static/img/code.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsajuHuishi/StudentScoreManagementSystemSpringBoot/HEAD/src/main/resources/static/img/code.bmp -------------------------------------------------------------------------------- /src/main/resources/static/img/exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsajuHuishi/StudentScoreManagementSystemSpringBoot/HEAD/src/main/resources/static/img/exit.png -------------------------------------------------------------------------------- /src/main/resources/static/img/logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsajuHuishi/StudentScoreManagementSystemSpringBoot/HEAD/src/main/resources/static/img/logo2.png -------------------------------------------------------------------------------- /src/main/resources/static/img/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsajuHuishi/StudentScoreManagementSystemSpringBoot/HEAD/src/main/resources/static/img/search.png -------------------------------------------------------------------------------- /src/main/resources/static/img/statistic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsajuHuishi/StudentScoreManagementSystemSpringBoot/HEAD/src/main/resources/static/img/statistic.png -------------------------------------------------------------------------------- /src/main/resources/static/img/pwd-icons-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsajuHuishi/StudentScoreManagementSystemSpringBoot/HEAD/src/main/resources/static/img/pwd-icons-new.png -------------------------------------------------------------------------------- /src/main/resources/templates/common/bottom.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |