├── .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 │ │ ├── ChatController.java │ │ ├── CommonController.java │ │ ├── ConfigController.java │ │ ├── DanganbiandongController.java │ │ ├── DiscusspeixunxinxiController.java │ │ ├── FileController.java │ │ ├── ForumController.java │ │ ├── GerendanganController.java │ │ ├── JiangchengxinxiController.java │ │ ├── JiaoshiController.java │ │ ├── KechengxinxiController.java │ │ ├── NewsController.java │ │ ├── PeixunbaomingController.java │ │ ├── PeixunxinxiController.java │ │ ├── StoreupController.java │ │ └── UserController.java │ │ ├── dao │ │ ├── ChatDao.java │ │ ├── CommonDao.java │ │ ├── ConfigDao.java │ │ ├── DanganbiandongDao.java │ │ ├── DiscusspeixunxinxiDao.java │ │ ├── ForumDao.java │ │ ├── GerendanganDao.java │ │ ├── JiangchengxinxiDao.java │ │ ├── JiaoshiDao.java │ │ ├── KechengxinxiDao.java │ │ ├── NewsDao.java │ │ ├── PeixunbaomingDao.java │ │ ├── PeixunxinxiDao.java │ │ ├── StoreupDao.java │ │ ├── TokenDao.java │ │ └── UserDao.java │ │ ├── entity │ │ ├── ChatEntity.java │ │ ├── ConfigEntity.java │ │ ├── DanganbiandongEntity.java │ │ ├── DiscusspeixunxinxiEntity.java │ │ ├── EIException.java │ │ ├── ForumEntity.java │ │ ├── GerendanganEntity.java │ │ ├── JiangchengxinxiEntity.java │ │ ├── JiaoshiEntity.java │ │ ├── KechengxinxiEntity.java │ │ ├── NewsEntity.java │ │ ├── PeixunbaomingEntity.java │ │ ├── PeixunxinxiEntity.java │ │ ├── StoreupEntity.java │ │ ├── TokenEntity.java │ │ ├── UserEntity.java │ │ ├── model │ │ │ ├── ChatModel.java │ │ │ ├── DanganbiandongModel.java │ │ │ ├── DiscusspeixunxinxiModel.java │ │ │ ├── ForumModel.java │ │ │ ├── GerendanganModel.java │ │ │ ├── JiangchengxinxiModel.java │ │ │ ├── JiaoshiModel.java │ │ │ ├── KechengxinxiModel.java │ │ │ ├── NewsModel.java │ │ │ ├── PeixunbaomingModel.java │ │ │ ├── PeixunxinxiModel.java │ │ │ └── StoreupModel.java │ │ ├── view │ │ │ ├── ChatView.java │ │ │ ├── DanganbiandongView.java │ │ │ ├── DiscusspeixunxinxiView.java │ │ │ ├── ForumView.java │ │ │ ├── GerendanganView.java │ │ │ ├── JiangchengxinxiView.java │ │ │ ├── JiaoshiView.java │ │ │ ├── KechengxinxiView.java │ │ │ ├── NewsView.java │ │ │ ├── PeixunbaomingView.java │ │ │ ├── PeixunxinxiView.java │ │ │ └── StoreupView.java │ │ └── vo │ │ │ ├── ChatVO.java │ │ │ ├── DanganbiandongVO.java │ │ │ ├── DiscusspeixunxinxiVO.java │ │ │ ├── ForumVO.java │ │ │ ├── GerendanganVO.java │ │ │ ├── JiangchengxinxiVO.java │ │ │ ├── JiaoshiVO.java │ │ │ ├── KechengxinxiVO.java │ │ │ ├── NewsVO.java │ │ │ ├── PeixunbaomingVO.java │ │ │ ├── PeixunxinxiVO.java │ │ │ └── StoreupVO.java │ │ ├── interceptor │ │ └── AuthorizationInterceptor.java │ │ ├── service │ │ ├── ChatService.java │ │ ├── CommonService.java │ │ ├── ConfigService.java │ │ ├── DanganbiandongService.java │ │ ├── DiscusspeixunxinxiService.java │ │ ├── ForumService.java │ │ ├── GerendanganService.java │ │ ├── JiangchengxinxiService.java │ │ ├── JiaoshiService.java │ │ ├── KechengxinxiService.java │ │ ├── NewsService.java │ │ ├── PeixunbaomingService.java │ │ ├── PeixunxinxiService.java │ │ ├── StoreupService.java │ │ ├── TokenService.java │ │ ├── UserService.java │ │ └── impl │ │ │ ├── ChatServiceImpl.java │ │ │ ├── CommonServiceImpl.java │ │ │ ├── ConfigServiceImpl.java │ │ │ ├── DanganbiandongServiceImpl.java │ │ │ ├── DiscusspeixunxinxiServiceImpl.java │ │ │ ├── ForumServiceImpl.java │ │ │ ├── GerendanganServiceImpl.java │ │ │ ├── JiangchengxinxiServiceImpl.java │ │ │ ├── JiaoshiServiceImpl.java │ │ │ ├── KechengxinxiServiceImpl.java │ │ │ ├── NewsServiceImpl.java │ │ │ ├── PeixunbaomingServiceImpl.java │ │ │ ├── PeixunxinxiServiceImpl.java │ │ │ ├── StoreupServiceImpl.java │ │ │ ├── TokenServiceImpl.java │ │ │ └── UserServiceImpl.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.3597602c.css │ │ │ └── chunk-vendors.1f0a25b2.css │ │ ├── favicon.ico │ │ ├── fonts │ │ │ ├── element-icons.535877f5.woff │ │ │ └── element-icons.732389de.ttf │ │ ├── img │ │ │ ├── 404.3648f234.png │ │ │ ├── login.ce90cad6.jpg │ │ │ └── zhongguo.20798bfa.png │ │ ├── index.html │ │ └── js │ │ │ ├── app.96561f53.js │ │ │ ├── app.96561f53.js.map │ │ │ ├── chunk-vendors.59ea7839.js │ │ │ └── chunk-vendors.59ea7839.js.map │ │ ├── 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.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 │ │ │ │ ├── chat │ │ │ │ │ ├── chat-add-or-update.vue │ │ │ │ │ └── list.vue │ │ │ │ ├── config │ │ │ │ │ ├── add-or-update.vue │ │ │ │ │ └── list.vue │ │ │ │ ├── danganbiandong │ │ │ │ │ ├── add-or-update.vue │ │ │ │ │ └── list.vue │ │ │ │ ├── discusspeixunxinxi │ │ │ │ │ ├── add-or-update.vue │ │ │ │ │ └── list.vue │ │ │ │ ├── forum │ │ │ │ │ ├── add-or-update.vue │ │ │ │ │ └── list.vue │ │ │ │ ├── gerendangan │ │ │ │ │ ├── add-or-update.vue │ │ │ │ │ └── list.vue │ │ │ │ ├── jiangchengxinxi │ │ │ │ │ ├── add-or-update.vue │ │ │ │ │ └── list.vue │ │ │ │ ├── jiaoshi │ │ │ │ │ ├── add-or-update.vue │ │ │ │ │ └── list.vue │ │ │ │ ├── kechengxinxi │ │ │ │ │ ├── add-or-update.vue │ │ │ │ │ └── list.vue │ │ │ │ ├── news │ │ │ │ │ ├── add-or-update.vue │ │ │ │ │ └── list.vue │ │ │ │ ├── peixunbaoming │ │ │ │ │ ├── add-or-update.vue │ │ │ │ │ └── list.vue │ │ │ │ ├── peixunxinxi │ │ │ │ │ ├── add-or-update.vue │ │ │ │ │ └── list.vue │ │ │ │ ├── storeup │ │ │ │ │ ├── add-or-update.vue │ │ │ │ │ └── list.vue │ │ │ │ └── users │ │ │ │ │ ├── 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 │ │ ├── style.css │ │ └── theme.css │ │ ├── elementui │ │ ├── elementui.css │ │ ├── elementui.js │ │ └── fonts │ │ │ ├── element-icons.ttf │ │ │ └── element-icons.woff │ │ ├── img │ │ ├── avator.png │ │ ├── banner.jpg │ │ ├── jianshe.png │ │ ├── jiaotong.png │ │ ├── line.jpg │ │ ├── nongye.png │ │ ├── now.png │ │ ├── seckilling.jpg │ │ ├── select.png │ │ ├── unselect.png │ │ ├── weixin.png │ │ ├── yuan.png │ │ ├── zhifubao.png │ │ └── zhongguo.png │ │ ├── index.html │ │ ├── index.html.bak │ │ ├── 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 │ │ ├── chat │ │ │ └── chat.html │ │ ├── config │ │ │ ├── add.html │ │ │ ├── detail.html │ │ │ └── list.html │ │ ├── danganbiandong │ │ │ ├── add.html │ │ │ ├── detail.html │ │ │ └── list.html │ │ ├── discusspeixunxinxi │ │ │ ├── add.html │ │ │ ├── detail.html │ │ │ └── list.html │ │ ├── forum │ │ │ ├── add-comment.html │ │ │ ├── add.html │ │ │ ├── detail.html │ │ │ ├── list-my.html │ │ │ ├── list.html │ │ │ └── update.html │ │ ├── gerendangan │ │ │ ├── add.html │ │ │ ├── detail.html │ │ │ └── list.html │ │ ├── home │ │ │ └── home.html │ │ ├── jiangchengxinxi │ │ │ ├── add.html │ │ │ ├── detail.html │ │ │ └── list.html │ │ ├── jiaoshi │ │ │ ├── add.html │ │ │ ├── center.html │ │ │ ├── detail.html │ │ │ ├── list.html │ │ │ └── register.html │ │ ├── kechengxinxi │ │ │ ├── add.html │ │ │ ├── detail.html │ │ │ └── list.html │ │ ├── login │ │ │ └── login.html │ │ ├── news │ │ │ ├── detail.html │ │ │ └── list.html │ │ ├── peixunbaoming │ │ │ ├── add.html │ │ │ ├── detail.html │ │ │ └── list.html │ │ ├── peixunxinxi │ │ │ ├── add.html │ │ │ ├── detail.html │ │ │ └── list.html │ │ ├── storeup │ │ │ └── list.html │ │ └── users │ │ │ ├── add.html │ │ │ ├── detail.html │ │ │ └── list.html │ │ └── xznstatic │ │ ├── css │ │ ├── common.css │ │ ├── login.css │ │ ├── public.css │ │ └── style.css │ │ ├── img │ │ ├── 162237296.jpg │ │ ├── 162240878.jpg │ │ ├── 19.jpg │ │ ├── 1_092ZZ2503138.jpg │ │ ├── 20.jpg │ │ ├── index_24.gif │ │ ├── index_35.gif │ │ ├── index_41.gif │ │ ├── index_44.gif │ │ ├── logo.png │ │ ├── news_list_time.jpg │ │ ├── service_btn.png │ │ ├── service_img.png │ │ └── service_title.png │ │ └── js │ │ ├── index.js │ │ ├── jquery-1.11.3.min.js │ │ └── jquery.SuperSlide.2.1.1.js │ ├── mapper │ ├── ChatDao.xml │ ├── CommonDao.xml │ ├── ConfigDao.xml │ ├── DanganbiandongDao.xml │ ├── DiscusspeixunxinxiDao.xml │ ├── ForumDao.xml │ ├── GerendanganDao.xml │ ├── JiangchengxinxiDao.xml │ ├── JiaoshiDao.xml │ ├── KechengxinxiDao.xml │ ├── NewsDao.xml │ ├── PeixunbaomingDao.xml │ ├── PeixunxinxiDao.xml │ ├── StoreupDao.xml │ ├── TokenDao.xml │ └── UserDao.xml │ └── static │ └── upload │ ├── 1577351717989.jpg │ ├── 1610608790748.jpg │ ├── 1610608802441.jpg │ ├── 1610608812306.jpg │ ├── 1610608822763.jpg │ ├── 1610608833744.jpg │ ├── 1610608849863.jpg │ ├── 1610608861495.jpg │ ├── 1610608872881.jpg │ ├── 1610608883219.jpg │ ├── 1610608893799.jpg │ ├── 1610608906154.jpg │ ├── 1610608916417.jpg │ ├── 1610608971070.zip │ ├── jiaoshi_zhaopian1.jpg │ ├── jiaoshi_zhaopian2.jpg │ ├── jiaoshi_zhaopian3.jpg │ ├── jiaoshi_zhaopian4.jpg │ ├── jiaoshi_zhaopian5.jpg │ ├── jiaoshi_zhaopian6.jpg │ ├── news_picture1.jpg │ ├── news_picture2.jpg │ ├── news_picture3.jpg │ ├── news_picture4.jpg │ ├── news_picture5.jpg │ ├── news_picture6.jpg │ ├── peixunxinxi_tupian1.jpg │ ├── peixunxinxi_tupian2.jpg │ ├── peixunxinxi_tupian3.jpg │ ├── peixunxinxi_tupian4.jpg │ ├── peixunxinxi_tupian5.jpg │ ├── peixunxinxi_tupian6.jpg │ ├── picture1.jpg │ ├── picture2.jpg │ ├── picture3.jpg │ └── test └── test └── java └── com └── SpringbootSchemaApplicationTests.java /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/.DS_Store -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.js linguist-language=java 2 | *.css linguist-language=java 3 | *.html 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/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 2021-01-14 15:15:24 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 2021-01-14 15:15:24 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/GerendanganDao.java: -------------------------------------------------------------------------------- 1 | package com.dao; 2 | 3 | import com.entity.GerendanganEntity; 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.GerendanganVO; 11 | import com.entity.view.GerendanganView; 12 | 13 | 14 | /** 15 | * 个人档案 16 | * 17 | * @author 18 | * @email 19 | * @date 2021-01-14 15:15:24 20 | */ 21 | public interface GerendanganDao extends BaseMapper { 22 | 23 | List selectListVO(@Param("ew") Wrapper wrapper); 24 | 25 | GerendanganVO 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 | GerendanganView selectView(@Param("ew") Wrapper wrapper); 32 | 33 | } 34 | -------------------------------------------------------------------------------- /src/main/java/com/dao/JiaoshiDao.java: -------------------------------------------------------------------------------- 1 | package com.dao; 2 | 3 | import com.entity.JiaoshiEntity; 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.JiaoshiVO; 11 | import com.entity.view.JiaoshiView; 12 | 13 | 14 | /** 15 | * 劳模 16 | * 17 | * @author 18 | * @email 19 | * @date 2021-01-14 15:15:24 20 | */ 21 | public interface JiaoshiDao extends BaseMapper { 22 | 23 | List selectListVO(@Param("ew") Wrapper wrapper); 24 | 25 | JiaoshiVO 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 | JiaoshiView selectView(@Param("ew") Wrapper wrapper); 32 | 33 | } 34 | -------------------------------------------------------------------------------- /src/main/java/com/dao/KechengxinxiDao.java: -------------------------------------------------------------------------------- 1 | package com.dao; 2 | 3 | import com.entity.KechengxinxiEntity; 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.KechengxinxiVO; 11 | import com.entity.view.KechengxinxiView; 12 | 13 | 14 | /** 15 | * 课程信息 16 | * 17 | * @author 18 | * @email 19 | * @date 2021-01-14 15:15:24 20 | */ 21 | public interface KechengxinxiDao extends BaseMapper { 22 | 23 | List selectListVO(@Param("ew") Wrapper wrapper); 24 | 25 | KechengxinxiVO 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 | KechengxinxiView selectView(@Param("ew") Wrapper wrapper); 32 | 33 | } 34 | -------------------------------------------------------------------------------- /src/main/java/com/dao/NewsDao.java: -------------------------------------------------------------------------------- 1 | package com.dao; 2 | 3 | import com.entity.NewsEntity; 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.NewsVO; 11 | import com.entity.view.NewsView; 12 | 13 | 14 | /** 15 | * 系统公告 16 | * 17 | * @author 18 | * @email 19 | * @date 2021-01-14 15:15:24 20 | */ 21 | public interface NewsDao extends BaseMapper { 22 | 23 | List selectListVO(@Param("ew") Wrapper wrapper); 24 | 25 | NewsVO 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 | NewsView selectView(@Param("ew") Wrapper wrapper); 32 | 33 | } 34 | -------------------------------------------------------------------------------- /src/main/java/com/dao/PeixunbaomingDao.java: -------------------------------------------------------------------------------- 1 | package com.dao; 2 | 3 | import com.entity.PeixunbaomingEntity; 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.PeixunbaomingVO; 11 | import com.entity.view.PeixunbaomingView; 12 | 13 | 14 | /** 15 | * 培训报名 16 | * 17 | * @author 18 | * @email 19 | * @date 2021-01-14 15:15:24 20 | */ 21 | public interface PeixunbaomingDao extends BaseMapper { 22 | 23 | List selectListVO(@Param("ew") Wrapper wrapper); 24 | 25 | PeixunbaomingVO 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 | PeixunbaomingView selectView(@Param("ew") Wrapper wrapper); 32 | 33 | } 34 | -------------------------------------------------------------------------------- /src/main/java/com/dao/PeixunxinxiDao.java: -------------------------------------------------------------------------------- 1 | package com.dao; 2 | 3 | import com.entity.PeixunxinxiEntity; 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.PeixunxinxiVO; 11 | import com.entity.view.PeixunxinxiView; 12 | 13 | 14 | /** 15 | * 培训信息 16 | * 17 | * @author 18 | * @email 19 | * @date 2021-01-14 15:15:24 20 | */ 21 | public interface PeixunxinxiDao extends BaseMapper { 22 | 23 | List selectListVO(@Param("ew") Wrapper wrapper); 24 | 25 | PeixunxinxiVO 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 | PeixunxinxiView 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 2021-01-14 15:15:24 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/entity/ConfigEntity.java: -------------------------------------------------------------------------------- 1 | package com.entity; 2 | 3 | import java.io.Serializable; 4 | 5 | import com.baomidou.mybatisplus.annotations.TableId; 6 | import com.baomidou.mybatisplus.annotations.TableName; 7 | import com.baomidou.mybatisplus.enums.IdType; 8 | 9 | /** 10 | * @author yangliyuan 11 | * @version 创建时间:2020年2月7日 下午8:36:05 12 | * 类说明 : 13 | */ 14 | @TableName("config") 15 | public class ConfigEntity implements Serializable{ 16 | private static final long serialVersionUID = 1L; 17 | 18 | @TableId(type = IdType.AUTO) 19 | private Long id; 20 | 21 | /** 22 | * key 23 | */ 24 | private String name; 25 | 26 | /** 27 | * value 28 | */ 29 | private String value; 30 | 31 | public Long getId() { 32 | return id; 33 | } 34 | 35 | public void setId(Long id) { 36 | this.id = id; 37 | } 38 | 39 | public String getName() { 40 | return name; 41 | } 42 | 43 | public void setName(String name) { 44 | this.name = name; 45 | } 46 | 47 | public String getValue() { 48 | return value; 49 | } 50 | 51 | public void setValue(String value) { 52 | this.value = value; 53 | } 54 | 55 | } 56 | -------------------------------------------------------------------------------- /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/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 2021-01-14 15:15:24 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/DanganbiandongView.java: -------------------------------------------------------------------------------- 1 | package com.entity.view; 2 | 3 | import com.entity.DanganbiandongEntity; 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 2021-01-14 15:15:24 19 | */ 20 | @TableName("danganbiandong") 21 | public class DanganbiandongView extends DanganbiandongEntity implements Serializable { 22 | private static final long serialVersionUID = 1L; 23 | 24 | public DanganbiandongView(){ 25 | } 26 | 27 | public DanganbiandongView(DanganbiandongEntity danganbiandongEntity){ 28 | try { 29 | BeanUtils.copyProperties(this, danganbiandongEntity); 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/DiscusspeixunxinxiView.java: -------------------------------------------------------------------------------- 1 | package com.entity.view; 2 | 3 | import com.entity.DiscusspeixunxinxiEntity; 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 2021-01-14 15:15:24 19 | */ 20 | @TableName("discusspeixunxinxi") 21 | public class DiscusspeixunxinxiView extends DiscusspeixunxinxiEntity implements Serializable { 22 | private static final long serialVersionUID = 1L; 23 | 24 | public DiscusspeixunxinxiView(){ 25 | } 26 | 27 | public DiscusspeixunxinxiView(DiscusspeixunxinxiEntity discusspeixunxinxiEntity){ 28 | try { 29 | BeanUtils.copyProperties(this, discusspeixunxinxiEntity); 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 2021-01-14 15:15:24 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/GerendanganView.java: -------------------------------------------------------------------------------- 1 | package com.entity.view; 2 | 3 | import com.entity.GerendanganEntity; 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 2021-01-14 15:15:24 19 | */ 20 | @TableName("gerendangan") 21 | public class GerendanganView extends GerendanganEntity implements Serializable { 22 | private static final long serialVersionUID = 1L; 23 | 24 | public GerendanganView(){ 25 | } 26 | 27 | public GerendanganView(GerendanganEntity gerendanganEntity){ 28 | try { 29 | BeanUtils.copyProperties(this, gerendanganEntity); 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/JiangchengxinxiView.java: -------------------------------------------------------------------------------- 1 | package com.entity.view; 2 | 3 | import com.entity.JiangchengxinxiEntity; 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 2021-01-14 15:15:24 19 | */ 20 | @TableName("jiangchengxinxi") 21 | public class JiangchengxinxiView extends JiangchengxinxiEntity implements Serializable { 22 | private static final long serialVersionUID = 1L; 23 | 24 | public JiangchengxinxiView(){ 25 | } 26 | 27 | public JiangchengxinxiView(JiangchengxinxiEntity jiangchengxinxiEntity){ 28 | try { 29 | BeanUtils.copyProperties(this, jiangchengxinxiEntity); 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/JiaoshiView.java: -------------------------------------------------------------------------------- 1 | package com.entity.view; 2 | 3 | import com.entity.JiaoshiEntity; 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 2021-01-14 15:15:24 19 | */ 20 | @TableName("jiaoshi") 21 | public class JiaoshiView extends JiaoshiEntity implements Serializable { 22 | private static final long serialVersionUID = 1L; 23 | 24 | public JiaoshiView(){ 25 | } 26 | 27 | public JiaoshiView(JiaoshiEntity jiaoshiEntity){ 28 | try { 29 | BeanUtils.copyProperties(this, jiaoshiEntity); 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/KechengxinxiView.java: -------------------------------------------------------------------------------- 1 | package com.entity.view; 2 | 3 | import com.entity.KechengxinxiEntity; 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 2021-01-14 15:15:24 19 | */ 20 | @TableName("kechengxinxi") 21 | public class KechengxinxiView extends KechengxinxiEntity implements Serializable { 22 | private static final long serialVersionUID = 1L; 23 | 24 | public KechengxinxiView(){ 25 | } 26 | 27 | public KechengxinxiView(KechengxinxiEntity kechengxinxiEntity){ 28 | try { 29 | BeanUtils.copyProperties(this, kechengxinxiEntity); 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/NewsView.java: -------------------------------------------------------------------------------- 1 | package com.entity.view; 2 | 3 | import com.entity.NewsEntity; 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 2021-01-14 15:15:24 19 | */ 20 | @TableName("news") 21 | public class NewsView extends NewsEntity implements Serializable { 22 | private static final long serialVersionUID = 1L; 23 | 24 | public NewsView(){ 25 | } 26 | 27 | public NewsView(NewsEntity newsEntity){ 28 | try { 29 | BeanUtils.copyProperties(this, newsEntity); 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/PeixunbaomingView.java: -------------------------------------------------------------------------------- 1 | package com.entity.view; 2 | 3 | import com.entity.PeixunbaomingEntity; 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 2021-01-14 15:15:24 19 | */ 20 | @TableName("peixunbaoming") 21 | public class PeixunbaomingView extends PeixunbaomingEntity implements Serializable { 22 | private static final long serialVersionUID = 1L; 23 | 24 | public PeixunbaomingView(){ 25 | } 26 | 27 | public PeixunbaomingView(PeixunbaomingEntity peixunbaomingEntity){ 28 | try { 29 | BeanUtils.copyProperties(this, peixunbaomingEntity); 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/PeixunxinxiView.java: -------------------------------------------------------------------------------- 1 | package com.entity.view; 2 | 3 | import com.entity.PeixunxinxiEntity; 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 2021-01-14 15:15:24 19 | */ 20 | @TableName("peixunxinxi") 21 | public class PeixunxinxiView extends PeixunxinxiEntity implements Serializable { 22 | private static final long serialVersionUID = 1L; 23 | 24 | public PeixunxinxiView(){ 25 | } 26 | 27 | public PeixunxinxiView(PeixunxinxiEntity peixunxinxiEntity){ 28 | try { 29 | BeanUtils.copyProperties(this, peixunxinxiEntity); 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 2021-01-14 15:15:24 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/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 2021-01-14 15:15:24 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 2021-01-14 15:15:24 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/JiaoshiService.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.JiaoshiEntity; 7 | import java.util.List; 8 | import java.util.Map; 9 | import com.entity.vo.JiaoshiVO; 10 | import org.apache.ibatis.annotations.Param; 11 | import com.entity.view.JiaoshiView; 12 | 13 | 14 | /** 15 | * 劳模 16 | * 17 | * @author 18 | * @email 19 | * @date 2021-01-14 15:15:24 20 | */ 21 | public interface JiaoshiService extends IService { 22 | 23 | PageUtils queryPage(Map params); 24 | 25 | List selectListVO(Wrapper wrapper); 26 | 27 | JiaoshiVO selectVO(@Param("ew") Wrapper wrapper); 28 | 29 | List selectListView(Wrapper wrapper); 30 | 31 | JiaoshiView selectView(@Param("ew") Wrapper wrapper); 32 | 33 | PageUtils queryPage(Map params,Wrapper wrapper); 34 | 35 | } 36 | 37 | -------------------------------------------------------------------------------- /src/main/java/com/service/NewsService.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.NewsEntity; 7 | import java.util.List; 8 | import java.util.Map; 9 | import com.entity.vo.NewsVO; 10 | import org.apache.ibatis.annotations.Param; 11 | import com.entity.view.NewsView; 12 | 13 | 14 | /** 15 | * 系统公告 16 | * 17 | * @author 18 | * @email 19 | * @date 2021-01-14 15:15:24 20 | */ 21 | public interface NewsService extends IService { 22 | 23 | PageUtils queryPage(Map params); 24 | 25 | List selectListVO(Wrapper wrapper); 26 | 27 | NewsVO selectVO(@Param("ew") Wrapper wrapper); 28 | 29 | List selectListView(Wrapper wrapper); 30 | 31 | NewsView 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 2021-01-14 15:15:24 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/java/com/utils/SQLFilter.java: -------------------------------------------------------------------------------- 1 | 2 | package com.utils; 3 | 4 | import org.apache.commons.lang3.StringUtils; 5 | 6 | import com.entity.EIException; 7 | 8 | /** 9 | * SQL过滤 10 | */ 11 | public class SQLFilter { 12 | 13 | /** 14 | * SQL注入过滤 15 | * @param str 待验证的字符串 16 | */ 17 | public static String sqlInject(String str){ 18 | if(StringUtils.isBlank(str)){ 19 | return null; 20 | } 21 | //去掉'|"|;|\字符 22 | str = StringUtils.replace(str, "'", ""); 23 | str = StringUtils.replace(str, "\"", ""); 24 | str = StringUtils.replace(str, ";", ""); 25 | str = StringUtils.replace(str, "\\", ""); 26 | 27 | //转换成小写 28 | str = str.toLowerCase(); 29 | 30 | //非法字符 31 | String[] keywords = {"master", "truncate", "insert", "select", "delete", "update", "declare", "alter", "drop"}; 32 | 33 | //判断是否包含非法字符 34 | for(String keyword : keywords){ 35 | if(str.indexOf(keyword) != -1){ 36 | throw new EIException("包含非法字符"); 37 | } 38 | } 39 | 40 | return str; 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/src/main/resources/admin/admin/dist/favicon.ico -------------------------------------------------------------------------------- /src/main/resources/admin/admin/dist/fonts/element-icons.535877f5.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/src/main/resources/admin/admin/dist/img/404.3648f234.png -------------------------------------------------------------------------------- /src/main/resources/admin/admin/dist/img/login.ce90cad6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/src/main/resources/admin/admin/dist/img/login.ce90cad6.jpg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/dist/img/zhongguo.20798bfa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/src/main/resources/admin/admin/dist/img/zhongguo.20798bfa.png -------------------------------------------------------------------------------- /src/main/resources/admin/admin/dist/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 后台管理系统 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 19 |
20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/src/main/resources/admin/admin/src/assets/img/captcha.jpg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/assets/img/login.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/src/main/resources/admin/admin/src/assets/img/login.jpg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/assets/img/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/VIP.svg: -------------------------------------------------------------------------------- 1 | vip登记 -------------------------------------------------------------------------------- /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/tempFarm.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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/src/main/resources/admin/admin/src/store/store.js -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/utils/api.js: -------------------------------------------------------------------------------- 1 | const api = { 2 | // 客服 3 | chatpage:'chat/page?sort=addtime&order=desc&isreply=1', 4 | chatbyuseridpage: 'chat/page?sort=addtime&order=desc&userid=', 5 | chatsave: 'chat/save', 6 | // 积分订单 7 | orderpage: 'orders/page', 8 | orderdelete: 'orders/delete', 9 | orderinfo: 'orders/info/', 10 | ordersave: 'orders/save', 11 | orderupdate: 'orders/update', 12 | // 配置 13 | configpage: 'config/page', 14 | configdelete: 'config/delete', 15 | configinfo: 'config/info/', 16 | configsave: 'config/save', 17 | configupdate: 'config/update' 18 | 19 | } 20 | 21 | export default api 22 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/utils/base.js: -------------------------------------------------------------------------------- 1 | const base = { 2 | get() { 3 | return { 4 | url: 'http://localhost:8080/springbootpc161/', 5 | name: 'springbootpc161', 6 | // 退出到首页链接 7 | indexUrl: 'http://localhost:8080/springbootpc161/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: '/springbootpc161', 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.jpg) left center repeat-x; 8 | text-align: center; 9 | } 10 | .line { 11 | display: inline-block; 12 | padding: 0 10px; 13 | text-align: center; 14 | font-family: 'Microsoft Yahei'; 15 | font-size: 24px; 16 | background: #fff; 17 | color: #000000; 18 | line-height: 1.3; 19 | } 20 | /** 21 | * 工具类css end 22 | */ -------------------------------------------------------------------------------- /src/main/resources/front/front/elementui/fonts/element-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/src/main/resources/front/front/elementui/fonts/element-icons.woff -------------------------------------------------------------------------------- /src/main/resources/front/front/img/avator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/src/main/resources/front/front/img/avator.png -------------------------------------------------------------------------------- /src/main/resources/front/front/img/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/src/main/resources/front/front/img/banner.jpg -------------------------------------------------------------------------------- /src/main/resources/front/front/img/jianshe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/src/main/resources/front/front/img/jianshe.png -------------------------------------------------------------------------------- /src/main/resources/front/front/img/jiaotong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/src/main/resources/front/front/img/jiaotong.png -------------------------------------------------------------------------------- /src/main/resources/front/front/img/line.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/src/main/resources/front/front/img/line.jpg -------------------------------------------------------------------------------- /src/main/resources/front/front/img/nongye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/src/main/resources/front/front/img/nongye.png -------------------------------------------------------------------------------- /src/main/resources/front/front/img/now.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/src/main/resources/front/front/img/now.png -------------------------------------------------------------------------------- /src/main/resources/front/front/img/seckilling.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/src/main/resources/front/front/img/seckilling.jpg -------------------------------------------------------------------------------- /src/main/resources/front/front/img/select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/src/main/resources/front/front/img/select.png -------------------------------------------------------------------------------- /src/main/resources/front/front/img/unselect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/src/main/resources/front/front/img/unselect.png -------------------------------------------------------------------------------- /src/main/resources/front/front/img/weixin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/src/main/resources/front/front/img/weixin.png -------------------------------------------------------------------------------- /src/main/resources/front/front/img/yuan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/src/main/resources/front/front/img/yuan.png -------------------------------------------------------------------------------- /src/main/resources/front/front/img/zhifubao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/src/main/resources/front/front/img/zhifubao.png -------------------------------------------------------------------------------- /src/main/resources/front/front/img/zhongguo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/src/main/resources/front/front/layui/font/iconfont.eot -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/font/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/src/main/resources/front/front/layui/font/iconfont.ttf -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/font/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/src/main/resources/front/front/layui/font/iconfont.woff -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/font/iconfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/src/main/resources/front/front/layui/font/iconfont.woff2 -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/src/main/resources/front/front/modules/tinymce/tinymce/skins/ui/oxide/fonts/tinymce-mobile.woff -------------------------------------------------------------------------------- /src/main/resources/front/front/xznstatic/img/162237296.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/src/main/resources/front/front/xznstatic/img/162237296.jpg -------------------------------------------------------------------------------- /src/main/resources/front/front/xznstatic/img/162240878.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/src/main/resources/front/front/xznstatic/img/162240878.jpg -------------------------------------------------------------------------------- /src/main/resources/front/front/xznstatic/img/19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/src/main/resources/front/front/xznstatic/img/19.jpg -------------------------------------------------------------------------------- /src/main/resources/front/front/xznstatic/img/1_092ZZ2503138.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/src/main/resources/front/front/xznstatic/img/1_092ZZ2503138.jpg -------------------------------------------------------------------------------- /src/main/resources/front/front/xznstatic/img/20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/src/main/resources/front/front/xznstatic/img/20.jpg -------------------------------------------------------------------------------- /src/main/resources/front/front/xznstatic/img/index_24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/src/main/resources/front/front/xznstatic/img/index_24.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/xznstatic/img/index_35.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/src/main/resources/front/front/xznstatic/img/index_35.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/xznstatic/img/index_41.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/src/main/resources/front/front/xznstatic/img/index_41.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/xznstatic/img/index_44.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/src/main/resources/front/front/xznstatic/img/index_44.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/xznstatic/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/src/main/resources/front/front/xznstatic/img/logo.png -------------------------------------------------------------------------------- /src/main/resources/front/front/xznstatic/img/news_list_time.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/src/main/resources/front/front/xznstatic/img/news_list_time.jpg -------------------------------------------------------------------------------- /src/main/resources/front/front/xznstatic/img/service_btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/src/main/resources/front/front/xznstatic/img/service_btn.png -------------------------------------------------------------------------------- /src/main/resources/front/front/xznstatic/img/service_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/src/main/resources/front/front/xznstatic/img/service_img.png -------------------------------------------------------------------------------- /src/main/resources/front/front/xznstatic/img/service_title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/src/main/resources/front/front/xznstatic/img/service_title.png -------------------------------------------------------------------------------- /src/main/resources/front/front/xznstatic/js/index.js: -------------------------------------------------------------------------------- 1 | jQuery(".banner").slide({mainCell:".bd ul",autoPlay:true,interTime:5000}); 2 | 3 | //???????????? 4 | jQuery("#ifocus").slide({ titCell:"#ifocus_btn li", mainCell:"#ifocus_piclist ul",effect:"leftLoop", delayTime:200, autoPlay:true,triggerTime:0}); 5 | //???????????? 6 | jQuery("#ifocus").slide({ titCell:"#ifocus_btn li", mainCell:"#ifocus_tx ul",delayTime:0, autoPlay:true}); 7 | 8 | jQuery(".product_list").slide({mainCell:".bd ul",autoPage:true,effect:"leftLoop",autoPlay:true,vis:5,trigger:"click",interTime:4000}); -------------------------------------------------------------------------------- /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/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/src/main/resources/static/upload/1577351717989.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/1610608790748.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/src/main/resources/static/upload/1610608790748.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/1610608802441.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/src/main/resources/static/upload/1610608802441.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/1610608812306.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/src/main/resources/static/upload/1610608812306.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/1610608822763.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/src/main/resources/static/upload/1610608822763.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/1610608833744.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/src/main/resources/static/upload/1610608833744.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/1610608849863.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/src/main/resources/static/upload/1610608849863.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/1610608861495.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/src/main/resources/static/upload/1610608861495.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/1610608872881.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/src/main/resources/static/upload/1610608872881.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/1610608883219.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/src/main/resources/static/upload/1610608883219.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/1610608893799.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/src/main/resources/static/upload/1610608893799.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/1610608906154.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/src/main/resources/static/upload/1610608906154.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/1610608916417.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/src/main/resources/static/upload/1610608916417.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/1610608971070.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/src/main/resources/static/upload/1610608971070.zip -------------------------------------------------------------------------------- /src/main/resources/static/upload/jiaoshi_zhaopian1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/src/main/resources/static/upload/jiaoshi_zhaopian1.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/jiaoshi_zhaopian2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/src/main/resources/static/upload/jiaoshi_zhaopian2.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/jiaoshi_zhaopian3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/src/main/resources/static/upload/jiaoshi_zhaopian3.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/jiaoshi_zhaopian4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/src/main/resources/static/upload/jiaoshi_zhaopian4.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/jiaoshi_zhaopian5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/src/main/resources/static/upload/jiaoshi_zhaopian5.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/jiaoshi_zhaopian6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/src/main/resources/static/upload/jiaoshi_zhaopian6.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/news_picture1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/src/main/resources/static/upload/news_picture1.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/news_picture2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/src/main/resources/static/upload/news_picture2.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/news_picture3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/src/main/resources/static/upload/news_picture3.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/news_picture4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/src/main/resources/static/upload/news_picture4.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/news_picture5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/src/main/resources/static/upload/news_picture5.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/news_picture6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/src/main/resources/static/upload/news_picture6.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/peixunxinxi_tupian1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/src/main/resources/static/upload/peixunxinxi_tupian1.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/peixunxinxi_tupian2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/src/main/resources/static/upload/peixunxinxi_tupian2.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/peixunxinxi_tupian3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/src/main/resources/static/upload/peixunxinxi_tupian3.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/peixunxinxi_tupian4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/src/main/resources/static/upload/peixunxinxi_tupian4.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/peixunxinxi_tupian5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/src/main/resources/static/upload/peixunxinxi_tupian5.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/peixunxinxi_tupian6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/src/main/resources/static/upload/peixunxinxi_tupian6.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/picture1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/src/main/resources/static/upload/picture1.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/picture2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/src/main/resources/static/upload/picture2.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/picture3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/src/main/resources/static/upload/picture3.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/ModelWorkerManagementSystem/67b9f8e925e328adc8dee654e27ff8110ae5f815/src/main/resources/static/upload/test -------------------------------------------------------------------------------- /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 | --------------------------------------------------------------------------------