├── .idea ├── .gitignore ├── compiler.xml ├── encodings.xml ├── jarRepositories.xml ├── misc.xml └── runConfigurations.xml ├── README.md ├── image ├── 1.png ├── 10.png ├── 11.png ├── 12.png ├── 13.png ├── 14.png ├── 15.png ├── 2.png ├── 3.png ├── 4.png ├── 5.png ├── 6.png ├── 7.png ├── 8.png └── 9.png ├── limage ├── 1.png ├── 2.png └── 3.png ├── pom.xml └── src └── main ├── java └── com │ ├── ServletContextListener │ └── DictionaryServletContextListener.java │ ├── annotation │ ├── APPLoginUser.java │ ├── ColumnInfo.java │ ├── IgnoreAuth.java │ └── LoginUser.java │ ├── config │ ├── InterceptorConfig.java │ ├── MyMetaObjectHandler.java │ └── MybatisPlusConfig.java │ ├── controller │ ├── BaoxiuController.java │ ├── CheweiController.java │ ├── CheweiFenpeiController.java │ ├── ChuruController.java │ ├── CommonController.java │ ├── ConfigController.java │ ├── DictionaryController.java │ ├── FangwuController.java │ ├── FeiyongController.java │ ├── FileController.java │ ├── GonggaoController.java │ ├── LiuyanController.java │ ├── SixinController.java │ ├── UsersController.java │ ├── WuyeController.java │ └── YonghuController.java │ ├── dao │ ├── BaoxiuDao.java │ ├── CheweiDao.java │ ├── CheweiFenpeiDao.java │ ├── ChuruDao.java │ ├── CommonDao.java │ ├── ConfigDao.java │ ├── DictionaryDao.java │ ├── FangwuDao.java │ ├── FeiyongDao.java │ ├── GonggaoDao.java │ ├── LiuyanDao.java │ ├── SixinDao.java │ ├── TokenDao.java │ ├── UsersDao.java │ ├── WuyeDao.java │ └── YonghuDao.java │ ├── entity │ ├── BaoxiuEntity.java │ ├── CheweiEntity.java │ ├── CheweiFenpeiEntity.java │ ├── ChuruEntity.java │ ├── ConfigEntity.java │ ├── DictionaryEntity.java │ ├── EIException.java │ ├── FangwuEntity.java │ ├── FeiyongEntity.java │ ├── GonggaoEntity.java │ ├── LiuyanEntity.java │ ├── SixinEntity.java │ ├── TokenEntity.java │ ├── UsersEntity.java │ ├── WuyeEntity.java │ ├── YonghuEntity.java │ ├── model │ │ ├── BaoxiuModel.java │ │ ├── CheweiFenpeiModel.java │ │ ├── CheweiModel.java │ │ ├── ChuruModel.java │ │ ├── DictionaryModel.java │ │ ├── FangwuModel.java │ │ ├── FeiyongModel.java │ │ ├── GonggaoModel.java │ │ ├── LiuyanModel.java │ │ ├── SixinModel.java │ │ ├── WuyeModel.java │ │ └── YonghuModel.java │ ├── view │ │ ├── BaoxiuView.java │ │ ├── CheweiFenpeiView.java │ │ ├── CheweiView.java │ │ ├── ChuruView.java │ │ ├── DictionaryView.java │ │ ├── FangwuView.java │ │ ├── FeiyongView.java │ │ ├── GonggaoView.java │ │ ├── LiuyanView.java │ │ ├── SixinView.java │ │ ├── WuyeView.java │ │ └── YonghuView.java │ └── vo │ │ ├── BaoxiuVO.java │ │ ├── CheweiFenpeiVO.java │ │ ├── CheweiVO.java │ │ ├── ChuruVO.java │ │ ├── DictionaryVO.java │ │ ├── FangwuVO.java │ │ ├── FeiyongVO.java │ │ ├── GonggaoVO.java │ │ ├── LiuyanVO.java │ │ ├── SixinVO.java │ │ ├── WuyeVO.java │ │ └── YonghuVO.java │ ├── interceptor │ └── AuthorizationInterceptor.java │ ├── model │ └── enums │ │ └── TypeEnum.java │ ├── service │ ├── BaoxiuService.java │ ├── CheweiFenpeiService.java │ ├── CheweiService.java │ ├── ChuruService.java │ ├── CommonService.java │ ├── ConfigService.java │ ├── DictionaryService.java │ ├── FangwuService.java │ ├── FeiyongService.java │ ├── GonggaoService.java │ ├── LiuyanService.java │ ├── SixinService.java │ ├── TokenService.java │ ├── UsersService.java │ ├── WuyeService.java │ ├── YonghuService.java │ └── impl │ │ ├── BaoxiuServiceImpl.java │ │ ├── CheweiFenpeiServiceImpl.java │ │ ├── CheweiServiceImpl.java │ │ ├── ChuruServiceImpl.java │ │ ├── CommonServiceImpl.java │ │ ├── ConfigServiceImpl.java │ │ ├── DictionaryServiceImpl.java │ │ ├── FangwuServiceImpl.java │ │ ├── FeiyongServiceImpl.java │ │ ├── GonggaoServiceImpl.java │ │ ├── LiuyanServiceImpl.java │ │ ├── SixinServiceImpl.java │ │ ├── TokenServiceImpl.java │ │ ├── UsersServiceImpl.java │ │ ├── WuyeServiceImpl.java │ │ └── YonghuServiceImpl.java │ ├── thread │ └── MyThreadMethod.java │ ├── utils │ ├── BaiduUtil.java │ ├── ClazzDiff.java │ ├── CommonUtil.java │ ├── DateUtil.java │ ├── FileUtil.java │ ├── HttpClientUtils.java │ ├── JQPageInfo.java │ ├── MPUtil.java │ ├── PageUtils.java │ ├── PoiUtil.java │ ├── Query.java │ ├── R.java │ ├── SQLFilter.java │ ├── SpringContextUtils.java │ ├── StringUtil.java │ └── ValidatorUtils.java │ └── zonghexiaoqiguanlixitongApplication.java └── resources ├── admin └── admin │ ├── 1-install.bat │ ├── 2-run.bat │ ├── 3-build.bat │ ├── babel.config.js │ ├── dist │ ├── css │ │ ├── app.28e76094.css │ │ └── chunk-vendors.a48a7cc1.css │ ├── favicon.ico │ ├── fonts │ │ ├── element-icons.535877f5.woff │ │ └── element-icons.732389de.ttf │ ├── img │ │ ├── 404.3648f234.png │ │ ├── gongshang.9ce31135.png │ │ ├── minsheng.50e3b425.png │ │ └── zhongguo.20798bfa.png │ ├── index.html │ └── js │ │ ├── app.2e871bae.js │ │ ├── app.2e871bae.js.map │ │ ├── chunk-vendors.e00a5d4a.js │ │ └── chunk-vendors.e00a5d4a.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.png │ │ │ ├── logo.png │ │ │ ├── password.png │ │ │ ├── role.png │ │ │ ├── test │ │ │ ├── gongshang.png │ │ │ ├── jianshe.png │ │ │ ├── jiaotong.png │ │ │ ├── minsheng.png │ │ │ ├── nongye.png │ │ │ ├── weixin.png │ │ │ ├── zhifubao.png │ │ │ └── zhongguo.png │ │ │ └── username.png │ ├── components │ │ ├── SvgIcon │ │ │ └── index.vue │ │ ├── common │ │ │ ├── BreadCrumbs.vue │ │ │ ├── Editor.vue │ │ │ ├── ExcelFileUpload.vue │ │ │ └── FileUpload.vue │ │ ├── home │ │ │ ├── HomeCard.vue │ │ │ ├── HomeChart.vue │ │ │ ├── HomeComment.vue │ │ │ └── HomeProgress.vue │ │ └── index │ │ │ ├── IndexAside.vue │ │ │ ├── IndexAsideStatic.vue │ │ │ ├── IndexAsideSub.vue │ │ │ ├── IndexHeader.vue │ │ │ └── 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 │ │ ├── print.js │ │ ├── storage.js │ │ ├── style.css │ │ ├── style.js │ │ ├── theme.scss │ │ ├── utils.js │ │ └── validate.js │ └── views │ │ ├── 404.vue │ │ ├── center.vue │ │ ├── home.vue │ │ ├── index.vue │ │ ├── login.vue │ │ ├── modules │ │ ├── baoxiu │ │ │ ├── add-or-update.vue │ │ │ └── list.vue │ │ ├── chewei │ │ │ ├── add-or-update.vue │ │ │ └── list.vue │ │ ├── cheweiFenpei │ │ │ ├── add-or-update.vue │ │ │ └── list.vue │ │ ├── churu │ │ │ ├── add-or-update.vue │ │ │ └── list.vue │ │ ├── config │ │ │ ├── add-or-update.vue │ │ │ └── list.vue │ │ ├── databaseBackup │ │ │ ├── beifen.vue │ │ │ └── huanyuan.vue │ │ ├── dictionary │ │ │ ├── add-or-update.vue │ │ │ └── list.vue │ │ ├── dictionaryBaoxiu │ │ │ ├── add-or-update.vue │ │ │ └── list.vue │ │ ├── dictionaryBaoxiuZhuangtai │ │ │ ├── add-or-update.vue │ │ │ └── list.vue │ │ ├── dictionaryChewei │ │ │ ├── add-or-update.vue │ │ │ └── list.vue │ │ ├── dictionaryCheweiZhuangtai │ │ │ ├── add-or-update.vue │ │ │ └── list.vue │ │ ├── dictionaryChuru │ │ │ ├── add-or-update.vue │ │ │ └── list.vue │ │ ├── dictionaryFangwuDanyuan │ │ │ ├── add-or-update.vue │ │ │ └── list.vue │ │ ├── dictionaryFangwuLouhao │ │ │ ├── add-or-update.vue │ │ │ └── list.vue │ │ ├── dictionaryFeiyong │ │ │ ├── add-or-update.vue │ │ │ └── list.vue │ │ ├── dictionaryFeiyongZhuangtai │ │ │ ├── add-or-update.vue │ │ │ └── list.vue │ │ ├── dictionaryGonggao │ │ │ ├── add-or-update.vue │ │ │ └── list.vue │ │ ├── dictionarySex │ │ │ ├── add-or-update.vue │ │ │ └── list.vue │ │ ├── dictionaryWuye │ │ │ ├── add-or-update.vue │ │ │ └── list.vue │ │ ├── fangwu │ │ │ ├── add-or-update.vue │ │ │ └── list.vue │ │ ├── feiyong │ │ │ ├── add-or-update.vue │ │ │ └── list.vue │ │ ├── gonggao │ │ │ ├── add-or-update.vue │ │ │ └── list.vue │ │ ├── liuyan │ │ │ ├── add-or-update.vue │ │ │ └── list.vue │ │ ├── sixin │ │ │ ├── add-or-update.vue │ │ │ └── list.vue │ │ ├── users │ │ │ ├── add-or-update.vue │ │ │ └── list.vue │ │ ├── wuye │ │ │ ├── add-or-update.vue │ │ │ └── list.vue │ │ └── yonghu │ │ │ ├── add-or-update.vue │ │ │ └── list.vue │ │ ├── pay.vue │ │ ├── register.vue │ │ └── update-password.vue │ └── vue.config.js ├── application.yml ├── front └── front │ ├── css │ ├── bootstrap.min.css │ ├── common.css │ ├── front-kaoshi-style.css │ ├── homeworkPC.min.css │ ├── paper.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 │ ├── seckilling.jpg │ ├── select.png │ ├── selectActive.png │ ├── unselect.png │ ├── weixin.png │ ├── yuan.png │ ├── zhifubao.png │ └── zhongguo.png │ ├── index.html │ ├── js │ ├── bootstrap.AMapPositionPicker.js │ ├── bootstrap.min.js │ ├── config.js │ ├── jquery.js │ ├── utils.js │ ├── validate.js │ └── vue.js │ ├── layui │ ├── css │ │ ├── layui.css │ │ ├── layui.mobile.css │ │ └── modules │ │ │ ├── code.css │ │ │ ├── laydate │ │ │ └── default │ │ │ │ └── laydate.css │ │ │ └── layer │ │ │ └── default │ │ │ ├── icon-ext.png │ │ │ ├── icon.png │ │ │ ├── layer.css │ │ │ ├── loading-0.gif │ │ │ ├── loading-1.gif │ │ │ └── loading-2.gif │ ├── font │ │ ├── iconfont.eot │ │ ├── iconfont.svg │ │ ├── iconfont.ttf │ │ ├── iconfont.woff │ │ └── iconfont.woff2 │ ├── images │ │ └── face │ │ │ ├── 0.gif │ │ │ ├── 1.gif │ │ │ ├── 10.gif │ │ │ ├── 11.gif │ │ │ ├── 12.gif │ │ │ ├── 13.gif │ │ │ ├── 14.gif │ │ │ ├── 15.gif │ │ │ ├── 16.gif │ │ │ ├── 17.gif │ │ │ ├── 18.gif │ │ │ ├── 19.gif │ │ │ ├── 2.gif │ │ │ ├── 20.gif │ │ │ ├── 21.gif │ │ │ ├── 22.gif │ │ │ ├── 23.gif │ │ │ ├── 24.gif │ │ │ ├── 25.gif │ │ │ ├── 26.gif │ │ │ ├── 27.gif │ │ │ ├── 28.gif │ │ │ ├── 29.gif │ │ │ ├── 3.gif │ │ │ ├── 30.gif │ │ │ ├── 31.gif │ │ │ ├── 32.gif │ │ │ ├── 33.gif │ │ │ ├── 34.gif │ │ │ ├── 35.gif │ │ │ ├── 36.gif │ │ │ ├── 37.gif │ │ │ ├── 38.gif │ │ │ ├── 39.gif │ │ │ ├── 4.gif │ │ │ ├── 40.gif │ │ │ ├── 41.gif │ │ │ ├── 42.gif │ │ │ ├── 43.gif │ │ │ ├── 44.gif │ │ │ ├── 45.gif │ │ │ ├── 46.gif │ │ │ ├── 47.gif │ │ │ ├── 48.gif │ │ │ ├── 49.gif │ │ │ ├── 5.gif │ │ │ ├── 50.gif │ │ │ ├── 51.gif │ │ │ ├── 52.gif │ │ │ ├── 53.gif │ │ │ ├── 54.gif │ │ │ ├── 55.gif │ │ │ ├── 56.gif │ │ │ ├── 57.gif │ │ │ ├── 58.gif │ │ │ ├── 59.gif │ │ │ ├── 6.gif │ │ │ ├── 60.gif │ │ │ ├── 61.gif │ │ │ ├── 62.gif │ │ │ ├── 63.gif │ │ │ ├── 64.gif │ │ │ ├── 65.gif │ │ │ ├── 66.gif │ │ │ ├── 67.gif │ │ │ ├── 68.gif │ │ │ ├── 69.gif │ │ │ ├── 7.gif │ │ │ ├── 70.gif │ │ │ ├── 71.gif │ │ │ ├── 8.gif │ │ │ └── 9.gif │ ├── lay │ │ └── modules │ │ │ ├── carousel.js │ │ │ ├── code.js │ │ │ ├── colorpicker.js │ │ │ ├── element.js │ │ │ ├── flow.js │ │ │ ├── form.js │ │ │ ├── jquery.js │ │ │ ├── laydate.js │ │ │ ├── layedit.js │ │ │ ├── layer.js │ │ │ ├── laypage.js │ │ │ ├── laytpl.js │ │ │ ├── mobile.js │ │ │ ├── rate.js │ │ │ ├── slider.js │ │ │ ├── table.js │ │ │ ├── transfer.js │ │ │ ├── tree.js │ │ │ ├── upload.js │ │ │ └── util.js │ ├── layui.all.js │ └── layui.js │ ├── modules │ ├── config.js │ ├── http │ │ └── http.js │ ├── layarea │ │ └── layarea.js │ └── tinymce │ │ ├── index.html │ │ ├── tinymce.js │ │ └── tinymce │ │ ├── jquery.tinymce.min.js │ │ ├── langs │ │ ├── readme.md │ │ └── zh_CN.js │ │ ├── license.txt │ │ ├── plugins │ │ ├── advlist │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── anchor │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── autolink │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── autoresize │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── autosave │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── bbcode │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── charmap │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── code │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── codesample │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── colorpicker │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── contextmenu │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── directionality │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── emoticons │ │ │ ├── js │ │ │ │ ├── emojis.js │ │ │ │ └── emojis.min.js │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── fullpage │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── fullscreen │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── help │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── hr │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── image │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── imagetools │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── importcss │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── indent2em │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── insertdatetime │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── legacyoutput │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── link │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── lists │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── media │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── nonbreaking │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── noneditable │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── pagebreak │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── paste │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── preview │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── print │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── quickbars │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── save │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── searchreplace │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── spellchecker │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── tabfocus │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── table │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── template │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── textcolor │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── textpattern │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── toc │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── visualblocks │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── visualchars │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ └── wordcount │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── readme.md │ │ ├── skins │ │ ├── content │ │ │ ├── dark │ │ │ │ ├── content.css │ │ │ │ ├── content.min.css │ │ │ │ └── content.min.css.map │ │ │ ├── default │ │ │ │ ├── content.css │ │ │ │ ├── content.min.css │ │ │ │ └── content.min.css.map │ │ │ ├── document │ │ │ │ ├── content.css │ │ │ │ ├── content.min.css │ │ │ │ └── content.min.css.map │ │ │ └── writer │ │ │ │ ├── content.css │ │ │ │ ├── content.min.css │ │ │ │ └── content.min.css.map │ │ └── ui │ │ │ ├── oxide-dark │ │ │ ├── content.css │ │ │ ├── content.inline.css │ │ │ ├── content.inline.min.css │ │ │ ├── content.inline.min.css.map │ │ │ ├── content.min.css │ │ │ ├── content.min.css.map │ │ │ ├── content.mobile.css │ │ │ ├── content.mobile.min.css │ │ │ ├── content.mobile.min.css.map │ │ │ ├── fonts │ │ │ │ └── tinymce-mobile.woff │ │ │ ├── skin.css │ │ │ ├── skin.min.css │ │ │ ├── skin.min.css.map │ │ │ ├── skin.mobile.css │ │ │ ├── skin.mobile.min.css │ │ │ └── skin.mobile.min.css.map │ │ │ └── oxide │ │ │ ├── content.css │ │ │ ├── content.inline.css │ │ │ ├── content.inline.min.css │ │ │ ├── content.inline.min.css.map │ │ │ ├── content.min.css │ │ │ ├── content.min.css.map │ │ │ ├── content.mobile.css │ │ │ ├── content.mobile.min.css │ │ │ ├── content.mobile.min.css.map │ │ │ ├── fonts │ │ │ └── tinymce-mobile.woff │ │ │ ├── skin.css │ │ │ ├── skin.min.css │ │ │ ├── skin.min.css.map │ │ │ ├── skin.mobile.css │ │ │ ├── skin.mobile.min.css │ │ │ └── skin.mobile.min.css.map │ │ ├── themes │ │ ├── mobile │ │ │ ├── theme.js │ │ │ └── theme.min.js │ │ └── silver │ │ │ ├── theme.js │ │ │ └── theme.min.js │ │ ├── tinymce.js │ │ └── tinymce.min.js │ ├── pages │ ├── baoxiu │ │ ├── add.html │ │ ├── detail.html │ │ ├── list.html │ │ └── list2.html │ ├── chat │ │ └── chat.html │ ├── chewei │ │ ├── add.html │ │ ├── detail.html │ │ ├── list.html │ │ └── list2.html │ ├── cheweiFenpei │ │ ├── add.html │ │ ├── detail.html │ │ ├── list.html │ │ └── list2.html │ ├── churu │ │ ├── add.html │ │ ├── detail.html │ │ ├── list.html │ │ └── list2.html │ ├── dictionary │ │ ├── add.html │ │ ├── detail.html │ │ ├── list.html │ │ └── list2.html │ ├── fangwu │ │ ├── add.html │ │ ├── detail.html │ │ ├── list.html │ │ └── list2.html │ ├── feiyong │ │ ├── add.html │ │ ├── detail.html │ │ ├── list.html │ │ └── list2.html │ ├── gonggao │ │ ├── add.html │ │ ├── detail.html │ │ ├── list.html │ │ └── list2.html │ ├── home │ │ └── home.html │ ├── liuyan │ │ ├── add.html │ │ ├── detail.html │ │ ├── list.html │ │ └── list2.html │ ├── login │ │ └── login.html │ ├── recharge │ │ └── recharge.html │ ├── sixin │ │ ├── add.html │ │ ├── detail.html │ │ ├── list.html │ │ └── list2.html │ ├── wuye │ │ ├── add.html │ │ ├── center.html │ │ ├── detail.html │ │ ├── list.html │ │ ├── list2.html │ │ └── register.html │ └── yonghu │ │ ├── add.html │ │ ├── center.html │ │ ├── detail.html │ │ ├── list.html │ │ ├── list2.html │ │ └── register.html │ └── xznstatic │ ├── css │ ├── animate.css │ ├── bootstrap.min.css │ ├── common.css │ ├── element.min.css │ ├── fonts │ │ ├── element-icons.ttf │ │ └── element-icons.woff │ ├── login.css │ ├── public.css │ ├── style.css │ └── swiper.min.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 │ ├── bootstrap.min.js │ ├── element.min.js │ ├── index.js │ ├── jquery-1.11.3.min.js │ ├── jquery.SuperSlide.2.1.1.js │ ├── swiper.min.js │ └── wow.min.js ├── img └── img │ ├── back-img-bg.jpg │ ├── back-list-img-bg.jpg │ ├── front-img-bg.jpg │ └── logo.jpg ├── mapper ├── BaoxiuDao.xml ├── CheweiDao.xml ├── CheweiFenpeiDao.xml ├── ChuruDao.xml ├── CommonDao.xml ├── ConfigDao.xml ├── DictionaryDao.xml ├── FangwuDao.xml ├── FeiyongDao.xml ├── GonggaoDao.xml ├── LiuyanDao.xml ├── SixinDao.xml ├── TokenDao.xml ├── UsersDao.xml ├── WuyeDao.xml └── YonghuDao.xml └── static └── upload ├── 1678845596222.jpg ├── a.txt ├── baoxiu1.jpg ├── baoxiu10.jpg ├── baoxiu11.jpg ├── baoxiu12.jpg ├── baoxiu13.jpg ├── baoxiu14.jpg ├── baoxiu2.jpg ├── baoxiu3.jpg ├── baoxiu4.jpg ├── baoxiu5.jpg ├── baoxiu6.jpg ├── baoxiu7.jpg ├── baoxiu8.jpg ├── baoxiu9.jpg ├── config1.jpg ├── config2.jpg ├── config3.jpg ├── file.rar ├── gonggao1.jpg ├── gonggao10.jpg ├── gonggao11.jpg ├── gonggao12.jpg ├── gonggao13.jpg ├── gonggao14.jpg ├── gonggao2.jpg ├── gonggao3.jpg ├── gonggao4.jpg ├── gonggao5.jpg ├── gonggao6.jpg ├── gonggao7.jpg ├── gonggao8.jpg ├── gonggao9.jpg ├── music.mp3 ├── video.mp4 ├── wuye1.jpg ├── wuye2.jpg ├── wuye3.jpg ├── yonghu1.jpg ├── yonghu2.jpg └── yonghu3.jpg /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/README.md -------------------------------------------------------------------------------- /image/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/image/1.png -------------------------------------------------------------------------------- /image/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/image/10.png -------------------------------------------------------------------------------- /image/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/image/11.png -------------------------------------------------------------------------------- /image/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/image/12.png -------------------------------------------------------------------------------- /image/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/image/13.png -------------------------------------------------------------------------------- /image/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/image/14.png -------------------------------------------------------------------------------- /image/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/image/15.png -------------------------------------------------------------------------------- /image/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/image/2.png -------------------------------------------------------------------------------- /image/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/image/3.png -------------------------------------------------------------------------------- /image/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/image/4.png -------------------------------------------------------------------------------- /image/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/image/5.png -------------------------------------------------------------------------------- /image/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/image/6.png -------------------------------------------------------------------------------- /image/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/image/7.png -------------------------------------------------------------------------------- /image/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/image/8.png -------------------------------------------------------------------------------- /image/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/image/9.png -------------------------------------------------------------------------------- /limage/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/limage/1.png -------------------------------------------------------------------------------- /limage/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/limage/2.png -------------------------------------------------------------------------------- /limage/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/limage/3.png -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/java/com/annotation/APPLoginUser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/annotation/APPLoginUser.java -------------------------------------------------------------------------------- /src/main/java/com/annotation/ColumnInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/annotation/ColumnInfo.java -------------------------------------------------------------------------------- /src/main/java/com/annotation/IgnoreAuth.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/annotation/IgnoreAuth.java -------------------------------------------------------------------------------- /src/main/java/com/annotation/LoginUser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/annotation/LoginUser.java -------------------------------------------------------------------------------- /src/main/java/com/config/InterceptorConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/config/InterceptorConfig.java -------------------------------------------------------------------------------- /src/main/java/com/config/MyMetaObjectHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/config/MyMetaObjectHandler.java -------------------------------------------------------------------------------- /src/main/java/com/config/MybatisPlusConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/config/MybatisPlusConfig.java -------------------------------------------------------------------------------- /src/main/java/com/controller/BaoxiuController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/controller/BaoxiuController.java -------------------------------------------------------------------------------- /src/main/java/com/controller/CheweiController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/controller/CheweiController.java -------------------------------------------------------------------------------- /src/main/java/com/controller/CheweiFenpeiController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/controller/CheweiFenpeiController.java -------------------------------------------------------------------------------- /src/main/java/com/controller/ChuruController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/controller/ChuruController.java -------------------------------------------------------------------------------- /src/main/java/com/controller/CommonController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/controller/CommonController.java -------------------------------------------------------------------------------- /src/main/java/com/controller/ConfigController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/controller/ConfigController.java -------------------------------------------------------------------------------- /src/main/java/com/controller/DictionaryController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/controller/DictionaryController.java -------------------------------------------------------------------------------- /src/main/java/com/controller/FangwuController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/controller/FangwuController.java -------------------------------------------------------------------------------- /src/main/java/com/controller/FeiyongController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/controller/FeiyongController.java -------------------------------------------------------------------------------- /src/main/java/com/controller/FileController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/controller/FileController.java -------------------------------------------------------------------------------- /src/main/java/com/controller/GonggaoController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/controller/GonggaoController.java -------------------------------------------------------------------------------- /src/main/java/com/controller/LiuyanController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/controller/LiuyanController.java -------------------------------------------------------------------------------- /src/main/java/com/controller/SixinController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/controller/SixinController.java -------------------------------------------------------------------------------- /src/main/java/com/controller/UsersController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/controller/UsersController.java -------------------------------------------------------------------------------- /src/main/java/com/controller/WuyeController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/controller/WuyeController.java -------------------------------------------------------------------------------- /src/main/java/com/controller/YonghuController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/controller/YonghuController.java -------------------------------------------------------------------------------- /src/main/java/com/dao/BaoxiuDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/dao/BaoxiuDao.java -------------------------------------------------------------------------------- /src/main/java/com/dao/CheweiDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/dao/CheweiDao.java -------------------------------------------------------------------------------- /src/main/java/com/dao/CheweiFenpeiDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/dao/CheweiFenpeiDao.java -------------------------------------------------------------------------------- /src/main/java/com/dao/ChuruDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/dao/ChuruDao.java -------------------------------------------------------------------------------- /src/main/java/com/dao/CommonDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/dao/CommonDao.java -------------------------------------------------------------------------------- /src/main/java/com/dao/ConfigDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/dao/ConfigDao.java -------------------------------------------------------------------------------- /src/main/java/com/dao/DictionaryDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/dao/DictionaryDao.java -------------------------------------------------------------------------------- /src/main/java/com/dao/FangwuDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/dao/FangwuDao.java -------------------------------------------------------------------------------- /src/main/java/com/dao/FeiyongDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/dao/FeiyongDao.java -------------------------------------------------------------------------------- /src/main/java/com/dao/GonggaoDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/dao/GonggaoDao.java -------------------------------------------------------------------------------- /src/main/java/com/dao/LiuyanDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/dao/LiuyanDao.java -------------------------------------------------------------------------------- /src/main/java/com/dao/SixinDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/dao/SixinDao.java -------------------------------------------------------------------------------- /src/main/java/com/dao/TokenDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/dao/TokenDao.java -------------------------------------------------------------------------------- /src/main/java/com/dao/UsersDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/dao/UsersDao.java -------------------------------------------------------------------------------- /src/main/java/com/dao/WuyeDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/dao/WuyeDao.java -------------------------------------------------------------------------------- /src/main/java/com/dao/YonghuDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/dao/YonghuDao.java -------------------------------------------------------------------------------- /src/main/java/com/entity/BaoxiuEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/entity/BaoxiuEntity.java -------------------------------------------------------------------------------- /src/main/java/com/entity/CheweiEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/entity/CheweiEntity.java -------------------------------------------------------------------------------- /src/main/java/com/entity/CheweiFenpeiEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/entity/CheweiFenpeiEntity.java -------------------------------------------------------------------------------- /src/main/java/com/entity/ChuruEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/entity/ChuruEntity.java -------------------------------------------------------------------------------- /src/main/java/com/entity/ConfigEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/entity/ConfigEntity.java -------------------------------------------------------------------------------- /src/main/java/com/entity/DictionaryEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/entity/DictionaryEntity.java -------------------------------------------------------------------------------- /src/main/java/com/entity/EIException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/entity/EIException.java -------------------------------------------------------------------------------- /src/main/java/com/entity/FangwuEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/entity/FangwuEntity.java -------------------------------------------------------------------------------- /src/main/java/com/entity/FeiyongEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/entity/FeiyongEntity.java -------------------------------------------------------------------------------- /src/main/java/com/entity/GonggaoEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/entity/GonggaoEntity.java -------------------------------------------------------------------------------- /src/main/java/com/entity/LiuyanEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/entity/LiuyanEntity.java -------------------------------------------------------------------------------- /src/main/java/com/entity/SixinEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/entity/SixinEntity.java -------------------------------------------------------------------------------- /src/main/java/com/entity/TokenEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/entity/TokenEntity.java -------------------------------------------------------------------------------- /src/main/java/com/entity/UsersEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/entity/UsersEntity.java -------------------------------------------------------------------------------- /src/main/java/com/entity/WuyeEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/entity/WuyeEntity.java -------------------------------------------------------------------------------- /src/main/java/com/entity/YonghuEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/entity/YonghuEntity.java -------------------------------------------------------------------------------- /src/main/java/com/entity/model/BaoxiuModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/entity/model/BaoxiuModel.java -------------------------------------------------------------------------------- /src/main/java/com/entity/model/CheweiFenpeiModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/entity/model/CheweiFenpeiModel.java -------------------------------------------------------------------------------- /src/main/java/com/entity/model/CheweiModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/entity/model/CheweiModel.java -------------------------------------------------------------------------------- /src/main/java/com/entity/model/ChuruModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/entity/model/ChuruModel.java -------------------------------------------------------------------------------- /src/main/java/com/entity/model/DictionaryModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/entity/model/DictionaryModel.java -------------------------------------------------------------------------------- /src/main/java/com/entity/model/FangwuModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/entity/model/FangwuModel.java -------------------------------------------------------------------------------- /src/main/java/com/entity/model/FeiyongModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/entity/model/FeiyongModel.java -------------------------------------------------------------------------------- /src/main/java/com/entity/model/GonggaoModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/entity/model/GonggaoModel.java -------------------------------------------------------------------------------- /src/main/java/com/entity/model/LiuyanModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/entity/model/LiuyanModel.java -------------------------------------------------------------------------------- /src/main/java/com/entity/model/SixinModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/entity/model/SixinModel.java -------------------------------------------------------------------------------- /src/main/java/com/entity/model/WuyeModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/entity/model/WuyeModel.java -------------------------------------------------------------------------------- /src/main/java/com/entity/model/YonghuModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/entity/model/YonghuModel.java -------------------------------------------------------------------------------- /src/main/java/com/entity/view/BaoxiuView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/entity/view/BaoxiuView.java -------------------------------------------------------------------------------- /src/main/java/com/entity/view/CheweiFenpeiView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/entity/view/CheweiFenpeiView.java -------------------------------------------------------------------------------- /src/main/java/com/entity/view/CheweiView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/entity/view/CheweiView.java -------------------------------------------------------------------------------- /src/main/java/com/entity/view/ChuruView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/entity/view/ChuruView.java -------------------------------------------------------------------------------- /src/main/java/com/entity/view/DictionaryView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/entity/view/DictionaryView.java -------------------------------------------------------------------------------- /src/main/java/com/entity/view/FangwuView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/entity/view/FangwuView.java -------------------------------------------------------------------------------- /src/main/java/com/entity/view/FeiyongView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/entity/view/FeiyongView.java -------------------------------------------------------------------------------- /src/main/java/com/entity/view/GonggaoView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/entity/view/GonggaoView.java -------------------------------------------------------------------------------- /src/main/java/com/entity/view/LiuyanView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/entity/view/LiuyanView.java -------------------------------------------------------------------------------- /src/main/java/com/entity/view/SixinView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/entity/view/SixinView.java -------------------------------------------------------------------------------- /src/main/java/com/entity/view/WuyeView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/entity/view/WuyeView.java -------------------------------------------------------------------------------- /src/main/java/com/entity/view/YonghuView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/entity/view/YonghuView.java -------------------------------------------------------------------------------- /src/main/java/com/entity/vo/BaoxiuVO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/entity/vo/BaoxiuVO.java -------------------------------------------------------------------------------- /src/main/java/com/entity/vo/CheweiFenpeiVO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/entity/vo/CheweiFenpeiVO.java -------------------------------------------------------------------------------- /src/main/java/com/entity/vo/CheweiVO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/entity/vo/CheweiVO.java -------------------------------------------------------------------------------- /src/main/java/com/entity/vo/ChuruVO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/entity/vo/ChuruVO.java -------------------------------------------------------------------------------- /src/main/java/com/entity/vo/DictionaryVO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/entity/vo/DictionaryVO.java -------------------------------------------------------------------------------- /src/main/java/com/entity/vo/FangwuVO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/entity/vo/FangwuVO.java -------------------------------------------------------------------------------- /src/main/java/com/entity/vo/FeiyongVO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/entity/vo/FeiyongVO.java -------------------------------------------------------------------------------- /src/main/java/com/entity/vo/GonggaoVO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/entity/vo/GonggaoVO.java -------------------------------------------------------------------------------- /src/main/java/com/entity/vo/LiuyanVO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/entity/vo/LiuyanVO.java -------------------------------------------------------------------------------- /src/main/java/com/entity/vo/SixinVO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/entity/vo/SixinVO.java -------------------------------------------------------------------------------- /src/main/java/com/entity/vo/WuyeVO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/entity/vo/WuyeVO.java -------------------------------------------------------------------------------- /src/main/java/com/entity/vo/YonghuVO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/entity/vo/YonghuVO.java -------------------------------------------------------------------------------- /src/main/java/com/interceptor/AuthorizationInterceptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/interceptor/AuthorizationInterceptor.java -------------------------------------------------------------------------------- /src/main/java/com/model/enums/TypeEnum.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/model/enums/TypeEnum.java -------------------------------------------------------------------------------- /src/main/java/com/service/BaoxiuService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/service/BaoxiuService.java -------------------------------------------------------------------------------- /src/main/java/com/service/CheweiFenpeiService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/service/CheweiFenpeiService.java -------------------------------------------------------------------------------- /src/main/java/com/service/CheweiService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/service/CheweiService.java -------------------------------------------------------------------------------- /src/main/java/com/service/ChuruService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/service/ChuruService.java -------------------------------------------------------------------------------- /src/main/java/com/service/CommonService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/service/CommonService.java -------------------------------------------------------------------------------- /src/main/java/com/service/ConfigService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/service/ConfigService.java -------------------------------------------------------------------------------- /src/main/java/com/service/DictionaryService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/service/DictionaryService.java -------------------------------------------------------------------------------- /src/main/java/com/service/FangwuService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/service/FangwuService.java -------------------------------------------------------------------------------- /src/main/java/com/service/FeiyongService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/service/FeiyongService.java -------------------------------------------------------------------------------- /src/main/java/com/service/GonggaoService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/service/GonggaoService.java -------------------------------------------------------------------------------- /src/main/java/com/service/LiuyanService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/service/LiuyanService.java -------------------------------------------------------------------------------- /src/main/java/com/service/SixinService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/service/SixinService.java -------------------------------------------------------------------------------- /src/main/java/com/service/TokenService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/service/TokenService.java -------------------------------------------------------------------------------- /src/main/java/com/service/UsersService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/service/UsersService.java -------------------------------------------------------------------------------- /src/main/java/com/service/WuyeService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/service/WuyeService.java -------------------------------------------------------------------------------- /src/main/java/com/service/YonghuService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/service/YonghuService.java -------------------------------------------------------------------------------- /src/main/java/com/service/impl/BaoxiuServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/service/impl/BaoxiuServiceImpl.java -------------------------------------------------------------------------------- /src/main/java/com/service/impl/CheweiFenpeiServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/service/impl/CheweiFenpeiServiceImpl.java -------------------------------------------------------------------------------- /src/main/java/com/service/impl/CheweiServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/service/impl/CheweiServiceImpl.java -------------------------------------------------------------------------------- /src/main/java/com/service/impl/ChuruServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/service/impl/ChuruServiceImpl.java -------------------------------------------------------------------------------- /src/main/java/com/service/impl/CommonServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/service/impl/CommonServiceImpl.java -------------------------------------------------------------------------------- /src/main/java/com/service/impl/ConfigServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/service/impl/ConfigServiceImpl.java -------------------------------------------------------------------------------- /src/main/java/com/service/impl/DictionaryServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/service/impl/DictionaryServiceImpl.java -------------------------------------------------------------------------------- /src/main/java/com/service/impl/FangwuServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/service/impl/FangwuServiceImpl.java -------------------------------------------------------------------------------- /src/main/java/com/service/impl/FeiyongServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/service/impl/FeiyongServiceImpl.java -------------------------------------------------------------------------------- /src/main/java/com/service/impl/GonggaoServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/service/impl/GonggaoServiceImpl.java -------------------------------------------------------------------------------- /src/main/java/com/service/impl/LiuyanServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/service/impl/LiuyanServiceImpl.java -------------------------------------------------------------------------------- /src/main/java/com/service/impl/SixinServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/service/impl/SixinServiceImpl.java -------------------------------------------------------------------------------- /src/main/java/com/service/impl/TokenServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/service/impl/TokenServiceImpl.java -------------------------------------------------------------------------------- /src/main/java/com/service/impl/UsersServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/service/impl/UsersServiceImpl.java -------------------------------------------------------------------------------- /src/main/java/com/service/impl/WuyeServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/service/impl/WuyeServiceImpl.java -------------------------------------------------------------------------------- /src/main/java/com/service/impl/YonghuServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/service/impl/YonghuServiceImpl.java -------------------------------------------------------------------------------- /src/main/java/com/thread/MyThreadMethod.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/thread/MyThreadMethod.java -------------------------------------------------------------------------------- /src/main/java/com/utils/BaiduUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/utils/BaiduUtil.java -------------------------------------------------------------------------------- /src/main/java/com/utils/ClazzDiff.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/utils/ClazzDiff.java -------------------------------------------------------------------------------- /src/main/java/com/utils/CommonUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/utils/CommonUtil.java -------------------------------------------------------------------------------- /src/main/java/com/utils/DateUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/utils/DateUtil.java -------------------------------------------------------------------------------- /src/main/java/com/utils/FileUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/utils/FileUtil.java -------------------------------------------------------------------------------- /src/main/java/com/utils/HttpClientUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/utils/HttpClientUtils.java -------------------------------------------------------------------------------- /src/main/java/com/utils/JQPageInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/utils/JQPageInfo.java -------------------------------------------------------------------------------- /src/main/java/com/utils/MPUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/utils/MPUtil.java -------------------------------------------------------------------------------- /src/main/java/com/utils/PageUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/utils/PageUtils.java -------------------------------------------------------------------------------- /src/main/java/com/utils/PoiUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/utils/PoiUtil.java -------------------------------------------------------------------------------- /src/main/java/com/utils/Query.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/utils/Query.java -------------------------------------------------------------------------------- /src/main/java/com/utils/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/utils/R.java -------------------------------------------------------------------------------- /src/main/java/com/utils/SQLFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/utils/SQLFilter.java -------------------------------------------------------------------------------- /src/main/java/com/utils/SpringContextUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/utils/SpringContextUtils.java -------------------------------------------------------------------------------- /src/main/java/com/utils/StringUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/utils/StringUtil.java -------------------------------------------------------------------------------- /src/main/java/com/utils/ValidatorUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/utils/ValidatorUtils.java -------------------------------------------------------------------------------- /src/main/java/com/zonghexiaoqiguanlixitongApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/java/com/zonghexiaoqiguanlixitongApplication.java -------------------------------------------------------------------------------- /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/3-build.bat: -------------------------------------------------------------------------------- 1 | cnpm run build 2 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/babel.config.js -------------------------------------------------------------------------------- /src/main/resources/admin/admin/dist/css/app.28e76094.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/dist/css/app.28e76094.css -------------------------------------------------------------------------------- /src/main/resources/admin/admin/dist/css/chunk-vendors.a48a7cc1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/dist/css/chunk-vendors.a48a7cc1.css -------------------------------------------------------------------------------- /src/main/resources/admin/admin/dist/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/dist/favicon.ico -------------------------------------------------------------------------------- /src/main/resources/admin/admin/dist/img/404.3648f234.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/dist/img/404.3648f234.png -------------------------------------------------------------------------------- /src/main/resources/admin/admin/dist/img/gongshang.9ce31135.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/dist/img/gongshang.9ce31135.png -------------------------------------------------------------------------------- /src/main/resources/admin/admin/dist/img/minsheng.50e3b425.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/dist/img/minsheng.50e3b425.png -------------------------------------------------------------------------------- /src/main/resources/admin/admin/dist/img/zhongguo.20798bfa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/dist/img/zhongguo.20798bfa.png -------------------------------------------------------------------------------- /src/main/resources/admin/admin/dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/dist/index.html -------------------------------------------------------------------------------- /src/main/resources/admin/admin/dist/js/app.2e871bae.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/dist/js/app.2e871bae.js -------------------------------------------------------------------------------- /src/main/resources/admin/admin/dist/js/app.2e871bae.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/dist/js/app.2e871bae.js.map -------------------------------------------------------------------------------- /src/main/resources/admin/admin/dist/js/chunk-vendors.e00a5d4a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/dist/js/chunk-vendors.e00a5d4a.js -------------------------------------------------------------------------------- /src/main/resources/admin/admin/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/package-lock.json -------------------------------------------------------------------------------- /src/main/resources/admin/admin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/package.json -------------------------------------------------------------------------------- /src/main/resources/admin/admin/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/public/favicon.ico -------------------------------------------------------------------------------- /src/main/resources/admin/admin/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/public/index.html -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/App.vue -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/assets/css/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/assets/css/style.scss -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/assets/img/404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/assets/img/404.png -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/assets/img/avator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/assets/img/avator.png -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/assets/img/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/assets/img/bg.jpg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/assets/img/captcha.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/assets/img/captcha.jpg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/assets/img/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/assets/img/login.png -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/assets/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/assets/img/logo.png -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/assets/img/password.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/assets/img/password.png -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/assets/img/role.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/assets/img/role.png -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/assets/img/test/gongshang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/assets/img/test/gongshang.png -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/assets/img/test/jianshe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/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/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/assets/img/test/jiaotong.png -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/assets/img/test/minsheng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/assets/img/test/minsheng.png -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/assets/img/test/nongye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/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/nature924/No174Integrated-community-management-system/HEAD/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/nature924/No174Integrated-community-management-system/HEAD/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/nature924/No174Integrated-community-management-system/HEAD/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/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/assets/img/username.png -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/components/SvgIcon/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/components/SvgIcon/index.vue -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/components/common/Editor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/components/common/Editor.vue -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/components/common/FileUpload.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/components/common/FileUpload.vue -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/components/home/HomeCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/components/home/HomeCard.vue -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/components/home/HomeChart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/components/home/HomeChart.vue -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/components/home/HomeComment.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/components/home/HomeComment.vue -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/components/home/HomeProgress.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/components/home/HomeProgress.vue -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/components/index/IndexAside.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/components/index/IndexAside.vue -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/components/index/IndexHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/components/index/IndexHeader.vue -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/components/index/IndexMain.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/components/index/IndexMain.vue -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/index.js -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/404.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/404.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/articleEdit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/articleEdit.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/banner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/banner.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/bug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/bug.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/build.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/build.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/cfg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/cfg.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/channel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/channel.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/chart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/chart.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/clipboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/clipboard.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/code.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/component.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/component.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/contacts.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/contacts.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/dashboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/dashboard.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/date.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/date.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/dept.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/dept.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/dict.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/dict.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/documentation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/documentation.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/download.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/drag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/drag.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/druid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/druid.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/edit.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/education.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/education.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/email.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/email.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/excel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/excel.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/exit-fullscreen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/exit-fullscreen.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/eye-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/eye-open.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/file.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/form.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/form.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/fullscreen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/fullscreen.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/icon.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/international.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/international.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/job.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/job.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/language.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/language.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/link.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/list.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/lock.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/log.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/log.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/logininfor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/logininfor.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/menu.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/message.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/message.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/money.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/money.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/monitor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/monitor.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/nested.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/nested.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/nested0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/nested0.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/online.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/online.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/operation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/operation.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/password.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/password.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/password0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/password0.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/pdf.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/people.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/people.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/peoples.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/peoples.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/phone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/phone.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/post.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/post.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/qq.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/qq.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/search.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/sender.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/sender.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/server.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/server.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/shopping.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/shopping.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/shoppingCard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/shoppingCard.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/size.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/size.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/skill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/skill.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/star.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/AI.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/svg/AI.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/AIDeviceLayout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/svg/AIDeviceLayout.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/EIM.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/svg/EIM.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/VIP.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/svg/VIP.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/area.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/svg/area.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/base.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/svg/base.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/batch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/svg/batch.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/board.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/svg/board.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/board1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/svg/board1.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/boardConfig.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/svg/boardConfig.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/cfg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/svg/cfg.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/svg/code.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/company.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/svg/company.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/crop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/svg/crop.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/crops.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/svg/crops.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/dashboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/svg/dashboard.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/dataAbnormal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/svg/dataAbnormal.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/dataLack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/svg/dataLack.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/dept.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/svg/dept.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/device.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/svg/device.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/dict.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/svg/dict.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/diseasesinsect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/svg/diseasesinsect.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/documentation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/svg/documentation.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/email.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/svg/email.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/environmental.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/svg/environmental.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/eye-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/svg/eye-open.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/farmingProject.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/svg/farmingProject.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/finance.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/svg/finance.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/financeBudget.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/svg/financeBudget.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/financeReality.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/svg/financeReality.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/firm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/svg/firm.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/firms.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/svg/firms.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/harvestBatch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/svg/harvestBatch.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/harvestManage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/svg/harvestManage.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/harvestWorks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/svg/harvestWorks.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/svg/home.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/inspection.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/svg/inspection.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/internet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/svg/internet.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/internetActive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/svg/internetActive.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/log.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/svg/log.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/mainSystem.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/svg/mainSystem.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/svg/menu.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/news.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/svg/news.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/order.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/svg/order.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/password.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/svg/password.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/peoples.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/svg/peoples.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/pest.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/svg/pest.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/pestActive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/svg/pestActive.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/pests.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/svg/pests.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/phone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/svg/phone.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/plant.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/svg/plant.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/plants.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/svg/plants.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/plantsActive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/svg/plantsActive.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/residual.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/svg/residual.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/scheme.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/svg/scheme.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/source.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/svg/source.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/sourceActive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/svg/sourceActive.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/system.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/svg/system.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/task.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/svg/task.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/tempFarm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/svg/tempFarm.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/traceability.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/svg/traceability.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/svg/user.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/user0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/svg/user0.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/validCode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/svg/validCode.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/video.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/svg/video.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/videoEquipment.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/svg/videoEquipment.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/videoKey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/svg/videoKey.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/vipCustomized.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/svg/vipCustomized.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/warnings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/svg/warnings.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/workOrder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/svg/workOrder.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/svg/┐┤░х╣▄└э.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/svg/┐┤░х╣▄└э.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/swagger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/swagger.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/system.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/system.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/tab.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/table.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/table.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/table0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/table0.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/task.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/task.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/template.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/template.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/theme.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/theme.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/tool.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/tool.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/tree-table.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/tree-table.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/tree.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/user.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/user0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/user0.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/validCode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/validCode.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/wechat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/wechat.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svg/zip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svg/zip.svg -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/icons/svgo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/icons/svgo.yml -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/main.js -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/router/router-static.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/router/router-static.js -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/store/store.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/utils/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/utils/api.js -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/utils/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/utils/base.js -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/utils/http.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/utils/http.js -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/utils/i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/utils/i18n.js -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/utils/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/utils/menu.js -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/utils/print.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/utils/print.js -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/utils/storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/utils/storage.js -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/utils/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/utils/style.css -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/utils/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/utils/style.js -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/utils/theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/utils/theme.scss -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/utils/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/utils/utils.js -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/utils/validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/utils/validate.js -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/views/404.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/views/404.vue -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/views/center.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/views/center.vue -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/views/home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/views/home.vue -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/views/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/views/index.vue -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/views/login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/views/login.vue -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/views/modules/baoxiu/list.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/views/modules/baoxiu/list.vue -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/views/modules/chewei/list.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/views/modules/chewei/list.vue -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/views/modules/churu/list.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/views/modules/churu/list.vue -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/views/modules/config/list.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/views/modules/config/list.vue -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/views/modules/fangwu/list.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/views/modules/fangwu/list.vue -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/views/modules/liuyan/list.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/views/modules/liuyan/list.vue -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/views/modules/sixin/list.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/views/modules/sixin/list.vue -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/views/modules/users/list.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/views/modules/users/list.vue -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/views/modules/wuye/list.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/views/modules/wuye/list.vue -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/views/modules/yonghu/list.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/views/modules/yonghu/list.vue -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/views/pay.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/views/pay.vue -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/views/register.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/views/register.vue -------------------------------------------------------------------------------- /src/main/resources/admin/admin/src/views/update-password.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/src/views/update-password.vue -------------------------------------------------------------------------------- /src/main/resources/admin/admin/vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/admin/admin/vue.config.js -------------------------------------------------------------------------------- /src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/application.yml -------------------------------------------------------------------------------- /src/main/resources/front/front/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/css/bootstrap.min.css -------------------------------------------------------------------------------- /src/main/resources/front/front/css/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/css/common.css -------------------------------------------------------------------------------- /src/main/resources/front/front/css/front-kaoshi-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/css/front-kaoshi-style.css -------------------------------------------------------------------------------- /src/main/resources/front/front/css/homeworkPC.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/css/homeworkPC.min.css -------------------------------------------------------------------------------- /src/main/resources/front/front/css/paper.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/css/paper.css -------------------------------------------------------------------------------- /src/main/resources/front/front/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/css/style.css -------------------------------------------------------------------------------- /src/main/resources/front/front/css/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/css/theme.css -------------------------------------------------------------------------------- /src/main/resources/front/front/elementui/elementui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/elementui/elementui.css -------------------------------------------------------------------------------- /src/main/resources/front/front/elementui/elementui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/elementui/elementui.js -------------------------------------------------------------------------------- /src/main/resources/front/front/elementui/fonts/element-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/elementui/fonts/element-icons.ttf -------------------------------------------------------------------------------- /src/main/resources/front/front/img/avator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/img/avator.png -------------------------------------------------------------------------------- /src/main/resources/front/front/img/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/img/banner.jpg -------------------------------------------------------------------------------- /src/main/resources/front/front/img/jianshe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/img/jianshe.png -------------------------------------------------------------------------------- /src/main/resources/front/front/img/jiaotong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/img/jiaotong.png -------------------------------------------------------------------------------- /src/main/resources/front/front/img/line.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/img/line.jpg -------------------------------------------------------------------------------- /src/main/resources/front/front/img/nongye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/img/nongye.png -------------------------------------------------------------------------------- /src/main/resources/front/front/img/seckilling.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/img/seckilling.jpg -------------------------------------------------------------------------------- /src/main/resources/front/front/img/select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/img/select.png -------------------------------------------------------------------------------- /src/main/resources/front/front/img/selectActive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/img/selectActive.png -------------------------------------------------------------------------------- /src/main/resources/front/front/img/unselect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/img/unselect.png -------------------------------------------------------------------------------- /src/main/resources/front/front/img/weixin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/img/weixin.png -------------------------------------------------------------------------------- /src/main/resources/front/front/img/yuan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/img/yuan.png -------------------------------------------------------------------------------- /src/main/resources/front/front/img/zhifubao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/img/zhifubao.png -------------------------------------------------------------------------------- /src/main/resources/front/front/img/zhongguo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/img/zhongguo.png -------------------------------------------------------------------------------- /src/main/resources/front/front/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/index.html -------------------------------------------------------------------------------- /src/main/resources/front/front/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/js/bootstrap.min.js -------------------------------------------------------------------------------- /src/main/resources/front/front/js/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/js/config.js -------------------------------------------------------------------------------- /src/main/resources/front/front/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/js/jquery.js -------------------------------------------------------------------------------- /src/main/resources/front/front/js/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/js/utils.js -------------------------------------------------------------------------------- /src/main/resources/front/front/js/validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/js/validate.js -------------------------------------------------------------------------------- /src/main/resources/front/front/js/vue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/js/vue.js -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/css/layui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/css/layui.css -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/css/layui.mobile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/css/layui.mobile.css -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/css/modules/code.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/css/modules/code.css -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/font/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/font/iconfont.eot -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/font/iconfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/font/iconfont.svg -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/font/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/font/iconfont.ttf -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/font/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/font/iconfont.woff -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/font/iconfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/font/iconfont.woff2 -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/images/face/0.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/images/face/1.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/images/face/10.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/images/face/11.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/images/face/12.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/13.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/images/face/13.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/14.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/images/face/14.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/images/face/15.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/images/face/16.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/17.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/images/face/17.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/18.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/images/face/18.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/19.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/images/face/19.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/images/face/2.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/20.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/images/face/20.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/21.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/images/face/21.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/22.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/images/face/22.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/23.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/images/face/23.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/images/face/24.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/25.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/images/face/25.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/26.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/images/face/26.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/27.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/images/face/27.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/28.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/images/face/28.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/29.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/images/face/29.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/images/face/3.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/30.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/images/face/30.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/31.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/images/face/31.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/images/face/32.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/33.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/images/face/33.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/34.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/images/face/34.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/35.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/images/face/35.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/36.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/images/face/36.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/37.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/images/face/37.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/38.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/images/face/38.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/39.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/images/face/39.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/images/face/4.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/40.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/images/face/40.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/41.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/images/face/41.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/42.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/images/face/42.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/43.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/images/face/43.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/44.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/images/face/44.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/45.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/images/face/45.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/46.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/images/face/46.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/47.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/images/face/47.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/images/face/48.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/49.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/images/face/49.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/images/face/5.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/50.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/images/face/50.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/51.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/images/face/51.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/52.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/images/face/52.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/53.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/images/face/53.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/54.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/images/face/54.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/55.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/images/face/55.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/56.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/images/face/56.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/57.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/images/face/57.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/58.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/images/face/58.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/59.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/images/face/59.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/images/face/6.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/60.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/images/face/60.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/61.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/images/face/61.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/62.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/images/face/62.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/63.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/images/face/63.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/images/face/64.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/65.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/images/face/65.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/66.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/images/face/66.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/67.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/images/face/67.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/68.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/images/face/68.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/69.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/images/face/69.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/images/face/7.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/70.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/images/face/70.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/71.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/images/face/71.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/images/face/8.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/images/face/9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/images/face/9.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/lay/modules/carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/lay/modules/carousel.js -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/lay/modules/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/lay/modules/code.js -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/lay/modules/colorpicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/lay/modules/colorpicker.js -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/lay/modules/element.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/lay/modules/element.js -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/lay/modules/flow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/lay/modules/flow.js -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/lay/modules/form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/lay/modules/form.js -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/lay/modules/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/lay/modules/jquery.js -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/lay/modules/laydate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/lay/modules/laydate.js -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/lay/modules/layedit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/lay/modules/layedit.js -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/lay/modules/layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/lay/modules/layer.js -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/lay/modules/laypage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/lay/modules/laypage.js -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/lay/modules/laytpl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/lay/modules/laytpl.js -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/lay/modules/mobile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/lay/modules/mobile.js -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/lay/modules/rate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/lay/modules/rate.js -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/lay/modules/slider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/lay/modules/slider.js -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/lay/modules/table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/lay/modules/table.js -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/lay/modules/transfer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/lay/modules/transfer.js -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/lay/modules/tree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/lay/modules/tree.js -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/lay/modules/upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/lay/modules/upload.js -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/lay/modules/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/lay/modules/util.js -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/layui.all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/layui.all.js -------------------------------------------------------------------------------- /src/main/resources/front/front/layui/layui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/layui/layui.js -------------------------------------------------------------------------------- /src/main/resources/front/front/modules/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/modules/config.js -------------------------------------------------------------------------------- /src/main/resources/front/front/modules/http/http.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/modules/http/http.js -------------------------------------------------------------------------------- /src/main/resources/front/front/modules/layarea/layarea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/modules/layarea/layarea.js -------------------------------------------------------------------------------- /src/main/resources/front/front/modules/tinymce/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/modules/tinymce/index.html -------------------------------------------------------------------------------- /src/main/resources/front/front/modules/tinymce/tinymce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/modules/tinymce/tinymce.js -------------------------------------------------------------------------------- /src/main/resources/front/front/modules/tinymce/tinymce/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/modules/tinymce/tinymce/readme.md -------------------------------------------------------------------------------- /src/main/resources/front/front/pages/baoxiu/add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/pages/baoxiu/add.html -------------------------------------------------------------------------------- /src/main/resources/front/front/pages/baoxiu/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/pages/baoxiu/detail.html -------------------------------------------------------------------------------- /src/main/resources/front/front/pages/baoxiu/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/pages/baoxiu/list.html -------------------------------------------------------------------------------- /src/main/resources/front/front/pages/baoxiu/list2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/pages/baoxiu/list2.html -------------------------------------------------------------------------------- /src/main/resources/front/front/pages/chat/chat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/pages/chat/chat.html -------------------------------------------------------------------------------- /src/main/resources/front/front/pages/chewei/add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/pages/chewei/add.html -------------------------------------------------------------------------------- /src/main/resources/front/front/pages/chewei/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/pages/chewei/detail.html -------------------------------------------------------------------------------- /src/main/resources/front/front/pages/chewei/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/pages/chewei/list.html -------------------------------------------------------------------------------- /src/main/resources/front/front/pages/chewei/list2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/pages/chewei/list2.html -------------------------------------------------------------------------------- /src/main/resources/front/front/pages/cheweiFenpei/add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/pages/cheweiFenpei/add.html -------------------------------------------------------------------------------- /src/main/resources/front/front/pages/cheweiFenpei/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/pages/cheweiFenpei/detail.html -------------------------------------------------------------------------------- /src/main/resources/front/front/pages/cheweiFenpei/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/pages/cheweiFenpei/list.html -------------------------------------------------------------------------------- /src/main/resources/front/front/pages/cheweiFenpei/list2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/pages/cheweiFenpei/list2.html -------------------------------------------------------------------------------- /src/main/resources/front/front/pages/churu/add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/pages/churu/add.html -------------------------------------------------------------------------------- /src/main/resources/front/front/pages/churu/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/pages/churu/detail.html -------------------------------------------------------------------------------- /src/main/resources/front/front/pages/churu/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/pages/churu/list.html -------------------------------------------------------------------------------- /src/main/resources/front/front/pages/churu/list2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/pages/churu/list2.html -------------------------------------------------------------------------------- /src/main/resources/front/front/pages/dictionary/add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/pages/dictionary/add.html -------------------------------------------------------------------------------- /src/main/resources/front/front/pages/dictionary/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/pages/dictionary/detail.html -------------------------------------------------------------------------------- /src/main/resources/front/front/pages/dictionary/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/pages/dictionary/list.html -------------------------------------------------------------------------------- /src/main/resources/front/front/pages/dictionary/list2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/pages/dictionary/list2.html -------------------------------------------------------------------------------- /src/main/resources/front/front/pages/fangwu/add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/pages/fangwu/add.html -------------------------------------------------------------------------------- /src/main/resources/front/front/pages/fangwu/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/pages/fangwu/detail.html -------------------------------------------------------------------------------- /src/main/resources/front/front/pages/fangwu/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/pages/fangwu/list.html -------------------------------------------------------------------------------- /src/main/resources/front/front/pages/fangwu/list2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/pages/fangwu/list2.html -------------------------------------------------------------------------------- /src/main/resources/front/front/pages/feiyong/add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/pages/feiyong/add.html -------------------------------------------------------------------------------- /src/main/resources/front/front/pages/feiyong/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/pages/feiyong/detail.html -------------------------------------------------------------------------------- /src/main/resources/front/front/pages/feiyong/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/pages/feiyong/list.html -------------------------------------------------------------------------------- /src/main/resources/front/front/pages/feiyong/list2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/pages/feiyong/list2.html -------------------------------------------------------------------------------- /src/main/resources/front/front/pages/gonggao/add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/pages/gonggao/add.html -------------------------------------------------------------------------------- /src/main/resources/front/front/pages/gonggao/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/pages/gonggao/detail.html -------------------------------------------------------------------------------- /src/main/resources/front/front/pages/gonggao/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/pages/gonggao/list.html -------------------------------------------------------------------------------- /src/main/resources/front/front/pages/gonggao/list2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/pages/gonggao/list2.html -------------------------------------------------------------------------------- /src/main/resources/front/front/pages/home/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/pages/home/home.html -------------------------------------------------------------------------------- /src/main/resources/front/front/pages/liuyan/add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/pages/liuyan/add.html -------------------------------------------------------------------------------- /src/main/resources/front/front/pages/liuyan/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/pages/liuyan/detail.html -------------------------------------------------------------------------------- /src/main/resources/front/front/pages/liuyan/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/pages/liuyan/list.html -------------------------------------------------------------------------------- /src/main/resources/front/front/pages/liuyan/list2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/pages/liuyan/list2.html -------------------------------------------------------------------------------- /src/main/resources/front/front/pages/login/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/pages/login/login.html -------------------------------------------------------------------------------- /src/main/resources/front/front/pages/recharge/recharge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/pages/recharge/recharge.html -------------------------------------------------------------------------------- /src/main/resources/front/front/pages/sixin/add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/pages/sixin/add.html -------------------------------------------------------------------------------- /src/main/resources/front/front/pages/sixin/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/pages/sixin/detail.html -------------------------------------------------------------------------------- /src/main/resources/front/front/pages/sixin/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/pages/sixin/list.html -------------------------------------------------------------------------------- /src/main/resources/front/front/pages/sixin/list2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/pages/sixin/list2.html -------------------------------------------------------------------------------- /src/main/resources/front/front/pages/wuye/add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/pages/wuye/add.html -------------------------------------------------------------------------------- /src/main/resources/front/front/pages/wuye/center.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/pages/wuye/center.html -------------------------------------------------------------------------------- /src/main/resources/front/front/pages/wuye/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/pages/wuye/detail.html -------------------------------------------------------------------------------- /src/main/resources/front/front/pages/wuye/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/pages/wuye/list.html -------------------------------------------------------------------------------- /src/main/resources/front/front/pages/wuye/list2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/pages/wuye/list2.html -------------------------------------------------------------------------------- /src/main/resources/front/front/pages/wuye/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/pages/wuye/register.html -------------------------------------------------------------------------------- /src/main/resources/front/front/pages/yonghu/add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/pages/yonghu/add.html -------------------------------------------------------------------------------- /src/main/resources/front/front/pages/yonghu/center.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/pages/yonghu/center.html -------------------------------------------------------------------------------- /src/main/resources/front/front/pages/yonghu/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/pages/yonghu/detail.html -------------------------------------------------------------------------------- /src/main/resources/front/front/pages/yonghu/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/pages/yonghu/list.html -------------------------------------------------------------------------------- /src/main/resources/front/front/pages/yonghu/list2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/pages/yonghu/list2.html -------------------------------------------------------------------------------- /src/main/resources/front/front/pages/yonghu/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/pages/yonghu/register.html -------------------------------------------------------------------------------- /src/main/resources/front/front/xznstatic/css/animate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/xznstatic/css/animate.css -------------------------------------------------------------------------------- /src/main/resources/front/front/xznstatic/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/xznstatic/css/bootstrap.min.css -------------------------------------------------------------------------------- /src/main/resources/front/front/xznstatic/css/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/xznstatic/css/common.css -------------------------------------------------------------------------------- /src/main/resources/front/front/xznstatic/css/element.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/xznstatic/css/element.min.css -------------------------------------------------------------------------------- /src/main/resources/front/front/xznstatic/css/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/xznstatic/css/login.css -------------------------------------------------------------------------------- /src/main/resources/front/front/xznstatic/css/public.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/xznstatic/css/public.css -------------------------------------------------------------------------------- /src/main/resources/front/front/xznstatic/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/xznstatic/css/style.css -------------------------------------------------------------------------------- /src/main/resources/front/front/xznstatic/css/swiper.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/xznstatic/css/swiper.min.css -------------------------------------------------------------------------------- /src/main/resources/front/front/xznstatic/img/162237296.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/xznstatic/img/162237296.jpg -------------------------------------------------------------------------------- /src/main/resources/front/front/xznstatic/img/162240878.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/xznstatic/img/162240878.jpg -------------------------------------------------------------------------------- /src/main/resources/front/front/xznstatic/img/19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/xznstatic/img/19.jpg -------------------------------------------------------------------------------- /src/main/resources/front/front/xznstatic/img/1_092ZZ2503138.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/xznstatic/img/1_092ZZ2503138.jpg -------------------------------------------------------------------------------- /src/main/resources/front/front/xznstatic/img/20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/xznstatic/img/20.jpg -------------------------------------------------------------------------------- /src/main/resources/front/front/xznstatic/img/index_24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/xznstatic/img/index_24.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/xznstatic/img/index_35.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/xznstatic/img/index_35.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/xznstatic/img/index_41.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/xznstatic/img/index_41.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/xznstatic/img/index_44.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/xznstatic/img/index_44.gif -------------------------------------------------------------------------------- /src/main/resources/front/front/xznstatic/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/xznstatic/img/logo.png -------------------------------------------------------------------------------- /src/main/resources/front/front/xznstatic/img/news_list_time.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/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/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/xznstatic/img/service_btn.png -------------------------------------------------------------------------------- /src/main/resources/front/front/xznstatic/img/service_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/xznstatic/img/service_img.png -------------------------------------------------------------------------------- /src/main/resources/front/front/xznstatic/img/service_title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/xznstatic/img/service_title.png -------------------------------------------------------------------------------- /src/main/resources/front/front/xznstatic/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/xznstatic/js/bootstrap.min.js -------------------------------------------------------------------------------- /src/main/resources/front/front/xznstatic/js/element.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/xznstatic/js/element.min.js -------------------------------------------------------------------------------- /src/main/resources/front/front/xznstatic/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/xznstatic/js/index.js -------------------------------------------------------------------------------- /src/main/resources/front/front/xznstatic/js/jquery-1.11.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/xznstatic/js/jquery-1.11.3.min.js -------------------------------------------------------------------------------- /src/main/resources/front/front/xznstatic/js/swiper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/xznstatic/js/swiper.min.js -------------------------------------------------------------------------------- /src/main/resources/front/front/xznstatic/js/wow.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/front/front/xznstatic/js/wow.min.js -------------------------------------------------------------------------------- /src/main/resources/img/img/back-img-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/img/img/back-img-bg.jpg -------------------------------------------------------------------------------- /src/main/resources/img/img/back-list-img-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/img/img/back-list-img-bg.jpg -------------------------------------------------------------------------------- /src/main/resources/img/img/front-img-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/img/img/front-img-bg.jpg -------------------------------------------------------------------------------- /src/main/resources/img/img/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/img/img/logo.jpg -------------------------------------------------------------------------------- /src/main/resources/mapper/BaoxiuDao.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/mapper/BaoxiuDao.xml -------------------------------------------------------------------------------- /src/main/resources/mapper/CheweiDao.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/mapper/CheweiDao.xml -------------------------------------------------------------------------------- /src/main/resources/mapper/CheweiFenpeiDao.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/mapper/CheweiFenpeiDao.xml -------------------------------------------------------------------------------- /src/main/resources/mapper/ChuruDao.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/mapper/ChuruDao.xml -------------------------------------------------------------------------------- /src/main/resources/mapper/CommonDao.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/mapper/CommonDao.xml -------------------------------------------------------------------------------- /src/main/resources/mapper/ConfigDao.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/mapper/ConfigDao.xml -------------------------------------------------------------------------------- /src/main/resources/mapper/DictionaryDao.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/mapper/DictionaryDao.xml -------------------------------------------------------------------------------- /src/main/resources/mapper/FangwuDao.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/mapper/FangwuDao.xml -------------------------------------------------------------------------------- /src/main/resources/mapper/FeiyongDao.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/mapper/FeiyongDao.xml -------------------------------------------------------------------------------- /src/main/resources/mapper/GonggaoDao.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/mapper/GonggaoDao.xml -------------------------------------------------------------------------------- /src/main/resources/mapper/LiuyanDao.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/mapper/LiuyanDao.xml -------------------------------------------------------------------------------- /src/main/resources/mapper/SixinDao.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/mapper/SixinDao.xml -------------------------------------------------------------------------------- /src/main/resources/mapper/TokenDao.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/mapper/TokenDao.xml -------------------------------------------------------------------------------- /src/main/resources/mapper/UsersDao.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/mapper/UsersDao.xml -------------------------------------------------------------------------------- /src/main/resources/mapper/WuyeDao.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/mapper/WuyeDao.xml -------------------------------------------------------------------------------- /src/main/resources/mapper/YonghuDao.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/mapper/YonghuDao.xml -------------------------------------------------------------------------------- /src/main/resources/static/upload/1678845596222.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/static/upload/1678845596222.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/a.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/upload/baoxiu1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/static/upload/baoxiu1.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/baoxiu10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/static/upload/baoxiu10.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/baoxiu11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/static/upload/baoxiu11.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/baoxiu12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/static/upload/baoxiu12.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/baoxiu13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/static/upload/baoxiu13.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/baoxiu14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/static/upload/baoxiu14.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/baoxiu2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/static/upload/baoxiu2.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/baoxiu3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/static/upload/baoxiu3.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/baoxiu4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/static/upload/baoxiu4.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/baoxiu5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/static/upload/baoxiu5.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/baoxiu6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/static/upload/baoxiu6.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/baoxiu7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/static/upload/baoxiu7.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/baoxiu8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/static/upload/baoxiu8.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/baoxiu9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/static/upload/baoxiu9.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/config1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/static/upload/config1.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/config2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/static/upload/config2.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/config3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/static/upload/config3.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/file.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/static/upload/file.rar -------------------------------------------------------------------------------- /src/main/resources/static/upload/gonggao1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/static/upload/gonggao1.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/gonggao10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/static/upload/gonggao10.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/gonggao11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/static/upload/gonggao11.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/gonggao12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/static/upload/gonggao12.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/gonggao13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/static/upload/gonggao13.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/gonggao14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/static/upload/gonggao14.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/gonggao2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/static/upload/gonggao2.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/gonggao3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/static/upload/gonggao3.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/gonggao4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/static/upload/gonggao4.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/gonggao5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/static/upload/gonggao5.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/gonggao6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/static/upload/gonggao6.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/gonggao7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/static/upload/gonggao7.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/gonggao8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/static/upload/gonggao8.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/gonggao9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/static/upload/gonggao9.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/music.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/static/upload/music.mp3 -------------------------------------------------------------------------------- /src/main/resources/static/upload/video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/static/upload/video.mp4 -------------------------------------------------------------------------------- /src/main/resources/static/upload/wuye1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/static/upload/wuye1.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/wuye2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/static/upload/wuye2.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/wuye3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/static/upload/wuye3.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/yonghu1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/static/upload/yonghu1.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/yonghu2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/static/upload/yonghu2.jpg -------------------------------------------------------------------------------- /src/main/resources/static/upload/yonghu3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature924/No174Integrated-community-management-system/HEAD/src/main/resources/static/upload/yonghu3.jpg --------------------------------------------------------------------------------