├── .DS_Store ├── .gitattributes ├── README.md ├── pom.xml └── src ├── main ├── java │ └── com │ │ ├── SpringbootSchemaApplication.java │ │ ├── annotation │ │ ├── APPLoginUser.java │ │ ├── IgnoreAuth.java │ │ └── LoginUser.java │ │ ├── config │ │ ├── InterceptorConfig.java │ │ └── MybatisPlusConfig.java │ │ ├── controller │ │ ├── AddressController.java │ │ ├── BaokaozhinanController.java │ │ ├── CartController.java │ │ ├── ChatController.java │ │ ├── CommonController.java │ │ ├── ConfigController.java │ │ ├── DiscussbaokaozhinanController.java │ │ ├── DiscusskaoyanzixunController.java │ │ ├── DiscussziliaoxinxiController.java │ │ ├── FileController.java │ │ ├── ForumController.java │ │ ├── KaoyanzixunController.java │ │ ├── OrdersController.java │ │ ├── StoreupController.java │ │ ├── UserController.java │ │ ├── XueshengController.java │ │ ├── ZiliaofenleiController.java │ │ └── ZiliaoxinxiController.java │ │ ├── dao │ │ ├── AddressDao.java │ │ ├── BaokaozhinanDao.java │ │ ├── CartDao.java │ │ ├── ChatDao.java │ │ ├── CommonDao.java │ │ ├── ConfigDao.java │ │ ├── DiscussbaokaozhinanDao.java │ │ ├── DiscusskaoyanzixunDao.java │ │ ├── DiscussziliaoxinxiDao.java │ │ ├── ForumDao.java │ │ ├── KaoyanzixunDao.java │ │ ├── OrdersDao.java │ │ ├── StoreupDao.java │ │ ├── TokenDao.java │ │ ├── UserDao.java │ │ ├── XueshengDao.java │ │ ├── ZiliaofenleiDao.java │ │ └── ZiliaoxinxiDao.java │ │ ├── entity │ │ ├── AddressEntity.java │ │ ├── BaokaozhinanEntity.java │ │ ├── CartEntity.java │ │ ├── ChatEntity.java │ │ ├── ConfigEntity.java │ │ ├── DiscussbaokaozhinanEntity.java │ │ ├── DiscusskaoyanzixunEntity.java │ │ ├── DiscussziliaoxinxiEntity.java │ │ ├── EIException.java │ │ ├── ForumEntity.java │ │ ├── KaoyanzixunEntity.java │ │ ├── OrdersEntity.java │ │ ├── StoreupEntity.java │ │ ├── TokenEntity.java │ │ ├── UserEntity.java │ │ ├── XueshengEntity.java │ │ ├── ZiliaofenleiEntity.java │ │ ├── ZiliaoxinxiEntity.java │ │ ├── model │ │ │ ├── AddressModel.java │ │ │ ├── BaokaozhinanModel.java │ │ │ ├── CartModel.java │ │ │ ├── ChatModel.java │ │ │ ├── DiscussbaokaozhinanModel.java │ │ │ ├── DiscusskaoyanzixunModel.java │ │ │ ├── DiscussziliaoxinxiModel.java │ │ │ ├── ForumModel.java │ │ │ ├── KaoyanzixunModel.java │ │ │ ├── OrdersModel.java │ │ │ ├── StoreupModel.java │ │ │ ├── XueshengModel.java │ │ │ ├── ZiliaofenleiModel.java │ │ │ └── ZiliaoxinxiModel.java │ │ ├── view │ │ │ ├── AddressView.java │ │ │ ├── BaokaozhinanView.java │ │ │ ├── CartView.java │ │ │ ├── ChatView.java │ │ │ ├── DiscussbaokaozhinanView.java │ │ │ ├── DiscusskaoyanzixunView.java │ │ │ ├── DiscussziliaoxinxiView.java │ │ │ ├── ForumView.java │ │ │ ├── KaoyanzixunView.java │ │ │ ├── OrdersView.java │ │ │ ├── StoreupView.java │ │ │ ├── XueshengView.java │ │ │ ├── ZiliaofenleiView.java │ │ │ └── ZiliaoxinxiView.java │ │ └── vo │ │ │ ├── AddressVO.java │ │ │ ├── BaokaozhinanVO.java │ │ │ ├── CartVO.java │ │ │ ├── ChatVO.java │ │ │ ├── DiscussbaokaozhinanVO.java │ │ │ ├── DiscusskaoyanzixunVO.java │ │ │ ├── DiscussziliaoxinxiVO.java │ │ │ ├── ForumVO.java │ │ │ ├── KaoyanzixunVO.java │ │ │ ├── OrdersVO.java │ │ │ ├── StoreupVO.java │ │ │ ├── XueshengVO.java │ │ │ ├── ZiliaofenleiVO.java │ │ │ └── ZiliaoxinxiVO.java │ │ ├── interceptor │ │ └── AuthorizationInterceptor.java │ │ ├── service │ │ ├── AddressService.java │ │ ├── BaokaozhinanService.java │ │ ├── CartService.java │ │ ├── ChatService.java │ │ ├── CommonService.java │ │ ├── ConfigService.java │ │ ├── DiscussbaokaozhinanService.java │ │ ├── DiscusskaoyanzixunService.java │ │ ├── DiscussziliaoxinxiService.java │ │ ├── ForumService.java │ │ ├── KaoyanzixunService.java │ │ ├── OrdersService.java │ │ ├── StoreupService.java │ │ ├── TokenService.java │ │ ├── UserService.java │ │ ├── XueshengService.java │ │ ├── ZiliaofenleiService.java │ │ ├── ZiliaoxinxiService.java │ │ └── impl │ │ │ ├── AddressServiceImpl.java │ │ │ ├── BaokaozhinanServiceImpl.java │ │ │ ├── CartServiceImpl.java │ │ │ ├── ChatServiceImpl.java │ │ │ ├── CommonServiceImpl.java │ │ │ ├── ConfigServiceImpl.java │ │ │ ├── DiscussbaokaozhinanServiceImpl.java │ │ │ ├── DiscusskaoyanzixunServiceImpl.java │ │ │ ├── DiscussziliaoxinxiServiceImpl.java │ │ │ ├── ForumServiceImpl.java │ │ │ ├── KaoyanzixunServiceImpl.java │ │ │ ├── OrdersServiceImpl.java │ │ │ ├── StoreupServiceImpl.java │ │ │ ├── TokenServiceImpl.java │ │ │ ├── UserServiceImpl.java │ │ │ ├── XueshengServiceImpl.java │ │ │ ├── ZiliaofenleiServiceImpl.java │ │ │ └── ZiliaoxinxiServiceImpl.java │ │ └── utils │ │ ├── BaiduUtil.java │ │ ├── CommonUtil.java │ │ ├── FileUtil.java │ │ ├── HttpClientUtils.java │ │ ├── JQPageInfo.java │ │ ├── MPUtil.java │ │ ├── PageUtils.java │ │ ├── Query.java │ │ ├── R.java │ │ ├── SQLFilter.java │ │ ├── SpringContextUtils.java │ │ └── ValidatorUtils.java └── resources │ ├── admin │ └── admin │ │ ├── 1-install.bat │ │ ├── 2-run.bat │ │ ├── babel.config.js │ │ ├── dist │ │ ├── css │ │ │ ├── app.466cc23f.css │ │ │ └── chunk-vendors.0fdd4e14.css │ │ ├── favicon.ico │ │ ├── fonts │ │ │ ├── element-icons.535877f5.woff │ │ │ └── element-icons.732389de.ttf │ │ ├── img │ │ │ ├── 404.3648f234.png │ │ │ └── zhongguo.20798bfa.png │ │ ├── index.html │ │ └── js │ │ │ ├── app.982c2f0a.js │ │ │ ├── app.982c2f0a.js.map │ │ │ ├── chunk-vendors.1153fc6c.js │ │ │ └── chunk-vendors.1153fc6c.js.map │ │ ├── muban.jpg │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ ├── favicon.ico │ │ └── index.html │ │ ├── src │ │ ├── App.vue │ │ ├── assets │ │ │ ├── css │ │ │ │ ├── element-variables.scss │ │ │ │ └── style.scss │ │ │ └── img │ │ │ │ ├── 404.png │ │ │ │ ├── avator.png │ │ │ │ ├── bg.jpg │ │ │ │ ├── captcha.jpg │ │ │ │ ├── login.png │ │ │ │ ├── logo.png │ │ │ │ ├── password.png │ │ │ │ ├── role.png │ │ │ │ ├── test │ │ │ │ ├── jianshe.png │ │ │ │ ├── jiaotong.png │ │ │ │ ├── nongye.png │ │ │ │ ├── weixin.png │ │ │ │ ├── zhifubao.png │ │ │ │ └── zhongguo.png │ │ │ │ └── username.png │ │ ├── components │ │ │ ├── SvgIcon │ │ │ │ └── index.vue │ │ │ ├── common │ │ │ │ ├── BreadCrumbs.vue │ │ │ │ ├── BreadCrumbs.vue.bak │ │ │ │ ├── Editor.vue │ │ │ │ └── FileUpload.vue │ │ │ ├── home │ │ │ │ ├── HomeCard.vue │ │ │ │ ├── HomeChart.vue │ │ │ │ ├── HomeComment.vue │ │ │ │ └── HomeProgress.vue │ │ │ └── index │ │ │ │ ├── IndexAside.vue │ │ │ │ ├── IndexAsideStatic.vue │ │ │ │ ├── IndexAsideStatic.vue.bak │ │ │ │ ├── IndexAsideSub.vue │ │ │ │ ├── IndexHeader.vue │ │ │ │ ├── IndexHeader.vue.bak │ │ │ │ └── IndexMain.vue │ │ ├── icons │ │ │ ├── index.js │ │ │ ├── svg │ │ │ │ ├── 404.svg │ │ │ │ ├── articleEdit.svg │ │ │ │ ├── banner.svg │ │ │ │ ├── bug.svg │ │ │ │ ├── build.svg │ │ │ │ ├── cfg.svg │ │ │ │ ├── channel.svg │ │ │ │ ├── chart.svg │ │ │ │ ├── clipboard.svg │ │ │ │ ├── code.svg │ │ │ │ ├── component.svg │ │ │ │ ├── contacts.svg │ │ │ │ ├── dashboard.svg │ │ │ │ ├── date.svg │ │ │ │ ├── dept.svg │ │ │ │ ├── dict.svg │ │ │ │ ├── documentation.svg │ │ │ │ ├── download.svg │ │ │ │ ├── drag.svg │ │ │ │ ├── druid.svg │ │ │ │ ├── edit.svg │ │ │ │ ├── education.svg │ │ │ │ ├── email.svg │ │ │ │ ├── excel.svg │ │ │ │ ├── exit-fullscreen.svg │ │ │ │ ├── eye-open.svg │ │ │ │ ├── file.svg │ │ │ │ ├── form.svg │ │ │ │ ├── fullscreen.svg │ │ │ │ ├── icon.svg │ │ │ │ ├── international.svg │ │ │ │ ├── job.svg │ │ │ │ ├── language.svg │ │ │ │ ├── link.svg │ │ │ │ ├── list.svg │ │ │ │ ├── lock.svg │ │ │ │ ├── log.svg │ │ │ │ ├── logininfor.svg │ │ │ │ ├── menu.svg │ │ │ │ ├── message.svg │ │ │ │ ├── money.svg │ │ │ │ ├── monitor.svg │ │ │ │ ├── nested.svg │ │ │ │ ├── nested0.svg │ │ │ │ ├── online.svg │ │ │ │ ├── operation.svg │ │ │ │ ├── password.svg │ │ │ │ ├── password0.svg │ │ │ │ ├── pdf.svg │ │ │ │ ├── people.svg │ │ │ │ ├── peoples.svg │ │ │ │ ├── phone.svg │ │ │ │ ├── post.svg │ │ │ │ ├── qq.svg │ │ │ │ ├── search.svg │ │ │ │ ├── sender.svg │ │ │ │ ├── server.svg │ │ │ │ ├── shopping.svg │ │ │ │ ├── shoppingCard.svg │ │ │ │ ├── size.svg │ │ │ │ ├── skill.svg │ │ │ │ ├── star.svg │ │ │ │ ├── svg │ │ │ │ │ ├── AI.svg │ │ │ │ │ ├── AIDeviceLayout.svg │ │ │ │ │ ├── EIM.svg │ │ │ │ │ ├── VIP.svg │ │ │ │ │ ├── agricultureRegister.svg │ │ │ │ │ ├── area.svg │ │ │ │ │ ├── base.svg │ │ │ │ │ ├── batch.svg │ │ │ │ │ ├── board.svg │ │ │ │ │ ├── board1.svg │ │ │ │ │ ├── boardConfig.svg │ │ │ │ │ ├── cfg.svg │ │ │ │ │ ├── code.svg │ │ │ │ │ ├── company.svg │ │ │ │ │ ├── crop.svg │ │ │ │ │ ├── crops.svg │ │ │ │ │ ├── dashboard.svg │ │ │ │ │ ├── dataAbnormal.svg │ │ │ │ │ ├── dataLack.svg │ │ │ │ │ ├── dept.svg │ │ │ │ │ ├── device.svg │ │ │ │ │ ├── deviceMonitorData.svg │ │ │ │ │ ├── dict.svg │ │ │ │ │ ├── diseasesinsect.svg │ │ │ │ │ ├── diseasesinsects.svg │ │ │ │ │ ├── documentation.svg │ │ │ │ │ ├── email.svg │ │ │ │ │ ├── environmental.svg │ │ │ │ │ ├── eye-open.svg │ │ │ │ │ ├── farmingProject.svg │ │ │ │ │ ├── finance.svg │ │ │ │ │ ├── financeBudget.svg │ │ │ │ │ ├── financeReality.svg │ │ │ │ │ ├── firm.svg │ │ │ │ │ ├── firms.svg │ │ │ │ │ ├── harvestBatch.svg │ │ │ │ │ ├── harvestDetection.svg │ │ │ │ │ ├── harvestManage.svg │ │ │ │ │ ├── harvestWorks.svg │ │ │ │ │ ├── heavyMetalDetection.svg │ │ │ │ │ ├── home.svg │ │ │ │ │ ├── inspection.svg │ │ │ │ │ ├── internet.svg │ │ │ │ │ ├── internetActive.svg │ │ │ │ │ ├── log.svg │ │ │ │ │ ├── mainSystem.svg │ │ │ │ │ ├── mainSystemActive.svg │ │ │ │ │ ├── menu.svg │ │ │ │ │ ├── monitorEquipment.svg │ │ │ │ │ ├── news.svg │ │ │ │ │ ├── order.svg │ │ │ │ │ ├── password.svg │ │ │ │ │ ├── peoples.svg │ │ │ │ │ ├── pest.svg │ │ │ │ │ ├── pestActive.svg │ │ │ │ │ ├── pesticideResidue.svg │ │ │ │ │ ├── pests.svg │ │ │ │ │ ├── phone.svg │ │ │ │ │ ├── plant.svg │ │ │ │ │ ├── plants.svg │ │ │ │ │ ├── plantsActive.svg │ │ │ │ │ ├── residual.svg │ │ │ │ │ ├── retroactiveCoding.svg │ │ │ │ │ ├── scheme.svg │ │ │ │ │ ├── source.svg │ │ │ │ │ ├── sourceActive.svg │ │ │ │ │ ├── system.svg │ │ │ │ │ ├── task.svg │ │ │ │ │ ├── tempFarm.svg │ │ │ │ │ ├── traceability.svg │ │ │ │ │ ├── traceabilityList.svg │ │ │ │ │ ├── traceabilityStyle.svg │ │ │ │ │ ├── user.svg │ │ │ │ │ ├── user0.svg │ │ │ │ │ ├── validCode.svg │ │ │ │ │ ├── video.svg │ │ │ │ │ ├── videoEquipment.svg │ │ │ │ │ ├── videoKey.svg │ │ │ │ │ ├── vipCustomized.svg │ │ │ │ │ ├── warnings.svg │ │ │ │ │ ├── workOrder.svg │ │ │ │ │ ├── ┐┤░х╣▄└э.svg │ │ │ │ │ └── ╓╪╜Ё╩Ї╝ь▓т╣▄└э.svg │ │ │ │ ├── swagger.svg │ │ │ │ ├── system.svg │ │ │ │ ├── tab.svg │ │ │ │ ├── table.svg │ │ │ │ ├── table0.svg │ │ │ │ ├── task.svg │ │ │ │ ├── template.svg │ │ │ │ ├── theme.svg │ │ │ │ ├── tool.svg │ │ │ │ ├── tree-table.svg │ │ │ │ ├── tree.svg │ │ │ │ ├── user.svg │ │ │ │ ├── user0.svg │ │ │ │ ├── validCode.svg │ │ │ │ ├── wechat.svg │ │ │ │ └── zip.svg │ │ │ └── svgo.yml │ │ ├── main.js │ │ ├── router │ │ │ └── router-static.js │ │ ├── store │ │ │ └── store.js │ │ ├── utils │ │ │ ├── api.js │ │ │ ├── base.js │ │ │ ├── http.js │ │ │ ├── i18n.js │ │ │ ├── menu.js │ │ │ ├── storage.js │ │ │ ├── utils.js │ │ │ └── validate.js │ │ ├── views │ │ │ ├── 404.vue │ │ │ ├── center.vue │ │ │ ├── home.vue │ │ │ ├── index.vue │ │ │ ├── login.vue │ │ │ ├── modules │ │ │ │ ├── address │ │ │ │ │ ├── add-or-update.vue │ │ │ │ │ └── list.vue │ │ │ │ ├── baokaozhinan │ │ │ │ │ ├── add-or-update.vue │ │ │ │ │ └── list.vue │ │ │ │ ├── cart │ │ │ │ │ ├── add-or-update.vue │ │ │ │ │ └── list.vue │ │ │ │ ├── chat │ │ │ │ │ ├── add-or-update.vue │ │ │ │ │ └── list.vue │ │ │ │ ├── config │ │ │ │ │ ├── add-or-update.vue │ │ │ │ │ └── list.vue │ │ │ │ ├── cuotiben │ │ │ │ │ └── list.vue │ │ │ │ ├── discussbaokaozhinan │ │ │ │ │ ├── add-or-update.vue │ │ │ │ │ └── list.vue │ │ │ │ ├── discusskaoyanzixun │ │ │ │ │ ├── add-or-update.vue │ │ │ │ │ └── list.vue │ │ │ │ ├── discussziliaoxinxi │ │ │ │ │ ├── add-or-update.vue │ │ │ │ │ └── list.vue │ │ │ │ ├── forum │ │ │ │ │ ├── add-or-update.vue │ │ │ │ │ └── list.vue │ │ │ │ ├── kaoshijilu │ │ │ │ │ ├── add-or-update.vue │ │ │ │ │ └── list.vue │ │ │ │ ├── kaoyanzixun │ │ │ │ │ ├── add-or-update.vue │ │ │ │ │ └── list.vue │ │ │ │ ├── kefuguanli │ │ │ │ │ ├── chat-add-or-update.vue │ │ │ │ │ └── list.vue │ │ │ │ ├── orders │ │ │ │ │ ├── add-or-update.vue │ │ │ │ │ └── list.vue │ │ │ │ ├── peizhiguanli │ │ │ │ │ ├── add-or-update.vue │ │ │ │ │ └── list.vue │ │ │ │ ├── shijuanliebiao │ │ │ │ │ ├── exam.vue │ │ │ │ │ └── list.vue │ │ │ │ ├── shitiguanli │ │ │ │ │ ├── list.vue │ │ │ │ │ └── question-add-or-update.vue │ │ │ │ ├── storeup │ │ │ │ │ ├── add-or-update.vue │ │ │ │ │ └── list.vue │ │ │ │ ├── users │ │ │ │ │ ├── add-or-update.vue │ │ │ │ │ └── list.vue │ │ │ │ ├── xuesheng │ │ │ │ │ ├── add-or-update.vue │ │ │ │ │ └── list.vue │ │ │ │ ├── ziliaofenlei │ │ │ │ │ ├── add-or-update.vue │ │ │ │ │ └── list.vue │ │ │ │ └── ziliaoxinxi │ │ │ │ │ ├── add-or-update.vue │ │ │ │ │ └── list.vue │ │ │ ├── pay.vue │ │ │ ├── register.vue │ │ │ └── update-password.vue │ │ └── vm │ │ │ ├── add-or-update.vue.vm │ │ │ ├── base.js.vm │ │ │ ├── http.js.vm │ │ │ ├── list.vue.vm │ │ │ ├── login.vue.vm │ │ │ ├── menu.js.vm │ │ │ ├── router-static.js.vm │ │ │ └── vue.config.js.vm │ │ └── vue.config.js │ ├── application.yml │ ├── front │ └── front │ │ ├── css │ │ ├── bootstrap.min.css │ │ ├── common.css │ │ ├── home.css │ │ ├── style.css │ │ └── theme.css │ │ ├── elementui │ │ ├── elementui.css │ │ ├── elementui.js │ │ └── fonts │ │ │ ├── element-icons.ttf │ │ │ └── element-icons.woff │ │ ├── img │ │ ├── 0.png │ │ ├── avator.png │ │ ├── banner.jpg │ │ ├── db1.gif │ │ ├── db1.png │ │ ├── db2.gif │ │ ├── db3.gif │ │ ├── db4.png │ │ ├── index_icon.png │ │ ├── jianshe.png │ │ ├── jiaotong.png │ │ ├── line.gif │ │ ├── news-bg.jpg │ │ ├── nongye.png │ │ ├── now.png │ │ ├── product-bg.jpg │ │ ├── seckilling.jpg │ │ ├── select.png │ │ ├── test.jpg │ │ ├── unselect.png │ │ ├── weixin.png │ │ ├── yuan.png │ │ ├── zhifubao.png │ │ └── zhongguo.png │ │ ├── index.html │ │ ├── js │ │ ├── bootstrap.AMapPositionPicker.js │ │ ├── bootstrap.min.js │ │ ├── config.js │ │ ├── jquery.js │ │ ├── utils.js │ │ ├── validate.js │ │ └── vue.js │ │ ├── layui │ │ ├── css │ │ │ ├── layui.css │ │ │ ├── layui.mobile.css │ │ │ └── modules │ │ │ │ ├── code.css │ │ │ │ ├── laydate │ │ │ │ └── default │ │ │ │ │ └── laydate.css │ │ │ │ └── layer │ │ │ │ └── default │ │ │ │ ├── icon-ext.png │ │ │ │ ├── icon.png │ │ │ │ ├── layer.css │ │ │ │ ├── loading-0.gif │ │ │ │ ├── loading-1.gif │ │ │ │ └── loading-2.gif │ │ ├── font │ │ │ ├── iconfont.eot │ │ │ ├── iconfont.svg │ │ │ ├── iconfont.ttf │ │ │ ├── iconfont.woff │ │ │ └── iconfont.woff2 │ │ ├── images │ │ │ └── face │ │ │ │ ├── 0.gif │ │ │ │ ├── 1.gif │ │ │ │ ├── 10.gif │ │ │ │ ├── 11.gif │ │ │ │ ├── 12.gif │ │ │ │ ├── 13.gif │ │ │ │ ├── 14.gif │ │ │ │ ├── 15.gif │ │ │ │ ├── 16.gif │ │ │ │ ├── 17.gif │ │ │ │ ├── 18.gif │ │ │ │ ├── 19.gif │ │ │ │ ├── 2.gif │ │ │ │ ├── 20.gif │ │ │ │ ├── 21.gif │ │ │ │ ├── 22.gif │ │ │ │ ├── 23.gif │ │ │ │ ├── 24.gif │ │ │ │ ├── 25.gif │ │ │ │ ├── 26.gif │ │ │ │ ├── 27.gif │ │ │ │ ├── 28.gif │ │ │ │ ├── 29.gif │ │ │ │ ├── 3.gif │ │ │ │ ├── 30.gif │ │ │ │ ├── 31.gif │ │ │ │ ├── 32.gif │ │ │ │ ├── 33.gif │ │ │ │ ├── 34.gif │ │ │ │ ├── 35.gif │ │ │ │ ├── 36.gif │ │ │ │ ├── 37.gif │ │ │ │ ├── 38.gif │ │ │ │ ├── 39.gif │ │ │ │ ├── 4.gif │ │ │ │ ├── 40.gif │ │ │ │ ├── 41.gif │ │ │ │ ├── 42.gif │ │ │ │ ├── 43.gif │ │ │ │ ├── 44.gif │ │ │ │ ├── 45.gif │ │ │ │ ├── 46.gif │ │ │ │ ├── 47.gif │ │ │ │ ├── 48.gif │ │ │ │ ├── 49.gif │ │ │ │ ├── 5.gif │ │ │ │ ├── 50.gif │ │ │ │ ├── 51.gif │ │ │ │ ├── 52.gif │ │ │ │ ├── 53.gif │ │ │ │ ├── 54.gif │ │ │ │ ├── 55.gif │ │ │ │ ├── 56.gif │ │ │ │ ├── 57.gif │ │ │ │ ├── 58.gif │ │ │ │ ├── 59.gif │ │ │ │ ├── 6.gif │ │ │ │ ├── 60.gif │ │ │ │ ├── 61.gif │ │ │ │ ├── 62.gif │ │ │ │ ├── 63.gif │ │ │ │ ├── 64.gif │ │ │ │ ├── 65.gif │ │ │ │ ├── 66.gif │ │ │ │ ├── 67.gif │ │ │ │ ├── 68.gif │ │ │ │ ├── 69.gif │ │ │ │ ├── 7.gif │ │ │ │ ├── 70.gif │ │ │ │ ├── 71.gif │ │ │ │ ├── 8.gif │ │ │ │ └── 9.gif │ │ ├── lay │ │ │ └── modules │ │ │ │ ├── carousel.js │ │ │ │ ├── code.js │ │ │ │ ├── colorpicker.js │ │ │ │ ├── element.js │ │ │ │ ├── flow.js │ │ │ │ ├── form.js │ │ │ │ ├── jquery.js │ │ │ │ ├── laydate.js │ │ │ │ ├── layedit.js │ │ │ │ ├── layer.js │ │ │ │ ├── laypage.js │ │ │ │ ├── laytpl.js │ │ │ │ ├── mobile.js │ │ │ │ ├── rate.js │ │ │ │ ├── slider.js │ │ │ │ ├── table.js │ │ │ │ ├── transfer.js │ │ │ │ ├── tree.js │ │ │ │ ├── upload.js │ │ │ │ └── util.js │ │ ├── layui.all.js │ │ └── layui.js │ │ ├── modules │ │ ├── config.js │ │ ├── http │ │ │ └── http.js │ │ ├── layarea │ │ │ └── layarea.js │ │ └── tinymce │ │ │ ├── index.html │ │ │ ├── tinymce.js │ │ │ └── tinymce │ │ │ ├── jquery.tinymce.min.js │ │ │ ├── langs │ │ │ ├── readme.md │ │ │ └── zh_CN.js │ │ │ ├── license.txt │ │ │ ├── plugins │ │ │ ├── advlist │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── anchor │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── autolink │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── autoresize │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── autosave │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── bbcode │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── charmap │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── code │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── codesample │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── colorpicker │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── contextmenu │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── directionality │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── emoticons │ │ │ │ ├── js │ │ │ │ │ ├── emojis.js │ │ │ │ │ └── emojis.min.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── fullpage │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── fullscreen │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── help │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── hr │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── image │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── imagetools │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── importcss │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── indent2em │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── insertdatetime │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── legacyoutput │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── link │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── lists │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── media │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── nonbreaking │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── noneditable │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── pagebreak │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── paste │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── preview │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── print │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── quickbars │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── save │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── searchreplace │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── spellchecker │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── tabfocus │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── table │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── template │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── textcolor │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── textpattern │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── toc │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── visualblocks │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── visualchars │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ └── wordcount │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── readme.md │ │ │ ├── skins │ │ │ ├── content │ │ │ │ ├── dark │ │ │ │ │ ├── content.css │ │ │ │ │ ├── content.min.css │ │ │ │ │ └── content.min.css.map │ │ │ │ ├── default │ │ │ │ │ ├── content.css │ │ │ │ │ ├── content.min.css │ │ │ │ │ └── content.min.css.map │ │ │ │ ├── document │ │ │ │ │ ├── content.css │ │ │ │ │ ├── content.min.css │ │ │ │ │ └── content.min.css.map │ │ │ │ └── writer │ │ │ │ │ ├── content.css │ │ │ │ │ ├── content.min.css │ │ │ │ │ └── content.min.css.map │ │ │ └── ui │ │ │ │ ├── oxide-dark │ │ │ │ ├── content.css │ │ │ │ ├── content.inline.css │ │ │ │ ├── content.inline.min.css │ │ │ │ ├── content.inline.min.css.map │ │ │ │ ├── content.min.css │ │ │ │ ├── content.min.css.map │ │ │ │ ├── content.mobile.css │ │ │ │ ├── content.mobile.min.css │ │ │ │ ├── content.mobile.min.css.map │ │ │ │ ├── fonts │ │ │ │ │ └── tinymce-mobile.woff │ │ │ │ ├── skin.css │ │ │ │ ├── skin.min.css │ │ │ │ ├── skin.min.css.map │ │ │ │ ├── skin.mobile.css │ │ │ │ ├── skin.mobile.min.css │ │ │ │ └── skin.mobile.min.css.map │ │ │ │ └── oxide │ │ │ │ ├── content.css │ │ │ │ ├── content.inline.css │ │ │ │ ├── content.inline.min.css │ │ │ │ ├── content.inline.min.css.map │ │ │ │ ├── content.min.css │ │ │ │ ├── content.min.css.map │ │ │ │ ├── content.mobile.css │ │ │ │ ├── content.mobile.min.css │ │ │ │ ├── content.mobile.min.css.map │ │ │ │ ├── fonts │ │ │ │ └── tinymce-mobile.woff │ │ │ │ ├── skin.css │ │ │ │ ├── skin.min.css │ │ │ │ ├── skin.min.css.map │ │ │ │ ├── skin.mobile.css │ │ │ │ ├── skin.mobile.min.css │ │ │ │ └── skin.mobile.min.css.map │ │ │ ├── themes │ │ │ ├── mobile │ │ │ │ ├── theme.js │ │ │ │ └── theme.min.js │ │ │ └── silver │ │ │ │ ├── theme.js │ │ │ │ └── theme.min.js │ │ │ ├── tinymce.js │ │ │ └── tinymce.min.js │ │ └── pages │ │ ├── address │ │ ├── add.html │ │ ├── center.html │ │ ├── detail.html │ │ ├── list.html │ │ ├── register.html │ │ └── update.html │ │ ├── baokaozhinan │ │ ├── add.html │ │ ├── center.html │ │ ├── detail.html │ │ ├── list.html │ │ └── register.html │ │ ├── cart │ │ ├── add.html │ │ ├── center.html │ │ ├── detail.html │ │ ├── list.html │ │ └── register.html │ │ ├── chat │ │ ├── add.html │ │ ├── center.html │ │ ├── chat.html │ │ ├── detail.html │ │ ├── list.html │ │ └── register.html │ │ ├── config │ │ ├── add.html │ │ ├── center.html │ │ ├── detail.html │ │ ├── list.html │ │ └── register.html │ │ ├── cuotiben │ │ └── list.html │ │ ├── defaultuser │ │ ├── center.html │ │ └── register.html │ │ ├── discussbaokaozhinan │ │ ├── add.html │ │ ├── center.html │ │ ├── detail.html │ │ ├── list.html │ │ └── register.html │ │ ├── discusskaoyanzixun │ │ ├── add.html │ │ ├── center.html │ │ ├── detail.html │ │ ├── list.html │ │ └── register.html │ │ ├── discussziliaoxinxi │ │ ├── add.html │ │ ├── center.html │ │ ├── detail.html │ │ ├── list.html │ │ └── register.html │ │ ├── exampaper │ │ ├── exam.html │ │ └── list.html │ │ ├── examrecord │ │ ├── detail.html │ │ ├── list.html │ │ └── wrong.html │ │ ├── forum │ │ ├── add-comment.html │ │ ├── add.html │ │ ├── center.html │ │ ├── detail.html │ │ ├── list-my.html │ │ ├── list.html │ │ ├── register.html │ │ └── update.html │ │ ├── home │ │ └── home.html │ │ ├── kaoyanzixun │ │ ├── add.html │ │ ├── center.html │ │ ├── detail.html │ │ ├── list.html │ │ └── register.html │ │ ├── login │ │ └── login.html │ │ ├── messages │ │ └── list.html │ │ ├── news │ │ ├── detail.html │ │ └── list.html │ │ ├── order │ │ ├── confirm.html │ │ └── list.html │ │ ├── orders │ │ ├── add.html │ │ ├── center.html │ │ ├── detail.html │ │ ├── list.html │ │ └── register.html │ │ ├── recharge │ │ └── recharge.html │ │ ├── storeup │ │ ├── add.html │ │ ├── center.html │ │ ├── detail.html │ │ ├── list.html │ │ └── register.html │ │ ├── users │ │ ├── add.html │ │ ├── center.html │ │ ├── detail.html │ │ ├── list.html │ │ └── register.html │ │ ├── xuesheng │ │ ├── add.html │ │ ├── center.html │ │ ├── detail.html │ │ ├── list.html │ │ └── register.html │ │ ├── ziliaofenlei │ │ ├── add.html │ │ ├── center.html │ │ ├── detail.html │ │ ├── list.html │ │ └── register.html │ │ └── ziliaoxinxi │ │ ├── add.html │ │ ├── center.html │ │ ├── detail.html │ │ ├── list.html │ │ └── register.html │ ├── mapper │ ├── AddressDao.xml │ ├── BaokaozhinanDao.xml │ ├── CartDao.xml │ ├── ChatDao.xml │ ├── CommonDao.xml │ ├── ConfigDao.xml │ ├── DiscussbaokaozhinanDao.xml │ ├── DiscusskaoyanzixunDao.xml │ ├── DiscussziliaoxinxiDao.xml │ ├── ForumDao.xml │ ├── KaoyanzixunDao.xml │ ├── OrdersDao.xml │ ├── StoreupDao.xml │ ├── TokenDao.xml │ ├── UserDao.xml │ ├── XueshengDao.xml │ ├── ZiliaofenleiDao.xml │ └── ZiliaoxinxiDao.xml │ └── static │ └── upload │ ├── 1577351717989.jpg │ ├── baokaozhinan_tupian1.jpg │ ├── baokaozhinan_tupian2.jpg │ ├── baokaozhinan_tupian3.jpg │ ├── baokaozhinan_tupian4.jpg │ ├── baokaozhinan_tupian5.jpg │ ├── baokaozhinan_tupian6.jpg │ ├── kaoyanzixun_tupian1.jpg │ ├── kaoyanzixun_tupian2.jpg │ ├── kaoyanzixun_tupian3.jpg │ ├── kaoyanzixun_tupian4.jpg │ ├── kaoyanzixun_tupian5.jpg │ ├── kaoyanzixun_tupian6.jpg │ ├── picture1.jpg │ ├── picture2.jpg │ ├── picture3.jpg │ ├── picture4.jpg │ ├── picture5.jpg │ ├── test │ ├── xuesheng_touxiang1.jpg │ ├── xuesheng_touxiang2.jpg │ ├── xuesheng_touxiang3.jpg │ ├── xuesheng_touxiang4.jpg │ ├── xuesheng_touxiang5.jpg │ ├── xuesheng_touxiang6.jpg │ ├── ziliaoxinxi_tupian1.jpg │ ├── ziliaoxinxi_tupian2.jpg │ ├── ziliaoxinxi_tupian3.jpg │ ├── ziliaoxinxi_tupian4.jpg │ ├── ziliaoxinxi_tupian5.jpg │ └── ziliaoxinxi_tupian6.jpg └── test └── java └── com └── SpringbootSchemaApplicationTests.java /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/.DS_Store -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.js linguist-language=java 2 | *.css linguist-language=java 3 | *.html linguist-language=java 4 | *.vue linguist-language=java -------------------------------------------------------------------------------- /src/main/java/com/SpringbootSchemaApplication.java: -------------------------------------------------------------------------------- 1 | package com; 2 | 3 | import org.mybatis.spring.annotation.MapperScan; 4 | import org.springframework.boot.SpringApplication; 5 | import org.springframework.boot.autoconfigure.SpringBootApplication; 6 | import org.springframework.boot.builder.SpringApplicationBuilder; 7 | import org.springframework.boot.web.servlet.support.SpringBootServletInitializer; 8 | 9 | @SpringBootApplication 10 | @MapperScan(basePackages = {"com.dao"}) 11 | public class SpringbootSchemaApplication extends SpringBootServletInitializer{ 12 | 13 | public static void main(String[] args) { 14 | SpringApplication.run(SpringbootSchemaApplication.class, args); 15 | } 16 | 17 | @Override 18 | protected SpringApplicationBuilder configure(SpringApplicationBuilder applicationBuilder) { 19 | return applicationBuilder.sources(SpringbootSchemaApplication.class); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/main/java/com/annotation/APPLoginUser.java: -------------------------------------------------------------------------------- 1 | package com.annotation; 2 | 3 | import java.lang.annotation.ElementType; 4 | import java.lang.annotation.Retention; 5 | import java.lang.annotation.RetentionPolicy; 6 | import java.lang.annotation.Target; 7 | 8 | /** 9 | * 登录用户信息 10 | */ 11 | @Target(ElementType.PARAMETER) 12 | @Retention(RetentionPolicy.RUNTIME) 13 | public @interface APPLoginUser { 14 | 15 | } 16 | -------------------------------------------------------------------------------- /src/main/java/com/annotation/IgnoreAuth.java: -------------------------------------------------------------------------------- 1 | package com.annotation; 2 | 3 | import java.lang.annotation.*; 4 | 5 | /** 6 | * 忽略Token验证 7 | */ 8 | @Target(ElementType.METHOD) 9 | @Retention(RetentionPolicy.RUNTIME) 10 | @Documented 11 | public @interface IgnoreAuth { 12 | 13 | } 14 | -------------------------------------------------------------------------------- /src/main/java/com/annotation/LoginUser.java: -------------------------------------------------------------------------------- 1 | package com.annotation; 2 | 3 | import java.lang.annotation.ElementType; 4 | import java.lang.annotation.Retention; 5 | import java.lang.annotation.RetentionPolicy; 6 | import java.lang.annotation.Target; 7 | 8 | /** 9 | * 登录用户信息 10 | */ 11 | @Target(ElementType.PARAMETER) 12 | @Retention(RetentionPolicy.RUNTIME) 13 | public @interface LoginUser { 14 | 15 | } 16 | -------------------------------------------------------------------------------- /src/main/java/com/config/MybatisPlusConfig.java: -------------------------------------------------------------------------------- 1 | 2 | package com.config; 3 | 4 | import org.springframework.context.annotation.Bean; 5 | import org.springframework.context.annotation.Configuration; 6 | 7 | import com.baomidou.mybatisplus.mapper.MetaObjectHandler; 8 | import com.baomidou.mybatisplus.plugins.PaginationInterceptor; 9 | 10 | /** 11 | * mybatis-plus配置 12 | * @author yangliyuan 13 | * @date 2019年6月25日 上午10:41:15 14 | */ 15 | @Configuration 16 | public class MybatisPlusConfig { 17 | 18 | /** 19 | * 分页插件 20 | */ 21 | @Bean 22 | public PaginationInterceptor paginationInterceptor() { 23 | return new PaginationInterceptor(); 24 | } 25 | 26 | } 27 | -------------------------------------------------------------------------------- /src/main/java/com/dao/AddressDao.java: -------------------------------------------------------------------------------- 1 | package com.dao; 2 | 3 | import com.entity.AddressEntity; 4 | import com.baomidou.mybatisplus.mapper.BaseMapper; 5 | import java.util.List; 6 | import com.baomidou.mybatisplus.mapper.Wrapper; 7 | import com.baomidou.mybatisplus.plugins.pagination.Pagination; 8 | 9 | import org.apache.ibatis.annotations.Param; 10 | import com.entity.vo.AddressVO; 11 | import com.entity.view.AddressView; 12 | 13 | 14 | /** 15 | * 地址 16 | * 17 | * @author 18 | * @email 19 | * @date 2020-11-30 11:35:10 20 | */ 21 | public interface AddressDao extends BaseMapper { 22 | 23 | List selectListVO(@Param("ew") Wrapper wrapper); 24 | 25 | AddressVO selectVO(@Param("ew") Wrapper wrapper); 26 | 27 | List selectListView(@Param("ew") Wrapper wrapper); 28 | 29 | List selectListView(Pagination page,@Param("ew") Wrapper wrapper); 30 | 31 | AddressView selectView(@Param("ew") Wrapper wrapper); 32 | 33 | } 34 | -------------------------------------------------------------------------------- /src/main/java/com/dao/CartDao.java: -------------------------------------------------------------------------------- 1 | package com.dao; 2 | 3 | import com.entity.CartEntity; 4 | import com.baomidou.mybatisplus.mapper.BaseMapper; 5 | import java.util.List; 6 | import com.baomidou.mybatisplus.mapper.Wrapper; 7 | import com.baomidou.mybatisplus.plugins.pagination.Pagination; 8 | 9 | import org.apache.ibatis.annotations.Param; 10 | import com.entity.vo.CartVO; 11 | import com.entity.view.CartView; 12 | 13 | 14 | /** 15 | * 购物车表 16 | * 17 | * @author 18 | * @email 19 | * @date 2020-11-30 11:35:10 20 | */ 21 | public interface CartDao extends BaseMapper { 22 | 23 | List selectListVO(@Param("ew") Wrapper wrapper); 24 | 25 | CartVO selectVO(@Param("ew") Wrapper wrapper); 26 | 27 | List selectListView(@Param("ew") Wrapper wrapper); 28 | 29 | List selectListView(Pagination page,@Param("ew") Wrapper wrapper); 30 | 31 | CartView selectView(@Param("ew") Wrapper wrapper); 32 | 33 | } 34 | -------------------------------------------------------------------------------- /src/main/java/com/dao/ChatDao.java: -------------------------------------------------------------------------------- 1 | package com.dao; 2 | 3 | import com.entity.ChatEntity; 4 | import com.baomidou.mybatisplus.mapper.BaseMapper; 5 | import java.util.List; 6 | import com.baomidou.mybatisplus.mapper.Wrapper; 7 | import com.baomidou.mybatisplus.plugins.pagination.Pagination; 8 | 9 | import org.apache.ibatis.annotations.Param; 10 | import com.entity.vo.ChatVO; 11 | import com.entity.view.ChatView; 12 | 13 | 14 | /** 15 | * 客服聊天表 16 | * 17 | * @author 18 | * @email 19 | * @date 2020-11-30 11:35:10 20 | */ 21 | public interface ChatDao extends BaseMapper { 22 | 23 | List selectListVO(@Param("ew") Wrapper wrapper); 24 | 25 | ChatVO selectVO(@Param("ew") Wrapper wrapper); 26 | 27 | List selectListView(@Param("ew") Wrapper wrapper); 28 | 29 | List selectListView(Pagination page,@Param("ew") Wrapper wrapper); 30 | 31 | ChatView selectView(@Param("ew") Wrapper wrapper); 32 | 33 | } 34 | -------------------------------------------------------------------------------- /src/main/java/com/dao/CommonDao.java: -------------------------------------------------------------------------------- 1 | 2 | package com.dao; 3 | 4 | import java.util.List; 5 | import java.util.Map; 6 | 7 | /** 8 | * 通用接口 9 | */ 10 | public interface CommonDao{ 11 | List getOption(Map params); 12 | 13 | Map getFollowByOption(Map params); 14 | 15 | List getFollowByOption2(Map params); 16 | 17 | void sh(Map params); 18 | 19 | int remindCount(Map params); 20 | 21 | Map selectCal(Map params); 22 | 23 | List> selectGroup(Map params); 24 | 25 | List> selectValue(Map params); 26 | } 27 | -------------------------------------------------------------------------------- /src/main/java/com/dao/ConfigDao.java: -------------------------------------------------------------------------------- 1 | 2 | package com.dao; 3 | 4 | import com.baomidou.mybatisplus.mapper.BaseMapper; 5 | import com.entity.ConfigEntity; 6 | 7 | /** 8 | * 配置 9 | */ 10 | public interface ConfigDao extends BaseMapper { 11 | 12 | } 13 | -------------------------------------------------------------------------------- /src/main/java/com/dao/ForumDao.java: -------------------------------------------------------------------------------- 1 | package com.dao; 2 | 3 | import com.entity.ForumEntity; 4 | import com.baomidou.mybatisplus.mapper.BaseMapper; 5 | import java.util.List; 6 | import com.baomidou.mybatisplus.mapper.Wrapper; 7 | import com.baomidou.mybatisplus.plugins.pagination.Pagination; 8 | 9 | import org.apache.ibatis.annotations.Param; 10 | import com.entity.vo.ForumVO; 11 | import com.entity.view.ForumView; 12 | 13 | 14 | /** 15 | * 论坛表 16 | * 17 | * @author 18 | * @email 19 | * @date 2020-11-30 11:35:10 20 | */ 21 | public interface ForumDao extends BaseMapper { 22 | 23 | List selectListVO(@Param("ew") Wrapper wrapper); 24 | 25 | ForumVO selectVO(@Param("ew") Wrapper wrapper); 26 | 27 | List selectListView(@Param("ew") Wrapper wrapper); 28 | 29 | List selectListView(Pagination page,@Param("ew") Wrapper wrapper); 30 | 31 | ForumView selectView(@Param("ew") Wrapper wrapper); 32 | 33 | } 34 | -------------------------------------------------------------------------------- /src/main/java/com/dao/KaoyanzixunDao.java: -------------------------------------------------------------------------------- 1 | package com.dao; 2 | 3 | import com.entity.KaoyanzixunEntity; 4 | import com.baomidou.mybatisplus.mapper.BaseMapper; 5 | import java.util.List; 6 | import com.baomidou.mybatisplus.mapper.Wrapper; 7 | import com.baomidou.mybatisplus.plugins.pagination.Pagination; 8 | 9 | import org.apache.ibatis.annotations.Param; 10 | import com.entity.vo.KaoyanzixunVO; 11 | import com.entity.view.KaoyanzixunView; 12 | 13 | 14 | /** 15 | * 考研资讯 16 | * 17 | * @author 18 | * @email 19 | * @date 2020-11-30 11:35:09 20 | */ 21 | public interface KaoyanzixunDao extends BaseMapper { 22 | 23 | List selectListVO(@Param("ew") Wrapper wrapper); 24 | 25 | KaoyanzixunVO selectVO(@Param("ew") Wrapper wrapper); 26 | 27 | List selectListView(@Param("ew") Wrapper wrapper); 28 | 29 | List selectListView(Pagination page,@Param("ew") Wrapper wrapper); 30 | 31 | KaoyanzixunView selectView(@Param("ew") Wrapper wrapper); 32 | 33 | } 34 | -------------------------------------------------------------------------------- /src/main/java/com/dao/OrdersDao.java: -------------------------------------------------------------------------------- 1 | package com.dao; 2 | 3 | import com.entity.OrdersEntity; 4 | import com.baomidou.mybatisplus.mapper.BaseMapper; 5 | import java.util.List; 6 | import com.baomidou.mybatisplus.mapper.Wrapper; 7 | import com.baomidou.mybatisplus.plugins.pagination.Pagination; 8 | 9 | import org.apache.ibatis.annotations.Param; 10 | import com.entity.vo.OrdersVO; 11 | import com.entity.view.OrdersView; 12 | 13 | 14 | /** 15 | * 订单 16 | * 17 | * @author 18 | * @email 19 | * @date 2020-11-30 11:35:10 20 | */ 21 | public interface OrdersDao extends BaseMapper { 22 | 23 | List selectListVO(@Param("ew") Wrapper wrapper); 24 | 25 | OrdersVO selectVO(@Param("ew") Wrapper wrapper); 26 | 27 | List selectListView(@Param("ew") Wrapper wrapper); 28 | 29 | List selectListView(Pagination page,@Param("ew") Wrapper wrapper); 30 | 31 | OrdersView selectView(@Param("ew") Wrapper wrapper); 32 | 33 | } 34 | -------------------------------------------------------------------------------- /src/main/java/com/dao/StoreupDao.java: -------------------------------------------------------------------------------- 1 | package com.dao; 2 | 3 | import com.entity.StoreupEntity; 4 | import com.baomidou.mybatisplus.mapper.BaseMapper; 5 | import java.util.List; 6 | import com.baomidou.mybatisplus.mapper.Wrapper; 7 | import com.baomidou.mybatisplus.plugins.pagination.Pagination; 8 | 9 | import org.apache.ibatis.annotations.Param; 10 | import com.entity.vo.StoreupVO; 11 | import com.entity.view.StoreupView; 12 | 13 | 14 | /** 15 | * 收藏表 16 | * 17 | * @author 18 | * @email 19 | * @date 2020-11-30 11:35:10 20 | */ 21 | public interface StoreupDao extends BaseMapper { 22 | 23 | List selectListVO(@Param("ew") Wrapper wrapper); 24 | 25 | StoreupVO selectVO(@Param("ew") Wrapper wrapper); 26 | 27 | List selectListView(@Param("ew") Wrapper wrapper); 28 | 29 | List selectListView(Pagination page,@Param("ew") Wrapper wrapper); 30 | 31 | StoreupView selectView(@Param("ew") Wrapper wrapper); 32 | 33 | } 34 | -------------------------------------------------------------------------------- /src/main/java/com/dao/TokenDao.java: -------------------------------------------------------------------------------- 1 | 2 | package com.dao; 3 | 4 | import java.util.List; 5 | 6 | import org.apache.ibatis.annotations.Param; 7 | 8 | import com.baomidou.mybatisplus.mapper.BaseMapper; 9 | import com.baomidou.mybatisplus.mapper.Wrapper; 10 | import com.baomidou.mybatisplus.plugins.pagination.Pagination; 11 | import com.entity.TokenEntity; 12 | 13 | /** 14 | * token 15 | */ 16 | public interface TokenDao extends BaseMapper { 17 | 18 | List selectListView(@Param("ew") Wrapper wrapper); 19 | 20 | List selectListView(Pagination page,@Param("ew") Wrapper wrapper); 21 | 22 | } 23 | -------------------------------------------------------------------------------- /src/main/java/com/dao/UserDao.java: -------------------------------------------------------------------------------- 1 | 2 | package com.dao; 3 | 4 | import java.util.List; 5 | 6 | import org.apache.ibatis.annotations.Param; 7 | 8 | import com.baomidou.mybatisplus.mapper.BaseMapper; 9 | import com.baomidou.mybatisplus.mapper.Wrapper; 10 | import com.baomidou.mybatisplus.plugins.pagination.Pagination; 11 | import com.entity.UserEntity; 12 | 13 | /** 14 | * 用户 15 | */ 16 | public interface UserDao extends BaseMapper { 17 | 18 | List selectListView(@Param("ew") Wrapper wrapper); 19 | 20 | List selectListView(Pagination page,@Param("ew") Wrapper wrapper); 21 | 22 | } 23 | -------------------------------------------------------------------------------- /src/main/java/com/dao/XueshengDao.java: -------------------------------------------------------------------------------- 1 | package com.dao; 2 | 3 | import com.entity.XueshengEntity; 4 | import com.baomidou.mybatisplus.mapper.BaseMapper; 5 | import java.util.List; 6 | import com.baomidou.mybatisplus.mapper.Wrapper; 7 | import com.baomidou.mybatisplus.plugins.pagination.Pagination; 8 | 9 | import org.apache.ibatis.annotations.Param; 10 | import com.entity.vo.XueshengVO; 11 | import com.entity.view.XueshengView; 12 | 13 | 14 | /** 15 | * 学生 16 | * 17 | * @author 18 | * @email 19 | * @date 2020-11-30 11:35:09 20 | */ 21 | public interface XueshengDao extends BaseMapper { 22 | 23 | List selectListVO(@Param("ew") Wrapper wrapper); 24 | 25 | XueshengVO selectVO(@Param("ew") Wrapper wrapper); 26 | 27 | List selectListView(@Param("ew") Wrapper wrapper); 28 | 29 | List selectListView(Pagination page,@Param("ew") Wrapper wrapper); 30 | 31 | XueshengView selectView(@Param("ew") Wrapper wrapper); 32 | 33 | } 34 | -------------------------------------------------------------------------------- /src/main/java/com/dao/ZiliaoxinxiDao.java: -------------------------------------------------------------------------------- 1 | package com.dao; 2 | 3 | import com.entity.ZiliaoxinxiEntity; 4 | import com.baomidou.mybatisplus.mapper.BaseMapper; 5 | import java.util.List; 6 | import com.baomidou.mybatisplus.mapper.Wrapper; 7 | import com.baomidou.mybatisplus.plugins.pagination.Pagination; 8 | 9 | import org.apache.ibatis.annotations.Param; 10 | import com.entity.vo.ZiliaoxinxiVO; 11 | import com.entity.view.ZiliaoxinxiView; 12 | 13 | 14 | /** 15 | * 资料信息 16 | * 17 | * @author 18 | * @email 19 | * @date 2020-11-30 11:35:10 20 | */ 21 | public interface ZiliaoxinxiDao extends BaseMapper { 22 | 23 | List selectListVO(@Param("ew") Wrapper wrapper); 24 | 25 | ZiliaoxinxiVO selectVO(@Param("ew") Wrapper wrapper); 26 | 27 | List selectListView(@Param("ew") Wrapper wrapper); 28 | 29 | List selectListView(Pagination page,@Param("ew") Wrapper wrapper); 30 | 31 | ZiliaoxinxiView selectView(@Param("ew") Wrapper wrapper); 32 | 33 | } 34 | -------------------------------------------------------------------------------- /src/main/java/com/entity/EIException.java: -------------------------------------------------------------------------------- 1 | 2 | package com.entity; 3 | 4 | /** 5 | * 自定义异常 6 | */ 7 | public class EIException extends RuntimeException { 8 | private static final long serialVersionUID = 1L; 9 | 10 | private String msg; 11 | private int code = 500; 12 | 13 | public EIException(String msg) { 14 | super(msg); 15 | this.msg = msg; 16 | } 17 | 18 | public EIException(String msg, Throwable e) { 19 | super(msg, e); 20 | this.msg = msg; 21 | } 22 | 23 | public EIException(String msg, int code) { 24 | super(msg); 25 | this.msg = msg; 26 | this.code = code; 27 | } 28 | 29 | public EIException(String msg, int code, Throwable e) { 30 | super(msg, e); 31 | this.msg = msg; 32 | this.code = code; 33 | } 34 | 35 | public String getMsg() { 36 | return msg; 37 | } 38 | 39 | public void setMsg(String msg) { 40 | this.msg = msg; 41 | } 42 | 43 | public int getCode() { 44 | return code; 45 | } 46 | 47 | public void setCode(int code) { 48 | this.code = code; 49 | } 50 | 51 | 52 | } 53 | -------------------------------------------------------------------------------- /src/main/java/com/entity/model/ZiliaofenleiModel.java: -------------------------------------------------------------------------------- 1 | package com.entity.model; 2 | 3 | import com.entity.ZiliaofenleiEntity; 4 | 5 | import com.baomidou.mybatisplus.annotations.TableName; 6 | import java.util.Date; 7 | import org.springframework.format.annotation.DateTimeFormat; 8 | 9 | import com.fasterxml.jackson.annotation.JsonFormat; 10 | import java.io.Serializable; 11 | 12 | 13 | /** 14 | * 资料分类 15 | * 接收传参的实体类 16 | *(实际开发中配合移动端接口开发手动去掉些没用的字段, 后端一般用entity就够用了) 17 | * 取自ModelAndView 的model名称 18 | * @author 19 | * @email 20 | * @date 2020-11-30 11:35:10 21 | */ 22 | public class ZiliaofenleiModel implements Serializable { 23 | private static final long serialVersionUID = 1L; 24 | 25 | 26 | } 27 | -------------------------------------------------------------------------------- /src/main/java/com/entity/view/AddressView.java: -------------------------------------------------------------------------------- 1 | package com.entity.view; 2 | 3 | import com.entity.AddressEntity; 4 | 5 | import com.baomidou.mybatisplus.annotations.TableName; 6 | import org.apache.commons.beanutils.BeanUtils; 7 | import java.lang.reflect.InvocationTargetException; 8 | 9 | import java.io.Serializable; 10 | 11 | 12 | /** 13 | * 地址 14 | * 后端返回视图实体辅助类 15 | * (通常后端关联的表或者自定义的字段需要返回使用) 16 | * @author 17 | * @email 18 | * @date 2020-11-30 11:35:10 19 | */ 20 | @TableName("address") 21 | public class AddressView extends AddressEntity implements Serializable { 22 | private static final long serialVersionUID = 1L; 23 | 24 | public AddressView(){ 25 | } 26 | 27 | public AddressView(AddressEntity addressEntity){ 28 | try { 29 | BeanUtils.copyProperties(this, addressEntity); 30 | } catch (IllegalAccessException | InvocationTargetException e) { 31 | // TODO Auto-generated catch block 32 | e.printStackTrace(); 33 | } 34 | 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /src/main/java/com/entity/view/BaokaozhinanView.java: -------------------------------------------------------------------------------- 1 | package com.entity.view; 2 | 3 | import com.entity.BaokaozhinanEntity; 4 | 5 | import com.baomidou.mybatisplus.annotations.TableName; 6 | import org.apache.commons.beanutils.BeanUtils; 7 | import java.lang.reflect.InvocationTargetException; 8 | 9 | import java.io.Serializable; 10 | 11 | 12 | /** 13 | * 报考指南 14 | * 后端返回视图实体辅助类 15 | * (通常后端关联的表或者自定义的字段需要返回使用) 16 | * @author 17 | * @email 18 | * @date 2020-11-30 11:35:10 19 | */ 20 | @TableName("baokaozhinan") 21 | public class BaokaozhinanView extends BaokaozhinanEntity implements Serializable { 22 | private static final long serialVersionUID = 1L; 23 | 24 | public BaokaozhinanView(){ 25 | } 26 | 27 | public BaokaozhinanView(BaokaozhinanEntity baokaozhinanEntity){ 28 | try { 29 | BeanUtils.copyProperties(this, baokaozhinanEntity); 30 | } catch (IllegalAccessException | InvocationTargetException e) { 31 | // TODO Auto-generated catch block 32 | e.printStackTrace(); 33 | } 34 | 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /src/main/java/com/entity/view/CartView.java: -------------------------------------------------------------------------------- 1 | package com.entity.view; 2 | 3 | import com.entity.CartEntity; 4 | 5 | import com.baomidou.mybatisplus.annotations.TableName; 6 | import org.apache.commons.beanutils.BeanUtils; 7 | import java.lang.reflect.InvocationTargetException; 8 | 9 | import java.io.Serializable; 10 | 11 | 12 | /** 13 | * 购物车表 14 | * 后端返回视图实体辅助类 15 | * (通常后端关联的表或者自定义的字段需要返回使用) 16 | * @author 17 | * @email 18 | * @date 2020-11-30 11:35:10 19 | */ 20 | @TableName("cart") 21 | public class CartView extends CartEntity implements Serializable { 22 | private static final long serialVersionUID = 1L; 23 | 24 | public CartView(){ 25 | } 26 | 27 | public CartView(CartEntity cartEntity){ 28 | try { 29 | BeanUtils.copyProperties(this, cartEntity); 30 | } catch (IllegalAccessException | InvocationTargetException e) { 31 | // TODO Auto-generated catch block 32 | e.printStackTrace(); 33 | } 34 | 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /src/main/java/com/entity/view/ChatView.java: -------------------------------------------------------------------------------- 1 | package com.entity.view; 2 | 3 | import com.entity.ChatEntity; 4 | 5 | import com.baomidou.mybatisplus.annotations.TableName; 6 | import org.apache.commons.beanutils.BeanUtils; 7 | import java.lang.reflect.InvocationTargetException; 8 | 9 | import java.io.Serializable; 10 | 11 | 12 | /** 13 | * 客服聊天表 14 | * 后端返回视图实体辅助类 15 | * (通常后端关联的表或者自定义的字段需要返回使用) 16 | * @author 17 | * @email 18 | * @date 2020-11-30 11:35:10 19 | */ 20 | @TableName("chat") 21 | public class ChatView extends ChatEntity implements Serializable { 22 | private static final long serialVersionUID = 1L; 23 | 24 | public ChatView(){ 25 | } 26 | 27 | public ChatView(ChatEntity chatEntity){ 28 | try { 29 | BeanUtils.copyProperties(this, chatEntity); 30 | } catch (IllegalAccessException | InvocationTargetException e) { 31 | // TODO Auto-generated catch block 32 | e.printStackTrace(); 33 | } 34 | 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /src/main/java/com/entity/view/DiscussbaokaozhinanView.java: -------------------------------------------------------------------------------- 1 | package com.entity.view; 2 | 3 | import com.entity.DiscussbaokaozhinanEntity; 4 | 5 | import com.baomidou.mybatisplus.annotations.TableName; 6 | import org.apache.commons.beanutils.BeanUtils; 7 | import java.lang.reflect.InvocationTargetException; 8 | 9 | import java.io.Serializable; 10 | 11 | 12 | /** 13 | * 报考指南评论表 14 | * 后端返回视图实体辅助类 15 | * (通常后端关联的表或者自定义的字段需要返回使用) 16 | * @author 17 | * @email 18 | * @date 2020-11-30 11:35:10 19 | */ 20 | @TableName("discussbaokaozhinan") 21 | public class DiscussbaokaozhinanView extends DiscussbaokaozhinanEntity implements Serializable { 22 | private static final long serialVersionUID = 1L; 23 | 24 | public DiscussbaokaozhinanView(){ 25 | } 26 | 27 | public DiscussbaokaozhinanView(DiscussbaokaozhinanEntity discussbaokaozhinanEntity){ 28 | try { 29 | BeanUtils.copyProperties(this, discussbaokaozhinanEntity); 30 | } catch (IllegalAccessException | InvocationTargetException e) { 31 | // TODO Auto-generated catch block 32 | e.printStackTrace(); 33 | } 34 | 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /src/main/java/com/entity/view/DiscusskaoyanzixunView.java: -------------------------------------------------------------------------------- 1 | package com.entity.view; 2 | 3 | import com.entity.DiscusskaoyanzixunEntity; 4 | 5 | import com.baomidou.mybatisplus.annotations.TableName; 6 | import org.apache.commons.beanutils.BeanUtils; 7 | import java.lang.reflect.InvocationTargetException; 8 | 9 | import java.io.Serializable; 10 | 11 | 12 | /** 13 | * 考研资讯评论表 14 | * 后端返回视图实体辅助类 15 | * (通常后端关联的表或者自定义的字段需要返回使用) 16 | * @author 17 | * @email 18 | * @date 2020-11-30 11:35:10 19 | */ 20 | @TableName("discusskaoyanzixun") 21 | public class DiscusskaoyanzixunView extends DiscusskaoyanzixunEntity implements Serializable { 22 | private static final long serialVersionUID = 1L; 23 | 24 | public DiscusskaoyanzixunView(){ 25 | } 26 | 27 | public DiscusskaoyanzixunView(DiscusskaoyanzixunEntity discusskaoyanzixunEntity){ 28 | try { 29 | BeanUtils.copyProperties(this, discusskaoyanzixunEntity); 30 | } catch (IllegalAccessException | InvocationTargetException e) { 31 | // TODO Auto-generated catch block 32 | e.printStackTrace(); 33 | } 34 | 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /src/main/java/com/entity/view/DiscussziliaoxinxiView.java: -------------------------------------------------------------------------------- 1 | package com.entity.view; 2 | 3 | import com.entity.DiscussziliaoxinxiEntity; 4 | 5 | import com.baomidou.mybatisplus.annotations.TableName; 6 | import org.apache.commons.beanutils.BeanUtils; 7 | import java.lang.reflect.InvocationTargetException; 8 | 9 | import java.io.Serializable; 10 | 11 | 12 | /** 13 | * 资料信息评论表 14 | * 后端返回视图实体辅助类 15 | * (通常后端关联的表或者自定义的字段需要返回使用) 16 | * @author 17 | * @email 18 | * @date 2020-11-30 11:35:10 19 | */ 20 | @TableName("discussziliaoxinxi") 21 | public class DiscussziliaoxinxiView extends DiscussziliaoxinxiEntity implements Serializable { 22 | private static final long serialVersionUID = 1L; 23 | 24 | public DiscussziliaoxinxiView(){ 25 | } 26 | 27 | public DiscussziliaoxinxiView(DiscussziliaoxinxiEntity discussziliaoxinxiEntity){ 28 | try { 29 | BeanUtils.copyProperties(this, discussziliaoxinxiEntity); 30 | } catch (IllegalAccessException | InvocationTargetException e) { 31 | // TODO Auto-generated catch block 32 | e.printStackTrace(); 33 | } 34 | 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /src/main/java/com/entity/view/ForumView.java: -------------------------------------------------------------------------------- 1 | package com.entity.view; 2 | 3 | import com.entity.ForumEntity; 4 | 5 | import com.baomidou.mybatisplus.annotations.TableName; 6 | import org.apache.commons.beanutils.BeanUtils; 7 | import java.lang.reflect.InvocationTargetException; 8 | 9 | import java.io.Serializable; 10 | 11 | 12 | /** 13 | * 论坛表 14 | * 后端返回视图实体辅助类 15 | * (通常后端关联的表或者自定义的字段需要返回使用) 16 | * @author 17 | * @email 18 | * @date 2020-11-30 11:35:10 19 | */ 20 | @TableName("forum") 21 | public class ForumView extends ForumEntity implements Serializable { 22 | private static final long serialVersionUID = 1L; 23 | 24 | public ForumView(){ 25 | } 26 | 27 | public ForumView(ForumEntity forumEntity){ 28 | try { 29 | BeanUtils.copyProperties(this, forumEntity); 30 | } catch (IllegalAccessException | InvocationTargetException e) { 31 | // TODO Auto-generated catch block 32 | e.printStackTrace(); 33 | } 34 | 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /src/main/java/com/entity/view/KaoyanzixunView.java: -------------------------------------------------------------------------------- 1 | package com.entity.view; 2 | 3 | import com.entity.KaoyanzixunEntity; 4 | 5 | import com.baomidou.mybatisplus.annotations.TableName; 6 | import org.apache.commons.beanutils.BeanUtils; 7 | import java.lang.reflect.InvocationTargetException; 8 | 9 | import java.io.Serializable; 10 | 11 | 12 | /** 13 | * 考研资讯 14 | * 后端返回视图实体辅助类 15 | * (通常后端关联的表或者自定义的字段需要返回使用) 16 | * @author 17 | * @email 18 | * @date 2020-11-30 11:35:09 19 | */ 20 | @TableName("kaoyanzixun") 21 | public class KaoyanzixunView extends KaoyanzixunEntity implements Serializable { 22 | private static final long serialVersionUID = 1L; 23 | 24 | public KaoyanzixunView(){ 25 | } 26 | 27 | public KaoyanzixunView(KaoyanzixunEntity kaoyanzixunEntity){ 28 | try { 29 | BeanUtils.copyProperties(this, kaoyanzixunEntity); 30 | } catch (IllegalAccessException | InvocationTargetException e) { 31 | // TODO Auto-generated catch block 32 | e.printStackTrace(); 33 | } 34 | 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /src/main/java/com/entity/view/OrdersView.java: -------------------------------------------------------------------------------- 1 | package com.entity.view; 2 | 3 | import com.entity.OrdersEntity; 4 | 5 | import com.baomidou.mybatisplus.annotations.TableName; 6 | import org.apache.commons.beanutils.BeanUtils; 7 | import java.lang.reflect.InvocationTargetException; 8 | 9 | import java.io.Serializable; 10 | 11 | 12 | /** 13 | * 订单 14 | * 后端返回视图实体辅助类 15 | * (通常后端关联的表或者自定义的字段需要返回使用) 16 | * @author 17 | * @email 18 | * @date 2020-11-30 11:35:10 19 | */ 20 | @TableName("orders") 21 | public class OrdersView extends OrdersEntity implements Serializable { 22 | private static final long serialVersionUID = 1L; 23 | 24 | public OrdersView(){ 25 | } 26 | 27 | public OrdersView(OrdersEntity ordersEntity){ 28 | try { 29 | BeanUtils.copyProperties(this, ordersEntity); 30 | } catch (IllegalAccessException | InvocationTargetException e) { 31 | // TODO Auto-generated catch block 32 | e.printStackTrace(); 33 | } 34 | 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /src/main/java/com/entity/view/StoreupView.java: -------------------------------------------------------------------------------- 1 | package com.entity.view; 2 | 3 | import com.entity.StoreupEntity; 4 | 5 | import com.baomidou.mybatisplus.annotations.TableName; 6 | import org.apache.commons.beanutils.BeanUtils; 7 | import java.lang.reflect.InvocationTargetException; 8 | 9 | import java.io.Serializable; 10 | 11 | 12 | /** 13 | * 收藏表 14 | * 后端返回视图实体辅助类 15 | * (通常后端关联的表或者自定义的字段需要返回使用) 16 | * @author 17 | * @email 18 | * @date 2020-11-30 11:35:10 19 | */ 20 | @TableName("storeup") 21 | public class StoreupView extends StoreupEntity implements Serializable { 22 | private static final long serialVersionUID = 1L; 23 | 24 | public StoreupView(){ 25 | } 26 | 27 | public StoreupView(StoreupEntity storeupEntity){ 28 | try { 29 | BeanUtils.copyProperties(this, storeupEntity); 30 | } catch (IllegalAccessException | InvocationTargetException e) { 31 | // TODO Auto-generated catch block 32 | e.printStackTrace(); 33 | } 34 | 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /src/main/java/com/entity/view/XueshengView.java: -------------------------------------------------------------------------------- 1 | package com.entity.view; 2 | 3 | import com.entity.XueshengEntity; 4 | 5 | import com.baomidou.mybatisplus.annotations.TableName; 6 | import org.apache.commons.beanutils.BeanUtils; 7 | import java.lang.reflect.InvocationTargetException; 8 | 9 | import java.io.Serializable; 10 | 11 | 12 | /** 13 | * 学生 14 | * 后端返回视图实体辅助类 15 | * (通常后端关联的表或者自定义的字段需要返回使用) 16 | * @author 17 | * @email 18 | * @date 2020-11-30 11:35:09 19 | */ 20 | @TableName("xuesheng") 21 | public class XueshengView extends XueshengEntity implements Serializable { 22 | private static final long serialVersionUID = 1L; 23 | 24 | public XueshengView(){ 25 | } 26 | 27 | public XueshengView(XueshengEntity xueshengEntity){ 28 | try { 29 | BeanUtils.copyProperties(this, xueshengEntity); 30 | } catch (IllegalAccessException | InvocationTargetException e) { 31 | // TODO Auto-generated catch block 32 | e.printStackTrace(); 33 | } 34 | 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /src/main/java/com/entity/view/ZiliaofenleiView.java: -------------------------------------------------------------------------------- 1 | package com.entity.view; 2 | 3 | import com.entity.ZiliaofenleiEntity; 4 | 5 | import com.baomidou.mybatisplus.annotations.TableName; 6 | import org.apache.commons.beanutils.BeanUtils; 7 | import java.lang.reflect.InvocationTargetException; 8 | 9 | import java.io.Serializable; 10 | 11 | 12 | /** 13 | * 资料分类 14 | * 后端返回视图实体辅助类 15 | * (通常后端关联的表或者自定义的字段需要返回使用) 16 | * @author 17 | * @email 18 | * @date 2020-11-30 11:35:10 19 | */ 20 | @TableName("ziliaofenlei") 21 | public class ZiliaofenleiView extends ZiliaofenleiEntity implements Serializable { 22 | private static final long serialVersionUID = 1L; 23 | 24 | public ZiliaofenleiView(){ 25 | } 26 | 27 | public ZiliaofenleiView(ZiliaofenleiEntity ziliaofenleiEntity){ 28 | try { 29 | BeanUtils.copyProperties(this, ziliaofenleiEntity); 30 | } catch (IllegalAccessException | InvocationTargetException e) { 31 | // TODO Auto-generated catch block 32 | e.printStackTrace(); 33 | } 34 | 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /src/main/java/com/entity/view/ZiliaoxinxiView.java: -------------------------------------------------------------------------------- 1 | package com.entity.view; 2 | 3 | import com.entity.ZiliaoxinxiEntity; 4 | 5 | import com.baomidou.mybatisplus.annotations.TableName; 6 | import org.apache.commons.beanutils.BeanUtils; 7 | import java.lang.reflect.InvocationTargetException; 8 | 9 | import java.io.Serializable; 10 | 11 | 12 | /** 13 | * 资料信息 14 | * 后端返回视图实体辅助类 15 | * (通常后端关联的表或者自定义的字段需要返回使用) 16 | * @author 17 | * @email 18 | * @date 2020-11-30 11:35:10 19 | */ 20 | @TableName("ziliaoxinxi") 21 | public class ZiliaoxinxiView extends ZiliaoxinxiEntity implements Serializable { 22 | private static final long serialVersionUID = 1L; 23 | 24 | public ZiliaoxinxiView(){ 25 | } 26 | 27 | public ZiliaoxinxiView(ZiliaoxinxiEntity ziliaoxinxiEntity){ 28 | try { 29 | BeanUtils.copyProperties(this, ziliaoxinxiEntity); 30 | } catch (IllegalAccessException | InvocationTargetException e) { 31 | // TODO Auto-generated catch block 32 | e.printStackTrace(); 33 | } 34 | 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /src/main/java/com/entity/vo/ZiliaofenleiVO.java: -------------------------------------------------------------------------------- 1 | package com.entity.vo; 2 | 3 | import com.entity.ZiliaofenleiEntity; 4 | 5 | import com.baomidou.mybatisplus.annotations.TableName; 6 | import java.util.Date; 7 | import org.springframework.format.annotation.DateTimeFormat; 8 | 9 | import com.fasterxml.jackson.annotation.JsonFormat; 10 | import java.io.Serializable; 11 | 12 | 13 | /** 14 | * 资料分类 15 | * 手机端接口返回实体辅助类 16 | * (主要作用去除一些不必要的字段) 17 | * @author 18 | * @email 19 | * @date 2020-11-30 11:35:10 20 | */ 21 | public class ZiliaofenleiVO implements Serializable { 22 | private static final long serialVersionUID = 1L; 23 | 24 | 25 | } 26 | -------------------------------------------------------------------------------- /src/main/java/com/service/AddressService.java: -------------------------------------------------------------------------------- 1 | package com.service; 2 | 3 | import com.baomidou.mybatisplus.mapper.Wrapper; 4 | import com.baomidou.mybatisplus.service.IService; 5 | import com.utils.PageUtils; 6 | import com.entity.AddressEntity; 7 | import java.util.List; 8 | import java.util.Map; 9 | import com.entity.vo.AddressVO; 10 | import org.apache.ibatis.annotations.Param; 11 | import com.entity.view.AddressView; 12 | 13 | 14 | /** 15 | * 地址 16 | * 17 | * @author 18 | * @email 19 | * @date 2020-11-30 11:35:10 20 | */ 21 | public interface AddressService extends IService { 22 | 23 | PageUtils queryPage(Map params); 24 | 25 | List selectListVO(Wrapper wrapper); 26 | 27 | AddressVO selectVO(@Param("ew") Wrapper wrapper); 28 | 29 | List selectListView(Wrapper wrapper); 30 | 31 | AddressView selectView(@Param("ew") Wrapper wrapper); 32 | 33 | PageUtils queryPage(Map params,Wrapper wrapper); 34 | 35 | } 36 | 37 | -------------------------------------------------------------------------------- /src/main/java/com/service/CartService.java: -------------------------------------------------------------------------------- 1 | package com.service; 2 | 3 | import com.baomidou.mybatisplus.mapper.Wrapper; 4 | import com.baomidou.mybatisplus.service.IService; 5 | import com.utils.PageUtils; 6 | import com.entity.CartEntity; 7 | import java.util.List; 8 | import java.util.Map; 9 | import com.entity.vo.CartVO; 10 | import org.apache.ibatis.annotations.Param; 11 | import com.entity.view.CartView; 12 | 13 | 14 | /** 15 | * 购物车表 16 | * 17 | * @author 18 | * @email 19 | * @date 2020-11-30 11:35:10 20 | */ 21 | public interface CartService extends IService { 22 | 23 | PageUtils queryPage(Map params); 24 | 25 | List selectListVO(Wrapper wrapper); 26 | 27 | CartVO selectVO(@Param("ew") Wrapper wrapper); 28 | 29 | List selectListView(Wrapper wrapper); 30 | 31 | CartView selectView(@Param("ew") Wrapper wrapper); 32 | 33 | PageUtils queryPage(Map params,Wrapper wrapper); 34 | 35 | } 36 | 37 | -------------------------------------------------------------------------------- /src/main/java/com/service/ChatService.java: -------------------------------------------------------------------------------- 1 | package com.service; 2 | 3 | import com.baomidou.mybatisplus.mapper.Wrapper; 4 | import com.baomidou.mybatisplus.service.IService; 5 | import com.utils.PageUtils; 6 | import com.entity.ChatEntity; 7 | import java.util.List; 8 | import java.util.Map; 9 | import com.entity.vo.ChatVO; 10 | import org.apache.ibatis.annotations.Param; 11 | import com.entity.view.ChatView; 12 | 13 | 14 | /** 15 | * 客服聊天表 16 | * 17 | * @author 18 | * @email 19 | * @date 2020-11-30 11:35:10 20 | */ 21 | public interface ChatService extends IService { 22 | 23 | PageUtils queryPage(Map params); 24 | 25 | List selectListVO(Wrapper wrapper); 26 | 27 | ChatVO selectVO(@Param("ew") Wrapper wrapper); 28 | 29 | List selectListView(Wrapper wrapper); 30 | 31 | ChatView selectView(@Param("ew") Wrapper wrapper); 32 | 33 | PageUtils queryPage(Map params,Wrapper wrapper); 34 | 35 | } 36 | 37 | -------------------------------------------------------------------------------- /src/main/java/com/service/CommonService.java: -------------------------------------------------------------------------------- 1 | package com.service; 2 | 3 | import java.util.List; 4 | import java.util.Map; 5 | 6 | public interface CommonService { 7 | List getOption(Map params); 8 | 9 | Map getFollowByOption(Map params); 10 | 11 | void sh(Map params); 12 | 13 | int remindCount(Map params); 14 | 15 | Map selectCal(Map params); 16 | 17 | List> selectGroup(Map params); 18 | 19 | List> selectValue(Map params); 20 | } 21 | -------------------------------------------------------------------------------- /src/main/java/com/service/ConfigService.java: -------------------------------------------------------------------------------- 1 | 2 | package com.service; 3 | 4 | import java.util.Map; 5 | 6 | import com.baomidou.mybatisplus.service.IService; 7 | import com.entity.ConfigEntity; 8 | import com.utils.PageUtils; 9 | 10 | 11 | /** 12 | * 系统用户 13 | * @author yangliyuan 14 | * @date 2019年10月10日 上午9:18:20 15 | */ 16 | public interface ConfigService extends IService { 17 | PageUtils queryPage(Map params); 18 | } 19 | -------------------------------------------------------------------------------- /src/main/java/com/service/ForumService.java: -------------------------------------------------------------------------------- 1 | package com.service; 2 | 3 | import com.baomidou.mybatisplus.mapper.Wrapper; 4 | import com.baomidou.mybatisplus.service.IService; 5 | import com.utils.PageUtils; 6 | import com.entity.ForumEntity; 7 | import java.util.List; 8 | import java.util.Map; 9 | import com.entity.vo.ForumVO; 10 | import org.apache.ibatis.annotations.Param; 11 | import com.entity.view.ForumView; 12 | 13 | 14 | /** 15 | * 论坛表 16 | * 17 | * @author 18 | * @email 19 | * @date 2020-11-30 11:35:10 20 | */ 21 | public interface ForumService extends IService { 22 | 23 | PageUtils queryPage(Map params); 24 | 25 | List selectListVO(Wrapper wrapper); 26 | 27 | ForumVO selectVO(@Param("ew") Wrapper wrapper); 28 | 29 | List selectListView(Wrapper wrapper); 30 | 31 | ForumView selectView(@Param("ew") Wrapper wrapper); 32 | 33 | PageUtils queryPage(Map params,Wrapper wrapper); 34 | 35 | } 36 | 37 | -------------------------------------------------------------------------------- /src/main/java/com/service/OrdersService.java: -------------------------------------------------------------------------------- 1 | package com.service; 2 | 3 | import com.baomidou.mybatisplus.mapper.Wrapper; 4 | import com.baomidou.mybatisplus.service.IService; 5 | import com.utils.PageUtils; 6 | import com.entity.OrdersEntity; 7 | import java.util.List; 8 | import java.util.Map; 9 | import com.entity.vo.OrdersVO; 10 | import org.apache.ibatis.annotations.Param; 11 | import com.entity.view.OrdersView; 12 | 13 | 14 | /** 15 | * 订单 16 | * 17 | * @author 18 | * @email 19 | * @date 2020-11-30 11:35:10 20 | */ 21 | public interface OrdersService extends IService { 22 | 23 | PageUtils queryPage(Map params); 24 | 25 | List selectListVO(Wrapper wrapper); 26 | 27 | OrdersVO selectVO(@Param("ew") Wrapper wrapper); 28 | 29 | List selectListView(Wrapper wrapper); 30 | 31 | OrdersView selectView(@Param("ew") Wrapper wrapper); 32 | 33 | PageUtils queryPage(Map params,Wrapper wrapper); 34 | 35 | } 36 | 37 | -------------------------------------------------------------------------------- /src/main/java/com/service/StoreupService.java: -------------------------------------------------------------------------------- 1 | package com.service; 2 | 3 | import com.baomidou.mybatisplus.mapper.Wrapper; 4 | import com.baomidou.mybatisplus.service.IService; 5 | import com.utils.PageUtils; 6 | import com.entity.StoreupEntity; 7 | import java.util.List; 8 | import java.util.Map; 9 | import com.entity.vo.StoreupVO; 10 | import org.apache.ibatis.annotations.Param; 11 | import com.entity.view.StoreupView; 12 | 13 | 14 | /** 15 | * 收藏表 16 | * 17 | * @author 18 | * @email 19 | * @date 2020-11-30 11:35:10 20 | */ 21 | public interface StoreupService extends IService { 22 | 23 | PageUtils queryPage(Map params); 24 | 25 | List selectListVO(Wrapper wrapper); 26 | 27 | StoreupVO selectVO(@Param("ew") Wrapper wrapper); 28 | 29 | List selectListView(Wrapper wrapper); 30 | 31 | StoreupView selectView(@Param("ew") Wrapper wrapper); 32 | 33 | PageUtils queryPage(Map params,Wrapper wrapper); 34 | 35 | } 36 | 37 | -------------------------------------------------------------------------------- /src/main/java/com/service/TokenService.java: -------------------------------------------------------------------------------- 1 | 2 | package com.service; 3 | 4 | import java.util.List; 5 | import java.util.Map; 6 | 7 | import com.baomidou.mybatisplus.mapper.Wrapper; 8 | import com.baomidou.mybatisplus.service.IService; 9 | import com.entity.TokenEntity; 10 | import com.utils.PageUtils; 11 | 12 | 13 | /** 14 | * token 15 | * @author yangliyuan 16 | * @date 2019年10月10日 上午9:18:20 17 | */ 18 | public interface TokenService extends IService { 19 | PageUtils queryPage(Map params); 20 | 21 | List selectListView(Wrapper wrapper); 22 | 23 | PageUtils queryPage(Map params,Wrapper wrapper); 24 | 25 | String generateToken(Long userid,String username,String tableName, String role); 26 | 27 | TokenEntity getTokenEntity(String token); 28 | } 29 | -------------------------------------------------------------------------------- /src/main/java/com/service/UserService.java: -------------------------------------------------------------------------------- 1 | 2 | package com.service; 3 | 4 | import java.util.List; 5 | import java.util.Map; 6 | 7 | import org.apache.ibatis.annotations.Param; 8 | 9 | import com.baomidou.mybatisplus.mapper.Wrapper; 10 | import com.baomidou.mybatisplus.service.IService; 11 | import com.entity.UserEntity; 12 | import com.utils.PageUtils; 13 | 14 | 15 | /** 16 | * 系统用户 17 | * @author yangliyuan 18 | * @date 2019年10月10日 上午9:18:20 19 | */ 20 | public interface UserService extends IService { 21 | PageUtils queryPage(Map params); 22 | 23 | List selectListView(Wrapper wrapper); 24 | 25 | PageUtils queryPage(Map params,Wrapper wrapper); 26 | 27 | } 28 | -------------------------------------------------------------------------------- /src/main/java/com/service/impl/ConfigServiceImpl.java: -------------------------------------------------------------------------------- 1 | 2 | package com.service.impl; 3 | 4 | 5 | import java.util.Map; 6 | 7 | import org.springframework.stereotype.Service; 8 | 9 | import com.baomidou.mybatisplus.mapper.EntityWrapper; 10 | import com.baomidou.mybatisplus.plugins.Page; 11 | import com.baomidou.mybatisplus.service.impl.ServiceImpl; 12 | import com.dao.ConfigDao; 13 | import com.entity.ConfigEntity; 14 | import com.entity.UserEntity; 15 | import com.service.ConfigService; 16 | import com.utils.PageUtils; 17 | import com.utils.Query; 18 | 19 | 20 | /** 21 | * 系统用户 22 | * @author yangliyuan 23 | * @date 2019年10月10日 上午9:17:59 24 | */ 25 | @Service("configService") 26 | public class ConfigServiceImpl extends ServiceImpl implements ConfigService { 27 | @Override 28 | public PageUtils queryPage(Map params) { 29 | Page page = this.selectPage( 30 | new Query(params).getPage(), 31 | new EntityWrapper() 32 | ); 33 | return new PageUtils(page); 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /src/main/java/com/utils/CommonUtil.java: -------------------------------------------------------------------------------- 1 | package com.utils; 2 | 3 | import java.util.Random; 4 | 5 | public class CommonUtil { 6 | /** 7 | * 获取随机字符串 8 | * 9 | * @param num 10 | * @return 11 | */ 12 | public static String getRandomString(Integer num) { 13 | String base = "abcdefghijklmnopqrstuvwxyz0123456789"; 14 | Random random = new Random(); 15 | StringBuffer sb = new StringBuffer(); 16 | for (int i = 0; i < num; i++) { 17 | int number = random.nextInt(base.length()); 18 | sb.append(base.charAt(number)); 19 | } 20 | return sb.toString(); 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /src/main/java/com/utils/FileUtil.java: -------------------------------------------------------------------------------- 1 | package com.utils; 2 | 3 | import java.io.ByteArrayOutputStream; 4 | import java.io.File; 5 | import java.io.FileInputStream; 6 | import java.io.IOException; 7 | import java.io.InputStream; 8 | 9 | /** 10 | * @author yangliyuan 11 | * @version 创建时间:2020年2月7日 下午8:01:14 12 | * 类说明 : 13 | */ 14 | 15 | public class FileUtil { 16 | public static byte[] FileToByte(File file) throws IOException { 17 | // 将数据转为流 18 | @SuppressWarnings("resource") 19 | InputStream content = new FileInputStream(file); 20 | ByteArrayOutputStream swapStream = new ByteArrayOutputStream(); 21 | byte[] buff = new byte[100]; 22 | int rc = 0; 23 | while ((rc = content.read(buff, 0, 100)) > 0) { 24 | swapStream.write(buff, 0, rc); 25 | } 26 | // 获得二进制数组 27 | return swapStream.toByteArray(); 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /src/main/java/com/utils/JQPageInfo.java: -------------------------------------------------------------------------------- 1 | package com.utils; 2 | 3 | public class JQPageInfo{ 4 | private Integer page; 5 | 6 | private Integer limit; 7 | 8 | private String sidx; 9 | 10 | private String order; 11 | 12 | private Integer offset; 13 | 14 | public Integer getPage() { 15 | return page; 16 | } 17 | 18 | public void setPage(Integer page) { 19 | this.page = page; 20 | } 21 | 22 | public Integer getLimit() { 23 | return limit; 24 | } 25 | 26 | public void setLimit(Integer limit) { 27 | this.limit = limit; 28 | } 29 | 30 | public String getSidx() { 31 | return sidx; 32 | } 33 | 34 | public void setSidx(String sidx) { 35 | this.sidx = sidx; 36 | } 37 | 38 | public String getOrder() { 39 | return order; 40 | } 41 | 42 | public void setOrder(String order) { 43 | this.order = order; 44 | } 45 | 46 | public Integer getOffset() { 47 | return offset; 48 | } 49 | 50 | public void setOffset(Integer offset) { 51 | this.offset = offset; 52 | } 53 | 54 | } 55 | -------------------------------------------------------------------------------- /src/main/java/com/utils/R.java: -------------------------------------------------------------------------------- 1 | package com.utils; 2 | 3 | import java.util.HashMap; 4 | import java.util.Map; 5 | 6 | /** 7 | * 返回数据 8 | */ 9 | public class R extends HashMap { 10 | private static final long serialVersionUID = 1L; 11 | 12 | public R() { 13 | put("code", 0); 14 | } 15 | 16 | public static R error() { 17 | return error(500, "未知异常,请联系管理员"); 18 | } 19 | 20 | public static R error(String msg) { 21 | return error(500, msg); 22 | } 23 | 24 | public static R error(int code, String msg) { 25 | R r = new R(); 26 | r.put("code", code); 27 | r.put("msg", msg); 28 | return r; 29 | } 30 | 31 | public static R ok(String msg) { 32 | R r = new R(); 33 | r.put("msg", msg); 34 | return r; 35 | } 36 | 37 | public static R ok(Map map) { 38 | R r = new R(); 39 | r.putAll(map); 40 | return r; 41 | } 42 | 43 | public static R ok() { 44 | return new R(); 45 | } 46 | 47 | public R put(String key, Object value) { 48 | super.put(key, value); 49 | return this; 50 | } 51 | } 52 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/1-install.bat: -------------------------------------------------------------------------------- 1 | cnpm install -------------------------------------------------------------------------------- /src/main/resources/admin/admin/2-run.bat: -------------------------------------------------------------------------------- 1 | cnpm run serve -------------------------------------------------------------------------------- /src/main/resources/admin/admin/babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | presets: [ 3 | '@vue/cli-plugin-babel/preset' 4 | ] 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/dist/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/admin/admin/dist/favicon.ico -------------------------------------------------------------------------------- /src/main/resources/admin/admin/dist/fonts/element-icons.535877f5.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/admin/admin/dist/fonts/element-icons.535877f5.woff -------------------------------------------------------------------------------- /src/main/resources/admin/admin/dist/fonts/element-icons.732389de.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/admin/admin/dist/fonts/element-icons.732389de.ttf -------------------------------------------------------------------------------- /src/main/resources/admin/admin/dist/img/404.3648f234.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/admin/admin/dist/img/404.3648f234.png -------------------------------------------------------------------------------- /src/main/resources/admin/admin/dist/img/zhongguo.20798bfa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/admin/admin/dist/img/zhongguo.20798bfa.png -------------------------------------------------------------------------------- /src/main/resources/admin/admin/dist/index.html: -------------------------------------------------------------------------------- 1 | 后台管理系统
-------------------------------------------------------------------------------- /src/main/resources/admin/admin/muban.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/admin/admin/muban.jpg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/admin/admin/public/favicon.ico -------------------------------------------------------------------------------- /src/main/resources/admin/admin/public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 后台管理系统 10 | 11 | 12 | 13 | 17 |
18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/App.vue: -------------------------------------------------------------------------------- 1 | 6 | 7 | 12 | 13 | 31 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/assets/css/element-variables.scss: -------------------------------------------------------------------------------- 1 | /* 改变主题色变量 */ 2 | $--color-primary: #00c292 !default; 3 | $--color-success: #67c23a !default; 4 | $--color-warning: #e6a23c !default; 5 | $--color-danger: #f56c6c !default; 6 | $--color-info: #909399 !default; 7 | /* 改变 icon 字体路径变量,必需 */ 8 | $--font-path: '~element-ui/lib/theme-chalk/fonts'; 9 | @import "~element-ui/packages/theme-chalk/src/index"; -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/assets/css/style.scss: -------------------------------------------------------------------------------- 1 | .form-content { 2 | background: #ffffff; 3 | padding: 10px 10px 0 10px; 4 | } 5 | .table-content { 6 | background: #ffffff; 7 | padding: 0 10px; 8 | } 9 | .pagination-content { 10 | margin-top: 10px; 11 | padding-bottom: 10px; 12 | text-align: right; 13 | } 14 | .detail-form-content{ 15 | background: #ffffff; 16 | padding: 10px; 17 | .el-input{ 18 | min-width: 200px; 19 | max-width: 600px; 20 | } 21 | } 22 | .bg { 23 | position: absolute; 24 | top: 0; 25 | left: 0; 26 | height: 100%; 27 | } 28 | .login-form { 29 | position: absolute; 30 | top: 0; 31 | right: 0; 32 | width: 350px; 33 | height: 100%; 34 | background: #ffffff; 35 | padding: 0 60px; 36 | font-size: 18px; 37 | font-weight: bold; 38 | } 39 | .h1 { 40 | margin-top: 80px; 41 | font-size: 20px; 42 | font-weight: bold; 43 | } 44 | .btn-login { 45 | margin-top: 50px; 46 | width: 100%; 47 | } -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/assets/img/404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/admin/admin/src/assets/img/404.png -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/assets/img/avator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/admin/admin/src/assets/img/avator.png -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/assets/img/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/admin/admin/src/assets/img/bg.jpg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/assets/img/captcha.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/admin/admin/src/assets/img/captcha.jpg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/assets/img/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/admin/admin/src/assets/img/login.png -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/assets/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/admin/admin/src/assets/img/logo.png -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/assets/img/password.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/admin/admin/src/assets/img/password.png -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/assets/img/role.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/admin/admin/src/assets/img/role.png -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/assets/img/test/jianshe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/admin/admin/src/assets/img/test/jianshe.png -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/assets/img/test/jiaotong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/admin/admin/src/assets/img/test/jiaotong.png -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/assets/img/test/nongye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/admin/admin/src/assets/img/test/nongye.png -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/assets/img/test/weixin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/admin/admin/src/assets/img/test/weixin.png -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/assets/img/test/zhifubao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/admin/admin/src/assets/img/test/zhifubao.png -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/assets/img/test/zhongguo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/admin/admin/src/assets/img/test/zhongguo.png -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/assets/img/username.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/admin/admin/src/assets/img/username.png -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/components/SvgIcon/index.vue: -------------------------------------------------------------------------------- 1 | 6 | 7 | 34 | 35 | 44 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/index.js: -------------------------------------------------------------------------------- 1 | import Vue from 'vue' 2 | import SvgIcon from '@/components/SvgIcon'// svg component 3 | 4 | // register globally 5 | Vue.component('svg-icon', SvgIcon) 6 | 7 | const req = require.context('./svg/svg', false, /\.svg$/) 8 | const requireAll = requireContext => requireContext.keys().map(requireContext) 9 | requireAll(req) 10 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/bug.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/build.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/channel.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/chart.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/clipboard.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/code.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/component.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/date.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/documentation.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/download.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/drag.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/druid.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/edit.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/education.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/email.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/excel.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/file.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/form.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/fullscreen.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/icon.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/link.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/list.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/lock.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/logininfor.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/menu.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/message.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/money.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/monitor.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/nested.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/nested0.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/operation.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/password.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/password0.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/peoples.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/phone.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/post.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/search.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/sender.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/server.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/size.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/star.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/AI.svg: -------------------------------------------------------------------------------- 1 | 物联设备 -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/AIDeviceLayout.svg: -------------------------------------------------------------------------------- 1 | 物联网配置 -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/EIM.svg: -------------------------------------------------------------------------------- 1 | 企业信息 -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/board.svg: -------------------------------------------------------------------------------- 1 | 看板管理 -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/code.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/company.svg: -------------------------------------------------------------------------------- 1 | 基本信息 -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/deviceMonitorData.svg: -------------------------------------------------------------------------------- 1 | 监测数据 -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/documentation.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/email.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/farmingProject.svg: -------------------------------------------------------------------------------- 1 | 农事项目 -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/finance.svg: -------------------------------------------------------------------------------- 1 | 财务管理 -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/financeBudget.svg: -------------------------------------------------------------------------------- 1 | 预算统计 -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/firms.svg: -------------------------------------------------------------------------------- 1 | 厂商管理2 -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/harvestBatch.svg: -------------------------------------------------------------------------------- 1 | 采收批次管理 -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/harvestDetection.svg: -------------------------------------------------------------------------------- 1 | 采收检测标准 -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/harvestManage.svg: -------------------------------------------------------------------------------- 1 | 采收管理 -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/harvestWorks.svg: -------------------------------------------------------------------------------- 1 | 采收检测工单 -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/heavyMetalDetection.svg: -------------------------------------------------------------------------------- 1 | 重金属检测项 -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/inspection.svg: -------------------------------------------------------------------------------- 1 | 巡视反馈 -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/internet.svg: -------------------------------------------------------------------------------- 1 | 物联网管理置 -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/mainSystem.svg: -------------------------------------------------------------------------------- 1 | 主系统 -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/menu.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/monitorEquipment.svg: -------------------------------------------------------------------------------- 1 | 监测设备 -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/order.svg: -------------------------------------------------------------------------------- 1 | 工单总览 -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/password.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/peoples.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/pesticideResidue.svg: -------------------------------------------------------------------------------- 1 | 农残检测项 -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/pests.svg: -------------------------------------------------------------------------------- 1 | 病虫害反馈 -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/phone.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/retroactiveCoding.svg: -------------------------------------------------------------------------------- 1 | 追溯打码 -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/source.svg: -------------------------------------------------------------------------------- 1 | 溯源管理 -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/task.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/traceability.svg: -------------------------------------------------------------------------------- 1 | 溯源管理 -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/traceabilityList.svg: -------------------------------------------------------------------------------- 1 | 溯源配置 -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/traceabilityStyle.svg: -------------------------------------------------------------------------------- 1 | 溯源管理样式 -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/user.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/user0.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/validCode.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/video.svg: -------------------------------------------------------------------------------- 1 | 视频云配置sp -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/videoKey.svg: -------------------------------------------------------------------------------- 1 | 视频云配置1 -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/warnings.svg: -------------------------------------------------------------------------------- 1 | 预警阈值 -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/tab.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/table.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/table0.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/task.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/template.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/theme.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/tree-table.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/user.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/user0.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/validCode.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svgo.yml: -------------------------------------------------------------------------------- 1 | # replace default config 2 | # 基于svgo对svg文件进行压缩:https://panjiachen.github.io/vue-element-admin-site/zh/feature/script/svgo.html 3 | # multipass: true 4 | # full: true 5 | 6 | plugins: 7 | 8 | # - name 9 | # 10 | # or: 11 | # - name: false 12 | # - name: true 13 | # 14 | # or: 15 | # - name: 16 | # param1: 1 17 | # param2: 2 18 | 19 | - removeAttrs: 20 | attrs: 21 | - 'fill' 22 | - 'fill-rule' 23 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/store/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/admin/admin/src/store/store.js -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/utils/base.js: -------------------------------------------------------------------------------- 1 | const base = { 2 | get() { 3 | return { 4 | url : "http://localhost:8080/springboot58ly4/", 5 | name: "springboot58ly4", 6 | // 退出到首页链接 7 | indexUrl: 'http://localhost:8080/springboot58ly4/front/index.html' 8 | }; 9 | }, 10 | getProjectName(){ 11 | return { 12 | projectName: "考研资讯平台" 13 | } 14 | } 15 | } 16 | export default base 17 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/utils/http.js: -------------------------------------------------------------------------------- 1 | import axios from 'axios' 2 | import router from '@/router/router-static' 3 | import storage from '@/utils/storage' 4 | 5 | const http = axios.create({ 6 | timeout: 1000 * 86400, 7 | withCredentials: true, 8 | baseURL: '/springboot58ly4', 9 | headers: { 10 | 'Content-Type': 'application/json; charset=utf-8' 11 | } 12 | }) 13 | // 请求拦截 14 | http.interceptors.request.use(config => { 15 | config.headers['Token'] = storage.get('Token') // 请求头带上token 16 | return config 17 | }, error => { 18 | return Promise.reject(error) 19 | }) 20 | // 响应拦截 21 | http.interceptors.response.use(response => { 22 | if (response.data && response.data.code === 401) { // 401, token失效 23 | router.push({ name: 'login' }) 24 | } 25 | return response 26 | }, error => { 27 | return Promise.reject(error) 28 | }) 29 | export default http -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/utils/i18n.js: -------------------------------------------------------------------------------- 1 | // translate router.meta.title, be used in breadcrumb sidebar tagsview 2 | export function generateTitle(title) { 3 | const hasKey = this.$te('route.' + title) 4 | 5 | if (hasKey) { 6 | // $t :this method from vue-i18n, inject in @/lang/index.js 7 | const translatedTitle = this.$t('route.' + title) 8 | 9 | return translatedTitle 10 | } 11 | return title 12 | } 13 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/utils/storage.js: -------------------------------------------------------------------------------- 1 | const storage = { 2 | set(key, value) { 3 | localStorage.setItem(key, JSON.stringify(value)); 4 | }, 5 | get(key) { 6 | return localStorage.getItem(key)?localStorage.getItem(key).replace('"','').replace('"',''):""; 7 | }, 8 | getObj(key) { 9 | return localStorage.getItem(key)?JSON.parse(localStorage.getItem(key)):null; 10 | }, 11 | remove(key) { 12 | localStorage.removeItem(key); 13 | } 14 | } 15 | export default storage; -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/views/404.vue: -------------------------------------------------------------------------------- 1 | 10 | 11 | 20 | 21 | 46 | 47 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/views/index.vue: -------------------------------------------------------------------------------- 1 | 10 | 22 | 23 | 33 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/vm/base.js.vm: -------------------------------------------------------------------------------- 1 | const base = { 2 | url : "http://localhost:8080/${schemaname}/", 3 | name: "${schemaname}" 4 | } 5 | 6 | export default base -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/vm/http.js.vm: -------------------------------------------------------------------------------- 1 | import axios from 'axios' 2 | import router from '@/router/router-static' 3 | import storage from '@/utils/storage' 4 | 5 | const http = axios.create({ 6 | timeout: 1000 * 86400, 7 | withCredentials: true, 8 | baseURL: '/${schemaname}', 9 | headers: { 10 | 'Content-Type': 'application/json; charset=utf-8' 11 | } 12 | }) 13 | // 请求拦截 14 | http.interceptors.request.use(config => { 15 | // config.headers['token'] = storage.get('token') // 请求头带上token 16 | // config.headers['Authorization'] = storage.get('Authorization') // 请求头带上token 17 | config.headers['Token'] = storage.get('Token') // 请求头带上token 18 | return config 19 | }, error => { 20 | return Promise.reject(error) 21 | }) 22 | // 响应拦截 23 | http.interceptors.response.use(response => { 24 | if (response.data && response.data.code === 401) { // 401, token失效 25 | // clearLoginInfo() 26 | router.push({ name: 'login' }) 27 | } 28 | return response 29 | }, error => { 30 | return Promise.reject(error) 31 | }) 32 | export default http -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/vm/menu.js.vm: -------------------------------------------------------------------------------- 1 | const menu = { 2 | list() { 3 | return ${roleMenus} 4 | } 5 | } 6 | export default menu; 7 | -------------------------------------------------------------------------------- /src/main/resources/front/front/css/common.css: -------------------------------------------------------------------------------- 1 | /** 2 | * 工具类css 3 | */ 4 | /* 嵌套文字横线 */ 5 | .line-container { 6 | width: 100%; 7 | background: url(../img/line.gif) bottom center; 8 | background-repeat: no-repeat; 9 | text-align: center; 10 | padding-bottom: 20px; 11 | } 12 | 13 | .line { 14 | font-size: 34px; 15 | color: #643e33; 16 | line-height: 1; 17 | font-weight: bold; 18 | font-style: italic; 19 | } 20 | 21 | /** 22 | * 工具类css end 23 | */ 24 | -------------------------------------------------------------------------------- /src/main/resources/front/front/elementui/fonts/element-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/elementui/fonts/element-icons.ttf -------------------------------------------------------------------------------- /src/main/resources/front/front/elementui/fonts/element-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/elementui/fonts/element-icons.woff -------------------------------------------------------------------------------- /src/main/resources/front/front/img/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/img/0.png -------------------------------------------------------------------------------- /src/main/resources/front/front/img/avator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/img/avator.png -------------------------------------------------------------------------------- /src/main/resources/front/front/img/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/img/banner.jpg -------------------------------------------------------------------------------- /src/main/resources/front/front/img/db1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/img/db1.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/img/db1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/img/db1.png -------------------------------------------------------------------------------- /src/main/resources/front/front/img/db2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/img/db2.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/img/db3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/img/db3.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/img/db4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/img/db4.png -------------------------------------------------------------------------------- /src/main/resources/front/front/img/index_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/img/index_icon.png -------------------------------------------------------------------------------- /src/main/resources/front/front/img/jianshe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/img/jianshe.png -------------------------------------------------------------------------------- /src/main/resources/front/front/img/jiaotong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/img/jiaotong.png -------------------------------------------------------------------------------- /src/main/resources/front/front/img/line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/img/line.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/img/news-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/img/news-bg.jpg -------------------------------------------------------------------------------- /src/main/resources/front/front/img/nongye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/img/nongye.png -------------------------------------------------------------------------------- /src/main/resources/front/front/img/now.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/img/now.png -------------------------------------------------------------------------------- /src/main/resources/front/front/img/product-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/img/product-bg.jpg -------------------------------------------------------------------------------- /src/main/resources/front/front/img/seckilling.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/img/seckilling.jpg -------------------------------------------------------------------------------- /src/main/resources/front/front/img/select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/img/select.png -------------------------------------------------------------------------------- /src/main/resources/front/front/img/test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/img/test.jpg -------------------------------------------------------------------------------- /src/main/resources/front/front/img/unselect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/img/unselect.png -------------------------------------------------------------------------------- /src/main/resources/front/front/img/weixin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/img/weixin.png -------------------------------------------------------------------------------- /src/main/resources/front/front/img/yuan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/img/yuan.png -------------------------------------------------------------------------------- /src/main/resources/front/front/img/zhifubao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/img/zhifubao.png -------------------------------------------------------------------------------- /src/main/resources/front/front/img/zhongguo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/img/zhongguo.png -------------------------------------------------------------------------------- /src/main/resources/front/front/js/utils.js: -------------------------------------------------------------------------------- 1 | /** 2 | * 页面跳转 3 | * @param {Object} url 4 | */ 5 | function jump(url) { 6 | if (!url || url == 'null' || url == null) { 7 | window.location.href = './index.html'; 8 | } 9 | // 路径访问设置 10 | localStorage.setItem('iframeUrl', url.replace('../', './pages/')); 11 | window.location.href = url; 12 | } 13 | 14 | /** 15 | * 返回 16 | */ 17 | function back(num = -1) { 18 | window.history.go(num) 19 | } 20 | 21 | /** 22 | * 生成订单 23 | */ 24 | function genTradeNo() { 25 | var date = new Date(); 26 | var tradeNo = date.getFullYear().toString() + (date.getMonth() + 1).toString() + 27 | date.getDate().toString() + date.getHours().toString() + date.getMinutes().toString() + 28 | date.getSeconds().toString() + date.getMilliseconds().toString(); 29 | for (var i = 0; i < 5; i++) //5位随机数,用以加在时间戳后面。 30 | { 31 | tradeNo += Math.floor(Math.random() * 10); 32 | } 33 | return tradeNo; 34 | } 35 | -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/css/modules/code.css: -------------------------------------------------------------------------------- 1 | /** layui-v2.5.6 MIT License By https://www.layui.com */ 2 | html #layuicss-skincodecss{display:none;position:absolute;width:1989px}.layui-code-h3,.layui-code-view{position:relative;font-size:12px}.layui-code-view{display:block;margin:10px 0;padding:0;border:1px solid #e2e2e2;border-left-width:6px;background-color:#F2F2F2;color:#333;font-family:Courier New}.layui-code-h3{padding:0 10px;height:32px;line-height:32px;border-bottom:1px solid #e2e2e2}.layui-code-h3 a{position:absolute;right:10px;top:0;color:#999}.layui-code-view .layui-code-ol{position:relative;overflow:auto}.layui-code-view .layui-code-ol li{position:relative;margin-left:45px;line-height:20px;padding:0 5px;border-left:1px solid #e2e2e2;list-style-type:decimal-leading-zero;*list-style-type:decimal;background-color:#fff}.layui-code-view pre{margin:0}.layui-code-notepad{border:1px solid #0C0C0C;border-left-color:#3F3F3F;background-color:#0C0C0C;color:#C2BE9E}.layui-code-notepad .layui-code-h3{border-bottom:none}.layui-code-notepad .layui-code-ol li{background-color:#3F3F3F;border-left:none} -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/css/modules/layer/default/icon-ext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/layui/css/modules/layer/default/icon-ext.png -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/css/modules/layer/default/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/layui/css/modules/layer/default/icon.png -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/css/modules/layer/default/loading-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/layui/css/modules/layer/default/loading-0.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/css/modules/layer/default/loading-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/layui/css/modules/layer/default/loading-1.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/css/modules/layer/default/loading-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/layui/css/modules/layer/default/loading-2.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/font/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/layui/font/iconfont.eot -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/font/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/layui/font/iconfont.ttf -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/font/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/layui/font/iconfont.woff -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/font/iconfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/layui/font/iconfont.woff2 -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/layui/images/face/0.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/layui/images/face/1.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/layui/images/face/10.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/layui/images/face/11.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/layui/images/face/12.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/13.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/layui/images/face/13.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/14.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/layui/images/face/14.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/layui/images/face/15.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/layui/images/face/16.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/17.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/layui/images/face/17.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/18.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/layui/images/face/18.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/19.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/layui/images/face/19.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/layui/images/face/2.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/20.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/layui/images/face/20.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/21.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/layui/images/face/21.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/22.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/layui/images/face/22.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/23.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/layui/images/face/23.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/layui/images/face/24.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/25.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/layui/images/face/25.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/26.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/layui/images/face/26.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/27.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/layui/images/face/27.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/28.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/layui/images/face/28.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/29.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/layui/images/face/29.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/layui/images/face/3.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/30.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/layui/images/face/30.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/31.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/layui/images/face/31.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/layui/images/face/32.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/33.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/layui/images/face/33.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/34.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/layui/images/face/34.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/35.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/layui/images/face/35.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/36.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/layui/images/face/36.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/37.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/layui/images/face/37.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/38.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/layui/images/face/38.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/39.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/layui/images/face/39.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/layui/images/face/4.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/40.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/layui/images/face/40.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/41.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/layui/images/face/41.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/42.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/layui/images/face/42.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/43.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/layui/images/face/43.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/44.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/layui/images/face/44.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/45.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/layui/images/face/45.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/46.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/layui/images/face/46.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/47.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/layui/images/face/47.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/layui/images/face/48.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/49.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/layui/images/face/49.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/layui/images/face/5.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/50.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/layui/images/face/50.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/51.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/layui/images/face/51.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/52.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/layui/images/face/52.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/53.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/layui/images/face/53.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/54.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/layui/images/face/54.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/55.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/layui/images/face/55.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/56.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/layui/images/face/56.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/57.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/layui/images/face/57.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/58.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/layui/images/face/58.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/59.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/layui/images/face/59.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/layui/images/face/6.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/60.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/layui/images/face/60.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/61.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/layui/images/face/61.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/62.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/layui/images/face/62.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/63.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/layui/images/face/63.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/layui/images/face/64.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/65.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/layui/images/face/65.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/66.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/layui/images/face/66.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/67.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/layui/images/face/67.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/68.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/layui/images/face/68.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/69.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/layui/images/face/69.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/layui/images/face/7.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/70.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/layui/images/face/70.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/71.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/layui/images/face/71.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/layui/images/face/8.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/layui/images/face/9.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/modules/config.js: -------------------------------------------------------------------------------- 1 | window.rootPath = (function (src) { 2 | src = document.scripts[document.scripts.length - 1].src; 3 | console.log(src.substring(0, src.lastIndexOf("/") + 1)) 4 | return src.substring(0, src.lastIndexOf("/") + 1); 5 | })(); 6 | 7 | layui.config({ 8 | base: rootPath, 9 | version: true 10 | }).extend({ 11 | http: 'http/http', // 网络请求接口扩展 12 | layarea: 'layarea/layarea' ,// 省市区联动选择器 13 | tinymce: 'tinymce/tinymce' // 富文本编辑器 14 | }); -------------------------------------------------------------------------------- /src/main/resources/front/front/modules/tinymce/tinymce/langs/readme.md: -------------------------------------------------------------------------------- 1 | This is where language files should be placed. 2 | 3 | Please DO NOT translate these directly use this service: https://www.transifex.com/projects/p/tinymce/ 4 | -------------------------------------------------------------------------------- /src/main/resources/front/front/modules/tinymce/tinymce/plugins/colorpicker/plugin.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Tiny Technologies, Inc. All rights reserved. 3 | * Licensed under the LGPL or a commercial license. 4 | * For LGPL see License.txt in the project root for license information. 5 | * For commercial licenses see https://www.tiny.cloud/ 6 | * 7 | * Version: 5.2.0 (2020-02-13) 8 | */ 9 | (function (domGlobals) { 10 | 'use strict'; 11 | 12 | var global = tinymce.util.Tools.resolve('tinymce.PluginManager'); 13 | 14 | function Plugin () { 15 | global.add('colorpicker', function () { 16 | domGlobals.console.warn('Color picker plugin is now built in to the core editor, please remove it from your editor configuration'); 17 | }); 18 | } 19 | 20 | Plugin(); 21 | 22 | }(window)); 23 | -------------------------------------------------------------------------------- /src/main/resources/front/front/modules/tinymce/tinymce/plugins/colorpicker/plugin.min.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Tiny Technologies, Inc. All rights reserved. 3 | * Licensed under the LGPL or a commercial license. 4 | * For LGPL see License.txt in the project root for license information. 5 | * For commercial licenses see https://www.tiny.cloud/ 6 | * 7 | * Version: 5.2.0 (2020-02-13) 8 | */ 9 | !function(o){"use strict";var i=tinymce.util.Tools.resolve("tinymce.PluginManager");!function n(){i.add("colorpicker",function(){o.console.warn("Color picker plugin is now built in to the core editor, please remove it from your editor configuration")})}()}(window); -------------------------------------------------------------------------------- /src/main/resources/front/front/modules/tinymce/tinymce/plugins/contextmenu/plugin.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Tiny Technologies, Inc. All rights reserved. 3 | * Licensed under the LGPL or a commercial license. 4 | * For LGPL see License.txt in the project root for license information. 5 | * For commercial licenses see https://www.tiny.cloud/ 6 | * 7 | * Version: 5.2.0 (2020-02-13) 8 | */ 9 | (function (domGlobals) { 10 | 'use strict'; 11 | 12 | var global = tinymce.util.Tools.resolve('tinymce.PluginManager'); 13 | 14 | function Plugin () { 15 | global.add('contextmenu', function () { 16 | domGlobals.console.warn('Context menu plugin is now built in to the core editor, please remove it from your editor configuration'); 17 | }); 18 | } 19 | 20 | Plugin(); 21 | 22 | }(window)); 23 | -------------------------------------------------------------------------------- /src/main/resources/front/front/modules/tinymce/tinymce/plugins/contextmenu/plugin.min.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Tiny Technologies, Inc. All rights reserved. 3 | * Licensed under the LGPL or a commercial license. 4 | * For LGPL see License.txt in the project root for license information. 5 | * For commercial licenses see https://www.tiny.cloud/ 6 | * 7 | * Version: 5.2.0 (2020-02-13) 8 | */ 9 | !function(n){"use strict";var o=tinymce.util.Tools.resolve("tinymce.PluginManager");!function e(){o.add("contextmenu",function(){n.console.warn("Context menu plugin is now built in to the core editor, please remove it from your editor configuration")})}()}(window); -------------------------------------------------------------------------------- /src/main/resources/front/front/modules/tinymce/tinymce/plugins/hr/plugin.min.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Tiny Technologies, Inc. All rights reserved. 3 | * Licensed under the LGPL or a commercial license. 4 | * For LGPL see License.txt in the project root for license information. 5 | * For commercial licenses see https://www.tiny.cloud/ 6 | * 7 | * Version: 5.2.0 (2020-02-13) 8 | */ 9 | !function(){"use strict";var n=tinymce.util.Tools.resolve("tinymce.PluginManager"),o=function(n){n.addCommand("InsertHorizontalRule",function(){n.execCommand("mceInsertContent",!1,"
")})},t=function(n){n.ui.registry.addButton("hr",{icon:"horizontal-rule",tooltip:"Horizontal line",onAction:function(){return n.execCommand("InsertHorizontalRule")}}),n.ui.registry.addMenuItem("hr",{icon:"horizontal-rule",text:"Horizontal line",onAction:function(){return n.execCommand("InsertHorizontalRule")}})};!function e(){n.add("hr",function(n){o(n),t(n)})}()}(); -------------------------------------------------------------------------------- /src/main/resources/front/front/modules/tinymce/tinymce/plugins/print/plugin.min.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Tiny Technologies, Inc. All rights reserved. 3 | * Licensed under the LGPL or a commercial license. 4 | * For LGPL see License.txt in the project root for license information. 5 | * For commercial licenses see https://www.tiny.cloud/ 6 | * 7 | * Version: 5.2.0 (2020-02-13) 8 | */ 9 | !function(){"use strict";var n=tinymce.util.Tools.resolve("tinymce.PluginManager"),t=tinymce.util.Tools.resolve("tinymce.Env"),i=function(n){n.addCommand("mcePrint",function(){t.browser.isIE()?n.getDoc().execCommand("print",!1,null):n.getWin().print()})},e=function(n){n.ui.registry.addButton("print",{icon:"print",tooltip:"Print",onAction:function(){return n.execCommand("mcePrint")}}),n.ui.registry.addMenuItem("print",{text:"Print...",icon:"print",onAction:function(){return n.execCommand("mcePrint")}})};!function o(){n.add("print",function(n){i(n),e(n),n.addShortcut("Meta+P","","mcePrint")})}()}(); -------------------------------------------------------------------------------- /src/main/resources/front/front/modules/tinymce/tinymce/plugins/textcolor/plugin.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Tiny Technologies, Inc. All rights reserved. 3 | * Licensed under the LGPL or a commercial license. 4 | * For LGPL see License.txt in the project root for license information. 5 | * For commercial licenses see https://www.tiny.cloud/ 6 | * 7 | * Version: 5.2.0 (2020-02-13) 8 | */ 9 | (function (domGlobals) { 10 | 'use strict'; 11 | 12 | var global = tinymce.util.Tools.resolve('tinymce.PluginManager'); 13 | 14 | function Plugin () { 15 | global.add('textcolor', function () { 16 | domGlobals.console.warn('Text color plugin is now built in to the core editor, please remove it from your editor configuration'); 17 | }); 18 | } 19 | 20 | Plugin(); 21 | 22 | }(window)); 23 | -------------------------------------------------------------------------------- /src/main/resources/front/front/modules/tinymce/tinymce/plugins/textcolor/plugin.min.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Tiny Technologies, Inc. All rights reserved. 3 | * Licensed under the LGPL or a commercial license. 4 | * For LGPL see License.txt in the project root for license information. 5 | * For commercial licenses see https://www.tiny.cloud/ 6 | * 7 | * Version: 5.2.0 (2020-02-13) 8 | */ 9 | !function(o){"use strict";var i=tinymce.util.Tools.resolve("tinymce.PluginManager");!function n(){i.add("textcolor",function(){o.console.warn("Text color plugin is now built in to the core editor, please remove it from your editor configuration")})}()}(window); -------------------------------------------------------------------------------- /src/main/resources/front/front/modules/tinymce/tinymce/skins/content/default/content.min.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Tiny Technologies, Inc. All rights reserved. 3 | * Licensed under the LGPL or a commercial license. 4 | * For LGPL see License.txt in the project root for license information. 5 | * For commercial licenses see https://www.tiny.cloud/ 6 | */ 7 | body{font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Open Sans','Helvetica Neue',sans-serif;line-height:1.4;margin:1rem}table{border-collapse:collapse}table td,table th{border:1px solid #ccc;padding:.4rem}figure{display:table;margin:1rem auto}figure figcaption{color:#999;display:block;margin-top:.25rem;text-align:center}hr{border-color:#ccc;border-style:solid;border-width:1px 0 0 0}code{background-color:#e8e8e8;border-radius:3px;padding:.1rem .2rem}.mce-content-body:not([dir=rtl]) blockquote{border-left:2px solid #ccc;margin-left:1.5rem;padding-left:1rem}.mce-content-body[dir=rtl] blockquote{border-right:2px solid #ccc;margin-right:1.5rem;padding-right:1rem} 8 | /*# sourceMappingURL=content.min.css.map */ 9 | -------------------------------------------------------------------------------- /src/main/resources/front/front/modules/tinymce/tinymce/skins/content/writer/content.min.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Tiny Technologies, Inc. All rights reserved. 3 | * Licensed under the LGPL or a commercial license. 4 | * For LGPL see License.txt in the project root for license information. 5 | * For commercial licenses see https://www.tiny.cloud/ 6 | */ 7 | body{font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Open Sans','Helvetica Neue',sans-serif;line-height:1.4;margin:1rem auto;max-width:900px}table{border-collapse:collapse}table td,table th{border:1px solid #ccc;padding:.4rem}figure{display:table;margin:1rem auto}figure figcaption{color:#999;display:block;margin-top:.25rem;text-align:center}hr{border-color:#ccc;border-style:solid;border-width:1px 0 0 0}code{background-color:#e8e8e8;border-radius:3px;padding:.1rem .2rem}.mce-content-body:not([dir=rtl]) blockquote{border-left:2px solid #ccc;margin-left:1.5rem;padding-left:1rem}.mce-content-body[dir=rtl] blockquote{border-right:2px solid #ccc;margin-right:1.5rem;padding-right:1rem} 8 | /*# sourceMappingURL=content.min.css.map */ 9 | -------------------------------------------------------------------------------- /src/main/resources/front/front/modules/tinymce/tinymce/skins/ui/oxide-dark/content.mobile.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Tiny Technologies, Inc. All rights reserved. 3 | * Licensed under the LGPL or a commercial license. 4 | * For LGPL see License.txt in the project root for license information. 5 | * For commercial licenses see https://www.tiny.cloud/ 6 | */ 7 | .tinymce-mobile-unfocused-selections .tinymce-mobile-unfocused-selection { 8 | /* Note: this file is used inside the content, so isn't part of theming */ 9 | background-color: green; 10 | display: inline-block; 11 | opacity: 0.5; 12 | position: absolute; 13 | } 14 | body { 15 | -webkit-text-size-adjust: none; 16 | } 17 | body img { 18 | /* this is related to the content margin */ 19 | max-width: 96vw; 20 | } 21 | body table img { 22 | max-width: 95%; 23 | } 24 | body { 25 | font-family: sans-serif; 26 | } 27 | table { 28 | border-collapse: collapse; 29 | } 30 | -------------------------------------------------------------------------------- /src/main/resources/front/front/modules/tinymce/tinymce/skins/ui/oxide-dark/content.mobile.min.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Tiny Technologies, Inc. All rights reserved. 3 | * Licensed under the LGPL or a commercial license. 4 | * For LGPL see License.txt in the project root for license information. 5 | * For commercial licenses see https://www.tiny.cloud/ 6 | */ 7 | .tinymce-mobile-unfocused-selections .tinymce-mobile-unfocused-selection{background-color:green;display:inline-block;opacity:.5;position:absolute}body{-webkit-text-size-adjust:none}body img{max-width:96vw}body table img{max-width:95%}body{font-family:sans-serif}table{border-collapse:collapse} 8 | /*# sourceMappingURL=content.mobile.min.css.map */ 9 | -------------------------------------------------------------------------------- /src/main/resources/front/front/modules/tinymce/tinymce/skins/ui/oxide-dark/content.mobile.min.css.map: -------------------------------------------------------------------------------- 1 | {"version":3,"sources":["ui/dark/content.mobile.css"],"names":[],"mappings":";;;;;;AAMA,yEAEE,iBAAkB,MAClB,QAAS,aACT,QAAS,GACT,SAAU,SAEZ,KACE,yBAA0B,KAE5B,SAEE,UAAW,KAEb,eACE,UAAW,IAEb,KACE,YAAa,WAEf,MACE,gBAAiB","file":"content.mobile.min.css","sourcesContent":["/**\n * Copyright (c) Tiny Technologies, Inc. All rights reserved.\n * Licensed under the LGPL or a commercial license.\n * For LGPL see License.txt in the project root for license information.\n * For commercial licenses see https://www.tiny.cloud/\n */\n.tinymce-mobile-unfocused-selections .tinymce-mobile-unfocused-selection {\n /* Note: this file is used inside the content, so isn't part of theming */\n background-color: green;\n display: inline-block;\n opacity: 0.5;\n position: absolute;\n}\nbody {\n -webkit-text-size-adjust: none;\n}\nbody img {\n /* this is related to the content margin */\n max-width: 96vw;\n}\nbody table img {\n max-width: 95%;\n}\nbody {\n font-family: sans-serif;\n}\ntable {\n border-collapse: collapse;\n}\n"]} -------------------------------------------------------------------------------- /src/main/resources/front/front/modules/tinymce/tinymce/skins/ui/oxide-dark/fonts/tinymce-mobile.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/modules/tinymce/tinymce/skins/ui/oxide-dark/fonts/tinymce-mobile.woff -------------------------------------------------------------------------------- /src/main/resources/front/front/modules/tinymce/tinymce/skins/ui/oxide/content.mobile.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Tiny Technologies, Inc. All rights reserved. 3 | * Licensed under the LGPL or a commercial license. 4 | * For LGPL see License.txt in the project root for license information. 5 | * For commercial licenses see https://www.tiny.cloud/ 6 | */ 7 | .tinymce-mobile-unfocused-selections .tinymce-mobile-unfocused-selection { 8 | /* Note: this file is used inside the content, so isn't part of theming */ 9 | background-color: green; 10 | display: inline-block; 11 | opacity: 0.5; 12 | position: absolute; 13 | } 14 | body { 15 | -webkit-text-size-adjust: none; 16 | } 17 | body img { 18 | /* this is related to the content margin */ 19 | max-width: 96vw; 20 | } 21 | body table img { 22 | max-width: 95%; 23 | } 24 | body { 25 | font-family: sans-serif; 26 | } 27 | table { 28 | border-collapse: collapse; 29 | } 30 | -------------------------------------------------------------------------------- /src/main/resources/front/front/modules/tinymce/tinymce/skins/ui/oxide/content.mobile.min.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Tiny Technologies, Inc. All rights reserved. 3 | * Licensed under the LGPL or a commercial license. 4 | * For LGPL see License.txt in the project root for license information. 5 | * For commercial licenses see https://www.tiny.cloud/ 6 | */ 7 | .tinymce-mobile-unfocused-selections .tinymce-mobile-unfocused-selection{background-color:green;display:inline-block;opacity:.5;position:absolute}body{-webkit-text-size-adjust:none}body img{max-width:96vw}body table img{max-width:95%}body{font-family:sans-serif}table{border-collapse:collapse} 8 | /*# sourceMappingURL=content.mobile.min.css.map */ 9 | -------------------------------------------------------------------------------- /src/main/resources/front/front/modules/tinymce/tinymce/skins/ui/oxide/content.mobile.min.css.map: -------------------------------------------------------------------------------- 1 | {"version":3,"sources":["ui/default/content.mobile.css"],"names":[],"mappings":";;;;;;AAMA,yEAEE,iBAAkB,MAClB,QAAS,aACT,QAAS,GACT,SAAU,SAEZ,KACE,yBAA0B,KAE5B,SAEE,UAAW,KAEb,eACE,UAAW,IAEb,KACE,YAAa,WAEf,MACE,gBAAiB","file":"content.mobile.min.css","sourcesContent":["/**\n * Copyright (c) Tiny Technologies, Inc. All rights reserved.\n * Licensed under the LGPL or a commercial license.\n * For LGPL see License.txt in the project root for license information.\n * For commercial licenses see https://www.tiny.cloud/\n */\n.tinymce-mobile-unfocused-selections .tinymce-mobile-unfocused-selection {\n /* Note: this file is used inside the content, so isn't part of theming */\n background-color: green;\n display: inline-block;\n opacity: 0.5;\n position: absolute;\n}\nbody {\n -webkit-text-size-adjust: none;\n}\nbody img {\n /* this is related to the content margin */\n max-width: 96vw;\n}\nbody table img {\n max-width: 95%;\n}\nbody {\n font-family: sans-serif;\n}\ntable {\n border-collapse: collapse;\n}\n"]} -------------------------------------------------------------------------------- /src/main/resources/front/front/modules/tinymce/tinymce/skins/ui/oxide/fonts/tinymce-mobile.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/front/front/modules/tinymce/tinymce/skins/ui/oxide/fonts/tinymce-mobile.woff -------------------------------------------------------------------------------- /src/main/resources/mapper/ConfigDao.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/main/resources/mapper/TokenDao.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 12 | 13 | -------------------------------------------------------------------------------- /src/main/resources/mapper/UserDao.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 12 | 13 | -------------------------------------------------------------------------------- /src/main/resources/static/upload/1577351717989.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/static/upload/1577351717989.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/baokaozhinan_tupian1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/static/upload/baokaozhinan_tupian1.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/baokaozhinan_tupian2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/static/upload/baokaozhinan_tupian2.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/baokaozhinan_tupian3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/static/upload/baokaozhinan_tupian3.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/baokaozhinan_tupian4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/static/upload/baokaozhinan_tupian4.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/baokaozhinan_tupian5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/static/upload/baokaozhinan_tupian5.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/baokaozhinan_tupian6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/static/upload/baokaozhinan_tupian6.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/kaoyanzixun_tupian1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/static/upload/kaoyanzixun_tupian1.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/kaoyanzixun_tupian2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/static/upload/kaoyanzixun_tupian2.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/kaoyanzixun_tupian3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/static/upload/kaoyanzixun_tupian3.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/kaoyanzixun_tupian4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/static/upload/kaoyanzixun_tupian4.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/kaoyanzixun_tupian5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/static/upload/kaoyanzixun_tupian5.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/kaoyanzixun_tupian6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/static/upload/kaoyanzixun_tupian6.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/picture1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/static/upload/picture1.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/picture2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/static/upload/picture2.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/picture3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/static/upload/picture3.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/picture4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/static/upload/picture4.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/picture5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/static/upload/picture5.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/static/upload/test -------------------------------------------------------------------------------- /src/main/resources/static/upload/xuesheng_touxiang1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/static/upload/xuesheng_touxiang1.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/xuesheng_touxiang2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/static/upload/xuesheng_touxiang2.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/xuesheng_touxiang3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/static/upload/xuesheng_touxiang3.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/xuesheng_touxiang4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/static/upload/xuesheng_touxiang4.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/xuesheng_touxiang5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/static/upload/xuesheng_touxiang5.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/xuesheng_touxiang6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/static/upload/xuesheng_touxiang6.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/ziliaoxinxi_tupian1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/static/upload/ziliaoxinxi_tupian1.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/ziliaoxinxi_tupian2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/static/upload/ziliaoxinxi_tupian2.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/ziliaoxinxi_tupian3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/static/upload/ziliaoxinxi_tupian3.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/ziliaoxinxi_tupian4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/static/upload/ziliaoxinxi_tupian4.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/ziliaoxinxi_tupian5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/static/upload/ziliaoxinxi_tupian5.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/ziliaoxinxi_tupian6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/GraduateEntranceExaminationInformationPlatformManagementSystem/2481cf199d0676d6ddfe32db8d76ea696c04c044/src/main/resources/static/upload/ziliaoxinxi_tupian6.jpg -------------------------------------------------------------------------------- /src/test/java/com/SpringbootSchemaApplicationTests.java: -------------------------------------------------------------------------------- 1 | package com; 2 | 3 | import org.junit.jupiter.api.Test; 4 | import org.springframework.boot.test.context.SpringBootTest; 5 | 6 | @SpringBootTest 7 | class SpringbootSchemaApplicationTests { 8 | 9 | @Test 10 | void contextLoads() { 11 | } 12 | 13 | } 14 | --------------------------------------------------------------------------------