├── .gitignore ├── README.md ├── pom.xml ├── screenshot ├── 1.png ├── 2.png ├── 3.png ├── 4.png ├── 5.png ├── 6.png ├── 7.png ├── 8.png └── 9.png └── src ├── main ├── java │ └── com │ │ └── example │ │ └── teach │ │ ├── TeachingApplication.java │ │ ├── bean │ │ ├── Admin.java │ │ ├── Attention.java │ │ ├── Bank.java │ │ ├── Cart.java │ │ ├── Chat.java │ │ ├── Collect.java │ │ ├── Comment.java │ │ ├── Content.java │ │ ├── Discuss.java │ │ ├── Dynamic.java │ │ ├── News.java │ │ ├── Opinion.java │ │ ├── Page.java │ │ ├── User.java │ │ └── userBankCard.java │ │ ├── controller │ │ ├── AttentionController.java │ │ ├── ChatPersonController.java │ │ ├── DynamicController.java │ │ ├── LoginMessageController.java │ │ ├── ShoppingCartController.java │ │ ├── UploadPicturesController.java │ │ ├── UserMessageController.java │ │ └── VerificationCodeController.java │ │ ├── mapper │ │ ├── AttentionMapper.java │ │ ├── CartMapper.java │ │ ├── ChatPersonMapper.java │ │ ├── DynamicMapper.java │ │ ├── LoginMapper.java │ │ └── UserMapper.java │ │ ├── service │ │ ├── AttentionService.java │ │ ├── CartService.java │ │ ├── ChatPersonService.java │ │ ├── DynamicService.java │ │ ├── LoginService.java │ │ └── UserSerivce.java │ │ └── serviceimpl │ │ ├── AttentionServiceImpl.java │ │ ├── CartServiceImpl.java │ │ ├── ChatPersonServiceImpl.java │ │ ├── DynamicServiceImpl.java │ │ ├── LoginServiceImpl.java │ │ └── UserSerivceImpl.java └── resources │ ├── application.yml │ ├── banner.txt │ ├── mapper │ ├── AttentionMapper.xml │ ├── CartMapper.xml │ ├── ChatPersonMapper.xml │ ├── DynamicMapper.xml │ ├── LoginMapper.xml │ └── UserMapper.xml │ ├── static │ ├── ACredit │ │ ├── Css │ │ │ ├── control_index.css │ │ │ ├── identify.css │ │ │ ├── layout.css │ │ │ ├── login.css │ │ │ └── style.css │ │ ├── Images │ │ │ ├── avatar.php │ │ │ ├── forget.png │ │ │ ├── icon_authentication.png │ │ │ ├── icon_author.png │ │ │ ├── icon_control.png │ │ │ ├── icon_cost.png │ │ │ ├── icon_gold.png │ │ │ ├── icon_market.png │ │ │ ├── icon_message.png │ │ │ ├── icon_news.png │ │ │ ├── icon_order.png │ │ │ ├── icon_set.png │ │ │ ├── identify_developer.png │ │ │ ├── identify_enterprise.png │ │ │ ├── identify_personal.png │ │ │ ├── login-bg.png │ │ │ ├── logo.png │ │ │ └── noavatar_middle.gif │ │ └── Js │ │ │ ├── Validform_v5.3.2_min.js │ │ │ ├── haidao.offcial.general.js │ │ │ ├── haidao.validate.js │ │ │ ├── jquery-1.7.2.min.js │ │ │ ├── jquery.cookie.js │ │ │ ├── jquery.js │ │ │ ├── js.js │ │ │ ├── layer.js │ │ │ └── select.js │ ├── My97DatePicker │ │ ├── My97DatePicker.htm │ │ ├── WdatePicker.js │ │ ├── calendar.js │ │ ├── config.js │ │ ├── lang │ │ │ └── zh-cn.js │ │ └── skin │ │ │ ├── Thumbs.db │ │ │ ├── WdatePicker.css │ │ │ ├── datePicker.gif │ │ │ ├── default │ │ │ ├── datepicker.css │ │ │ └── img.gif │ │ │ └── whyGreen │ │ │ ├── Thumbs.db │ │ │ ├── bg.jpg │ │ │ ├── datepicker.css │ │ │ └── img.gif │ ├── css │ │ ├── CustomerIndex.css │ │ ├── global.css │ │ ├── plugins │ │ │ ├── animate.css │ │ │ ├── jqueryui.min.css │ │ │ ├── nice-select.css │ │ │ └── slick.min.css │ │ ├── style.css │ │ └── vendor │ │ │ ├── bootstrap.min.css │ │ │ ├── font-awesome.min.css │ │ │ └── form-elements.css │ ├── fonts │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ └── fontawesome-webfont.woff2 │ ├── img │ │ ├── backgrounds │ │ │ ├── 1.jpg │ │ │ ├── 1@2x.jpg │ │ │ ├── bg1.jpg │ │ │ ├── bg10.jpg │ │ │ ├── bg11.jpg │ │ │ ├── bg12.jpg │ │ │ ├── bg13.jpg │ │ │ ├── bg3.jpg │ │ │ ├── bg4.jpg │ │ │ ├── bg5.jpg │ │ │ ├── bg6.jpg │ │ │ ├── bg7.jpg │ │ │ ├── bg8.jpg │ │ │ ├── bg9.jpg │ │ │ ├── three3.jpg │ │ │ ├── three4.jpg │ │ │ ├── three5.jpg │ │ │ ├── three6.jpg │ │ │ ├── three7.jpg │ │ │ └── three8.jpg │ │ ├── biaoqing │ │ │ ├── 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 │ │ │ ├── 6.gif │ │ │ ├── 7.gif │ │ │ ├── 8.gif │ │ │ ├── 9.gif │ │ │ └── biaoqing_bg.gif │ │ ├── head.gif │ │ ├── head │ │ │ ├── 3.jpg │ │ │ ├── 3a58f72f8017bdab.jpg │ │ │ ├── AJ003.jpg │ │ │ ├── admin.png │ │ │ └── fb414337bd0c4c006034b1111f5fc903.jpg │ │ ├── logo │ │ │ ├── Album.jpg │ │ │ ├── Comment.png │ │ │ ├── Praise.png │ │ │ ├── cancelLogo.jpg │ │ │ ├── delete.jpg │ │ │ ├── deleteDynamic.jpg │ │ │ ├── head.png │ │ │ ├── home.jpg │ │ │ ├── person1.jpg │ │ │ ├── person2.jpg │ │ │ ├── sc.jpg │ │ │ ├── sc.png │ │ │ └── shoucang.jpg │ │ ├── smallthing │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── cancel.png │ │ │ ├── en.png │ │ │ ├── fr.png │ │ │ └── payment-2.png │ │ └── teach │ │ │ ├── 1.jpg │ │ │ ├── 2.jpg │ │ │ ├── 3.jpg │ │ │ └── 4.jpg │ └── js │ │ ├── file │ │ ├── Q.Uploader.js │ │ └── Q.js │ │ ├── jquery.cookie.js │ │ ├── jquery.md5.js │ │ ├── layer │ │ ├── layer.js │ │ ├── mobile │ │ │ ├── layer.js │ │ │ └── need │ │ │ │ └── layer.css │ │ └── skin │ │ │ └── default │ │ │ ├── icon-ext.png │ │ │ ├── icon.png │ │ │ ├── layer.css │ │ │ ├── loading-0.gif │ │ │ ├── loading-1.gif │ │ │ └── loading-2.gif │ │ ├── layerTool.js │ │ ├── main.js │ │ ├── md5.js │ │ ├── plugins │ │ ├── ajax-mail.js │ │ ├── ajaxchimp.js │ │ ├── countdown.min.js │ │ ├── google-map.js │ │ ├── image-zoom.min.js │ │ ├── imagesloaded.pkgd.min.js │ │ ├── jqueryui.min.js │ │ ├── masonry.pkgd.min.js │ │ ├── nice-select.min.js │ │ └── slick.min.js │ │ └── vendor │ │ ├── bootstrap.min.js │ │ ├── jquery-3.3.1.min.js │ │ ├── jquery.backstretch.min.js │ │ ├── modernizr-3.6.0.min.js │ │ ├── popper.min.js │ │ └── scripts.js │ └── templates │ ├── admin │ ├── admin.html │ ├── admin.js │ ├── adminUser.html │ ├── adminUser.js │ ├── allDynamic.html │ ├── allDynamic.js │ ├── common.js │ ├── discussDynamic.html │ ├── discussDynamic.js │ ├── sendOpinion.html │ └── sendOpinion.js │ ├── adminLogin.html │ ├── adminLogin.js │ ├── chat │ ├── my-chat.html │ └── my-chat.js │ ├── common.js │ ├── contact-us │ ├── contact-us.html │ └── contact-us.js │ ├── dynamic │ ├── Dynamic.html │ └── Dynamic.js │ ├── forget.html │ ├── forget.js │ ├── index.html │ ├── index.js │ ├── login.html │ ├── login.js │ ├── my-message │ ├── my-message.html │ └── my-message.js │ ├── my-setting │ ├── my-setting.html │ └── my-setting.js │ ├── registered.html │ └── registered.js └── test └── java └── com └── example └── teach └── ShoesApplicationTests.java /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/README.md -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/pom.xml -------------------------------------------------------------------------------- /screenshot/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/screenshot/1.png -------------------------------------------------------------------------------- /screenshot/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/screenshot/2.png -------------------------------------------------------------------------------- /screenshot/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/screenshot/3.png -------------------------------------------------------------------------------- /screenshot/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/screenshot/4.png -------------------------------------------------------------------------------- /screenshot/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/screenshot/5.png -------------------------------------------------------------------------------- /screenshot/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/screenshot/6.png -------------------------------------------------------------------------------- /screenshot/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/screenshot/7.png -------------------------------------------------------------------------------- /screenshot/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/screenshot/8.png -------------------------------------------------------------------------------- /screenshot/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/screenshot/9.png -------------------------------------------------------------------------------- /src/main/java/com/example/teach/TeachingApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/java/com/example/teach/TeachingApplication.java -------------------------------------------------------------------------------- /src/main/java/com/example/teach/bean/Admin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/java/com/example/teach/bean/Admin.java -------------------------------------------------------------------------------- /src/main/java/com/example/teach/bean/Attention.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/java/com/example/teach/bean/Attention.java -------------------------------------------------------------------------------- /src/main/java/com/example/teach/bean/Bank.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/java/com/example/teach/bean/Bank.java -------------------------------------------------------------------------------- /src/main/java/com/example/teach/bean/Cart.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/java/com/example/teach/bean/Cart.java -------------------------------------------------------------------------------- /src/main/java/com/example/teach/bean/Chat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/java/com/example/teach/bean/Chat.java -------------------------------------------------------------------------------- /src/main/java/com/example/teach/bean/Collect.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/java/com/example/teach/bean/Collect.java -------------------------------------------------------------------------------- /src/main/java/com/example/teach/bean/Comment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/java/com/example/teach/bean/Comment.java -------------------------------------------------------------------------------- /src/main/java/com/example/teach/bean/Content.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/java/com/example/teach/bean/Content.java -------------------------------------------------------------------------------- /src/main/java/com/example/teach/bean/Discuss.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/java/com/example/teach/bean/Discuss.java -------------------------------------------------------------------------------- /src/main/java/com/example/teach/bean/Dynamic.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/java/com/example/teach/bean/Dynamic.java -------------------------------------------------------------------------------- /src/main/java/com/example/teach/bean/News.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/java/com/example/teach/bean/News.java -------------------------------------------------------------------------------- /src/main/java/com/example/teach/bean/Opinion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/java/com/example/teach/bean/Opinion.java -------------------------------------------------------------------------------- /src/main/java/com/example/teach/bean/Page.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/java/com/example/teach/bean/Page.java -------------------------------------------------------------------------------- /src/main/java/com/example/teach/bean/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/java/com/example/teach/bean/User.java -------------------------------------------------------------------------------- /src/main/java/com/example/teach/bean/userBankCard.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/java/com/example/teach/bean/userBankCard.java -------------------------------------------------------------------------------- /src/main/java/com/example/teach/controller/AttentionController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/java/com/example/teach/controller/AttentionController.java -------------------------------------------------------------------------------- /src/main/java/com/example/teach/controller/ChatPersonController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/java/com/example/teach/controller/ChatPersonController.java -------------------------------------------------------------------------------- /src/main/java/com/example/teach/controller/DynamicController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/java/com/example/teach/controller/DynamicController.java -------------------------------------------------------------------------------- /src/main/java/com/example/teach/controller/LoginMessageController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/java/com/example/teach/controller/LoginMessageController.java -------------------------------------------------------------------------------- /src/main/java/com/example/teach/controller/ShoppingCartController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/java/com/example/teach/controller/ShoppingCartController.java -------------------------------------------------------------------------------- /src/main/java/com/example/teach/controller/UploadPicturesController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/java/com/example/teach/controller/UploadPicturesController.java -------------------------------------------------------------------------------- /src/main/java/com/example/teach/controller/UserMessageController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/java/com/example/teach/controller/UserMessageController.java -------------------------------------------------------------------------------- /src/main/java/com/example/teach/controller/VerificationCodeController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/java/com/example/teach/controller/VerificationCodeController.java -------------------------------------------------------------------------------- /src/main/java/com/example/teach/mapper/AttentionMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/java/com/example/teach/mapper/AttentionMapper.java -------------------------------------------------------------------------------- /src/main/java/com/example/teach/mapper/CartMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/java/com/example/teach/mapper/CartMapper.java -------------------------------------------------------------------------------- /src/main/java/com/example/teach/mapper/ChatPersonMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/java/com/example/teach/mapper/ChatPersonMapper.java -------------------------------------------------------------------------------- /src/main/java/com/example/teach/mapper/DynamicMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/java/com/example/teach/mapper/DynamicMapper.java -------------------------------------------------------------------------------- /src/main/java/com/example/teach/mapper/LoginMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/java/com/example/teach/mapper/LoginMapper.java -------------------------------------------------------------------------------- /src/main/java/com/example/teach/mapper/UserMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/java/com/example/teach/mapper/UserMapper.java -------------------------------------------------------------------------------- /src/main/java/com/example/teach/service/AttentionService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/java/com/example/teach/service/AttentionService.java -------------------------------------------------------------------------------- /src/main/java/com/example/teach/service/CartService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/java/com/example/teach/service/CartService.java -------------------------------------------------------------------------------- /src/main/java/com/example/teach/service/ChatPersonService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/java/com/example/teach/service/ChatPersonService.java -------------------------------------------------------------------------------- /src/main/java/com/example/teach/service/DynamicService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/java/com/example/teach/service/DynamicService.java -------------------------------------------------------------------------------- /src/main/java/com/example/teach/service/LoginService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/java/com/example/teach/service/LoginService.java -------------------------------------------------------------------------------- /src/main/java/com/example/teach/service/UserSerivce.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/java/com/example/teach/service/UserSerivce.java -------------------------------------------------------------------------------- /src/main/java/com/example/teach/serviceimpl/AttentionServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/java/com/example/teach/serviceimpl/AttentionServiceImpl.java -------------------------------------------------------------------------------- /src/main/java/com/example/teach/serviceimpl/CartServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/java/com/example/teach/serviceimpl/CartServiceImpl.java -------------------------------------------------------------------------------- /src/main/java/com/example/teach/serviceimpl/ChatPersonServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/java/com/example/teach/serviceimpl/ChatPersonServiceImpl.java -------------------------------------------------------------------------------- /src/main/java/com/example/teach/serviceimpl/DynamicServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/java/com/example/teach/serviceimpl/DynamicServiceImpl.java -------------------------------------------------------------------------------- /src/main/java/com/example/teach/serviceimpl/LoginServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/java/com/example/teach/serviceimpl/LoginServiceImpl.java -------------------------------------------------------------------------------- /src/main/java/com/example/teach/serviceimpl/UserSerivceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/java/com/example/teach/serviceimpl/UserSerivceImpl.java -------------------------------------------------------------------------------- /src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/application.yml -------------------------------------------------------------------------------- /src/main/resources/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/banner.txt -------------------------------------------------------------------------------- /src/main/resources/mapper/AttentionMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/mapper/AttentionMapper.xml -------------------------------------------------------------------------------- /src/main/resources/mapper/CartMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/mapper/CartMapper.xml -------------------------------------------------------------------------------- /src/main/resources/mapper/ChatPersonMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/mapper/ChatPersonMapper.xml -------------------------------------------------------------------------------- /src/main/resources/mapper/DynamicMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/mapper/DynamicMapper.xml -------------------------------------------------------------------------------- /src/main/resources/mapper/LoginMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/mapper/LoginMapper.xml -------------------------------------------------------------------------------- /src/main/resources/mapper/UserMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/mapper/UserMapper.xml -------------------------------------------------------------------------------- /src/main/resources/static/ACredit/Css/control_index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/ACredit/Css/control_index.css -------------------------------------------------------------------------------- /src/main/resources/static/ACredit/Css/identify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/ACredit/Css/identify.css -------------------------------------------------------------------------------- /src/main/resources/static/ACredit/Css/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/ACredit/Css/layout.css -------------------------------------------------------------------------------- /src/main/resources/static/ACredit/Css/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/ACredit/Css/login.css -------------------------------------------------------------------------------- /src/main/resources/static/ACredit/Css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/ACredit/Css/style.css -------------------------------------------------------------------------------- /src/main/resources/static/ACredit/Images/avatar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/ACredit/Images/avatar.php -------------------------------------------------------------------------------- /src/main/resources/static/ACredit/Images/forget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/ACredit/Images/forget.png -------------------------------------------------------------------------------- /src/main/resources/static/ACredit/Images/icon_authentication.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/ACredit/Images/icon_authentication.png -------------------------------------------------------------------------------- /src/main/resources/static/ACredit/Images/icon_author.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/ACredit/Images/icon_author.png -------------------------------------------------------------------------------- /src/main/resources/static/ACredit/Images/icon_control.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/ACredit/Images/icon_control.png -------------------------------------------------------------------------------- /src/main/resources/static/ACredit/Images/icon_cost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/ACredit/Images/icon_cost.png -------------------------------------------------------------------------------- /src/main/resources/static/ACredit/Images/icon_gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/ACredit/Images/icon_gold.png -------------------------------------------------------------------------------- /src/main/resources/static/ACredit/Images/icon_market.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/ACredit/Images/icon_market.png -------------------------------------------------------------------------------- /src/main/resources/static/ACredit/Images/icon_message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/ACredit/Images/icon_message.png -------------------------------------------------------------------------------- /src/main/resources/static/ACredit/Images/icon_news.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/ACredit/Images/icon_news.png -------------------------------------------------------------------------------- /src/main/resources/static/ACredit/Images/icon_order.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/ACredit/Images/icon_order.png -------------------------------------------------------------------------------- /src/main/resources/static/ACredit/Images/icon_set.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/ACredit/Images/icon_set.png -------------------------------------------------------------------------------- /src/main/resources/static/ACredit/Images/identify_developer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/ACredit/Images/identify_developer.png -------------------------------------------------------------------------------- /src/main/resources/static/ACredit/Images/identify_enterprise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/ACredit/Images/identify_enterprise.png -------------------------------------------------------------------------------- /src/main/resources/static/ACredit/Images/identify_personal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/ACredit/Images/identify_personal.png -------------------------------------------------------------------------------- /src/main/resources/static/ACredit/Images/login-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/ACredit/Images/login-bg.png -------------------------------------------------------------------------------- /src/main/resources/static/ACredit/Images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/ACredit/Images/logo.png -------------------------------------------------------------------------------- /src/main/resources/static/ACredit/Images/noavatar_middle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/ACredit/Images/noavatar_middle.gif -------------------------------------------------------------------------------- /src/main/resources/static/ACredit/Js/Validform_v5.3.2_min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/ACredit/Js/Validform_v5.3.2_min.js -------------------------------------------------------------------------------- /src/main/resources/static/ACredit/Js/haidao.offcial.general.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/ACredit/Js/haidao.offcial.general.js -------------------------------------------------------------------------------- /src/main/resources/static/ACredit/Js/haidao.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/ACredit/Js/haidao.validate.js -------------------------------------------------------------------------------- /src/main/resources/static/ACredit/Js/jquery-1.7.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/ACredit/Js/jquery-1.7.2.min.js -------------------------------------------------------------------------------- /src/main/resources/static/ACredit/Js/jquery.cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/ACredit/Js/jquery.cookie.js -------------------------------------------------------------------------------- /src/main/resources/static/ACredit/Js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/ACredit/Js/jquery.js -------------------------------------------------------------------------------- /src/main/resources/static/ACredit/Js/js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/ACredit/Js/js.js -------------------------------------------------------------------------------- /src/main/resources/static/ACredit/Js/layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/ACredit/Js/layer.js -------------------------------------------------------------------------------- /src/main/resources/static/ACredit/Js/select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/ACredit/Js/select.js -------------------------------------------------------------------------------- /src/main/resources/static/My97DatePicker/My97DatePicker.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/My97DatePicker/My97DatePicker.htm -------------------------------------------------------------------------------- /src/main/resources/static/My97DatePicker/WdatePicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/My97DatePicker/WdatePicker.js -------------------------------------------------------------------------------- /src/main/resources/static/My97DatePicker/calendar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/My97DatePicker/calendar.js -------------------------------------------------------------------------------- /src/main/resources/static/My97DatePicker/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/My97DatePicker/config.js -------------------------------------------------------------------------------- /src/main/resources/static/My97DatePicker/lang/zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/My97DatePicker/lang/zh-cn.js -------------------------------------------------------------------------------- /src/main/resources/static/My97DatePicker/skin/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/My97DatePicker/skin/Thumbs.db -------------------------------------------------------------------------------- /src/main/resources/static/My97DatePicker/skin/WdatePicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/My97DatePicker/skin/WdatePicker.css -------------------------------------------------------------------------------- /src/main/resources/static/My97DatePicker/skin/datePicker.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/My97DatePicker/skin/datePicker.gif -------------------------------------------------------------------------------- /src/main/resources/static/My97DatePicker/skin/default/datepicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/My97DatePicker/skin/default/datepicker.css -------------------------------------------------------------------------------- /src/main/resources/static/My97DatePicker/skin/default/img.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/My97DatePicker/skin/default/img.gif -------------------------------------------------------------------------------- /src/main/resources/static/My97DatePicker/skin/whyGreen/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/My97DatePicker/skin/whyGreen/Thumbs.db -------------------------------------------------------------------------------- /src/main/resources/static/My97DatePicker/skin/whyGreen/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/My97DatePicker/skin/whyGreen/bg.jpg -------------------------------------------------------------------------------- /src/main/resources/static/My97DatePicker/skin/whyGreen/datepicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/My97DatePicker/skin/whyGreen/datepicker.css -------------------------------------------------------------------------------- /src/main/resources/static/My97DatePicker/skin/whyGreen/img.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/My97DatePicker/skin/whyGreen/img.gif -------------------------------------------------------------------------------- /src/main/resources/static/css/CustomerIndex.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/css/CustomerIndex.css -------------------------------------------------------------------------------- /src/main/resources/static/css/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/css/global.css -------------------------------------------------------------------------------- /src/main/resources/static/css/plugins/animate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/css/plugins/animate.css -------------------------------------------------------------------------------- /src/main/resources/static/css/plugins/jqueryui.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/css/plugins/jqueryui.min.css -------------------------------------------------------------------------------- /src/main/resources/static/css/plugins/nice-select.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/css/plugins/nice-select.css -------------------------------------------------------------------------------- /src/main/resources/static/css/plugins/slick.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/css/plugins/slick.min.css -------------------------------------------------------------------------------- /src/main/resources/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/css/style.css -------------------------------------------------------------------------------- /src/main/resources/static/css/vendor/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/css/vendor/bootstrap.min.css -------------------------------------------------------------------------------- /src/main/resources/static/css/vendor/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/css/vendor/font-awesome.min.css -------------------------------------------------------------------------------- /src/main/resources/static/css/vendor/form-elements.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/css/vendor/form-elements.css -------------------------------------------------------------------------------- /src/main/resources/static/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /src/main/resources/static/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /src/main/resources/static/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /src/main/resources/static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /src/main/resources/static/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /src/main/resources/static/img/backgrounds/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/backgrounds/1.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/backgrounds/1@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/backgrounds/1@2x.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/backgrounds/bg1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/backgrounds/bg1.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/backgrounds/bg10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/backgrounds/bg10.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/backgrounds/bg11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/backgrounds/bg11.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/backgrounds/bg12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/backgrounds/bg12.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/backgrounds/bg13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/backgrounds/bg13.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/backgrounds/bg3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/backgrounds/bg3.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/backgrounds/bg4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/backgrounds/bg4.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/backgrounds/bg5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/backgrounds/bg5.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/backgrounds/bg6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/backgrounds/bg6.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/backgrounds/bg7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/backgrounds/bg7.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/backgrounds/bg8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/backgrounds/bg8.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/backgrounds/bg9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/backgrounds/bg9.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/backgrounds/three3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/backgrounds/three3.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/backgrounds/three4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/backgrounds/three4.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/backgrounds/three5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/backgrounds/three5.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/backgrounds/three6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/backgrounds/three6.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/backgrounds/three7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/backgrounds/three7.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/backgrounds/three8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/backgrounds/three8.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/biaoqing/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/biaoqing/1.gif -------------------------------------------------------------------------------- /src/main/resources/static/img/biaoqing/10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/biaoqing/10.gif -------------------------------------------------------------------------------- /src/main/resources/static/img/biaoqing/11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/biaoqing/11.gif -------------------------------------------------------------------------------- /src/main/resources/static/img/biaoqing/12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/biaoqing/12.gif -------------------------------------------------------------------------------- /src/main/resources/static/img/biaoqing/13.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/biaoqing/13.gif -------------------------------------------------------------------------------- /src/main/resources/static/img/biaoqing/14.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/biaoqing/14.gif -------------------------------------------------------------------------------- /src/main/resources/static/img/biaoqing/15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/biaoqing/15.gif -------------------------------------------------------------------------------- /src/main/resources/static/img/biaoqing/16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/biaoqing/16.gif -------------------------------------------------------------------------------- /src/main/resources/static/img/biaoqing/17.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/biaoqing/17.gif -------------------------------------------------------------------------------- /src/main/resources/static/img/biaoqing/18.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/biaoqing/18.gif -------------------------------------------------------------------------------- /src/main/resources/static/img/biaoqing/19.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/biaoqing/19.gif -------------------------------------------------------------------------------- /src/main/resources/static/img/biaoqing/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/biaoqing/2.gif -------------------------------------------------------------------------------- /src/main/resources/static/img/biaoqing/20.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/biaoqing/20.gif -------------------------------------------------------------------------------- /src/main/resources/static/img/biaoqing/21.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/biaoqing/21.gif -------------------------------------------------------------------------------- /src/main/resources/static/img/biaoqing/22.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/biaoqing/22.gif -------------------------------------------------------------------------------- /src/main/resources/static/img/biaoqing/23.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/biaoqing/23.gif -------------------------------------------------------------------------------- /src/main/resources/static/img/biaoqing/24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/biaoqing/24.gif -------------------------------------------------------------------------------- /src/main/resources/static/img/biaoqing/25.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/biaoqing/25.gif -------------------------------------------------------------------------------- /src/main/resources/static/img/biaoqing/26.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/biaoqing/26.gif -------------------------------------------------------------------------------- /src/main/resources/static/img/biaoqing/27.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/biaoqing/27.gif -------------------------------------------------------------------------------- /src/main/resources/static/img/biaoqing/28.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/biaoqing/28.gif -------------------------------------------------------------------------------- /src/main/resources/static/img/biaoqing/29.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/biaoqing/29.gif -------------------------------------------------------------------------------- /src/main/resources/static/img/biaoqing/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/biaoqing/3.gif -------------------------------------------------------------------------------- /src/main/resources/static/img/biaoqing/30.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/biaoqing/30.gif -------------------------------------------------------------------------------- /src/main/resources/static/img/biaoqing/31.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/biaoqing/31.gif -------------------------------------------------------------------------------- /src/main/resources/static/img/biaoqing/32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/biaoqing/32.gif -------------------------------------------------------------------------------- /src/main/resources/static/img/biaoqing/33.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/biaoqing/33.gif -------------------------------------------------------------------------------- /src/main/resources/static/img/biaoqing/34.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/biaoqing/34.gif -------------------------------------------------------------------------------- /src/main/resources/static/img/biaoqing/35.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/biaoqing/35.gif -------------------------------------------------------------------------------- /src/main/resources/static/img/biaoqing/36.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/biaoqing/36.gif -------------------------------------------------------------------------------- /src/main/resources/static/img/biaoqing/37.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/biaoqing/37.gif -------------------------------------------------------------------------------- /src/main/resources/static/img/biaoqing/38.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/biaoqing/38.gif -------------------------------------------------------------------------------- /src/main/resources/static/img/biaoqing/39.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/biaoqing/39.gif -------------------------------------------------------------------------------- /src/main/resources/static/img/biaoqing/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/biaoqing/4.gif -------------------------------------------------------------------------------- /src/main/resources/static/img/biaoqing/40.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/biaoqing/40.gif -------------------------------------------------------------------------------- /src/main/resources/static/img/biaoqing/41.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/biaoqing/41.gif -------------------------------------------------------------------------------- /src/main/resources/static/img/biaoqing/42.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/biaoqing/42.gif -------------------------------------------------------------------------------- /src/main/resources/static/img/biaoqing/43.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/biaoqing/43.gif -------------------------------------------------------------------------------- /src/main/resources/static/img/biaoqing/44.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/biaoqing/44.gif -------------------------------------------------------------------------------- /src/main/resources/static/img/biaoqing/45.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/biaoqing/45.gif -------------------------------------------------------------------------------- /src/main/resources/static/img/biaoqing/46.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/biaoqing/46.gif -------------------------------------------------------------------------------- /src/main/resources/static/img/biaoqing/47.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/biaoqing/47.gif -------------------------------------------------------------------------------- /src/main/resources/static/img/biaoqing/48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/biaoqing/48.gif -------------------------------------------------------------------------------- /src/main/resources/static/img/biaoqing/49.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/biaoqing/49.gif -------------------------------------------------------------------------------- /src/main/resources/static/img/biaoqing/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/biaoqing/5.gif -------------------------------------------------------------------------------- /src/main/resources/static/img/biaoqing/50.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/biaoqing/50.gif -------------------------------------------------------------------------------- /src/main/resources/static/img/biaoqing/51.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/biaoqing/51.gif -------------------------------------------------------------------------------- /src/main/resources/static/img/biaoqing/52.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/biaoqing/52.gif -------------------------------------------------------------------------------- /src/main/resources/static/img/biaoqing/53.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/biaoqing/53.gif -------------------------------------------------------------------------------- /src/main/resources/static/img/biaoqing/54.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/biaoqing/54.gif -------------------------------------------------------------------------------- /src/main/resources/static/img/biaoqing/55.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/biaoqing/55.gif -------------------------------------------------------------------------------- /src/main/resources/static/img/biaoqing/56.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/biaoqing/56.gif -------------------------------------------------------------------------------- /src/main/resources/static/img/biaoqing/6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/biaoqing/6.gif -------------------------------------------------------------------------------- /src/main/resources/static/img/biaoqing/7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/biaoqing/7.gif -------------------------------------------------------------------------------- /src/main/resources/static/img/biaoqing/8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/biaoqing/8.gif -------------------------------------------------------------------------------- /src/main/resources/static/img/biaoqing/9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/biaoqing/9.gif -------------------------------------------------------------------------------- /src/main/resources/static/img/biaoqing/biaoqing_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/biaoqing/biaoqing_bg.gif -------------------------------------------------------------------------------- /src/main/resources/static/img/head.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/head.gif -------------------------------------------------------------------------------- /src/main/resources/static/img/head/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/head/3.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/head/3a58f72f8017bdab.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/head/3a58f72f8017bdab.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/head/AJ003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/head/AJ003.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/head/admin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/head/admin.png -------------------------------------------------------------------------------- /src/main/resources/static/img/head/fb414337bd0c4c006034b1111f5fc903.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/head/fb414337bd0c4c006034b1111f5fc903.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/logo/Album.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/logo/Album.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/logo/Comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/logo/Comment.png -------------------------------------------------------------------------------- /src/main/resources/static/img/logo/Praise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/logo/Praise.png -------------------------------------------------------------------------------- /src/main/resources/static/img/logo/cancelLogo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/logo/cancelLogo.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/logo/delete.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/logo/delete.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/logo/deleteDynamic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/logo/deleteDynamic.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/logo/head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/logo/head.png -------------------------------------------------------------------------------- /src/main/resources/static/img/logo/home.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/logo/home.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/logo/person1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/logo/person1.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/logo/person2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/logo/person2.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/logo/sc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/logo/sc.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/logo/sc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/logo/sc.png -------------------------------------------------------------------------------- /src/main/resources/static/img/logo/shoucang.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/logo/shoucang.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/smallthing/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/smallthing/1.png -------------------------------------------------------------------------------- /src/main/resources/static/img/smallthing/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/smallthing/2.png -------------------------------------------------------------------------------- /src/main/resources/static/img/smallthing/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/smallthing/3.png -------------------------------------------------------------------------------- /src/main/resources/static/img/smallthing/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/smallthing/4.png -------------------------------------------------------------------------------- /src/main/resources/static/img/smallthing/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/smallthing/5.png -------------------------------------------------------------------------------- /src/main/resources/static/img/smallthing/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/smallthing/6.png -------------------------------------------------------------------------------- /src/main/resources/static/img/smallthing/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/smallthing/cancel.png -------------------------------------------------------------------------------- /src/main/resources/static/img/smallthing/en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/smallthing/en.png -------------------------------------------------------------------------------- /src/main/resources/static/img/smallthing/fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/smallthing/fr.png -------------------------------------------------------------------------------- /src/main/resources/static/img/smallthing/payment-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/smallthing/payment-2.png -------------------------------------------------------------------------------- /src/main/resources/static/img/teach/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/teach/1.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/teach/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/teach/2.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/teach/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/teach/3.jpg -------------------------------------------------------------------------------- /src/main/resources/static/img/teach/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/img/teach/4.jpg -------------------------------------------------------------------------------- /src/main/resources/static/js/file/Q.Uploader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/js/file/Q.Uploader.js -------------------------------------------------------------------------------- /src/main/resources/static/js/file/Q.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/js/file/Q.js -------------------------------------------------------------------------------- /src/main/resources/static/js/jquery.cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/js/jquery.cookie.js -------------------------------------------------------------------------------- /src/main/resources/static/js/jquery.md5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/js/jquery.md5.js -------------------------------------------------------------------------------- /src/main/resources/static/js/layer/layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/js/layer/layer.js -------------------------------------------------------------------------------- /src/main/resources/static/js/layer/mobile/layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/js/layer/mobile/layer.js -------------------------------------------------------------------------------- /src/main/resources/static/js/layer/mobile/need/layer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/js/layer/mobile/need/layer.css -------------------------------------------------------------------------------- /src/main/resources/static/js/layer/skin/default/icon-ext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/js/layer/skin/default/icon-ext.png -------------------------------------------------------------------------------- /src/main/resources/static/js/layer/skin/default/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/js/layer/skin/default/icon.png -------------------------------------------------------------------------------- /src/main/resources/static/js/layer/skin/default/layer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/js/layer/skin/default/layer.css -------------------------------------------------------------------------------- /src/main/resources/static/js/layer/skin/default/loading-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/js/layer/skin/default/loading-0.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/layer/skin/default/loading-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/js/layer/skin/default/loading-1.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/layer/skin/default/loading-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/js/layer/skin/default/loading-2.gif -------------------------------------------------------------------------------- /src/main/resources/static/js/layerTool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/js/layerTool.js -------------------------------------------------------------------------------- /src/main/resources/static/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/js/main.js -------------------------------------------------------------------------------- /src/main/resources/static/js/md5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/js/md5.js -------------------------------------------------------------------------------- /src/main/resources/static/js/plugins/ajax-mail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/js/plugins/ajax-mail.js -------------------------------------------------------------------------------- /src/main/resources/static/js/plugins/ajaxchimp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/js/plugins/ajaxchimp.js -------------------------------------------------------------------------------- /src/main/resources/static/js/plugins/countdown.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/js/plugins/countdown.min.js -------------------------------------------------------------------------------- /src/main/resources/static/js/plugins/google-map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/js/plugins/google-map.js -------------------------------------------------------------------------------- /src/main/resources/static/js/plugins/image-zoom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/js/plugins/image-zoom.min.js -------------------------------------------------------------------------------- /src/main/resources/static/js/plugins/imagesloaded.pkgd.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/js/plugins/imagesloaded.pkgd.min.js -------------------------------------------------------------------------------- /src/main/resources/static/js/plugins/jqueryui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/js/plugins/jqueryui.min.js -------------------------------------------------------------------------------- /src/main/resources/static/js/plugins/masonry.pkgd.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/js/plugins/masonry.pkgd.min.js -------------------------------------------------------------------------------- /src/main/resources/static/js/plugins/nice-select.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/js/plugins/nice-select.min.js -------------------------------------------------------------------------------- /src/main/resources/static/js/plugins/slick.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/js/plugins/slick.min.js -------------------------------------------------------------------------------- /src/main/resources/static/js/vendor/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/js/vendor/bootstrap.min.js -------------------------------------------------------------------------------- /src/main/resources/static/js/vendor/jquery-3.3.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/js/vendor/jquery-3.3.1.min.js -------------------------------------------------------------------------------- /src/main/resources/static/js/vendor/jquery.backstretch.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/js/vendor/jquery.backstretch.min.js -------------------------------------------------------------------------------- /src/main/resources/static/js/vendor/modernizr-3.6.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/js/vendor/modernizr-3.6.0.min.js -------------------------------------------------------------------------------- /src/main/resources/static/js/vendor/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/js/vendor/popper.min.js -------------------------------------------------------------------------------- /src/main/resources/static/js/vendor/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/static/js/vendor/scripts.js -------------------------------------------------------------------------------- /src/main/resources/templates/admin/admin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/templates/admin/admin.html -------------------------------------------------------------------------------- /src/main/resources/templates/admin/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/templates/admin/admin.js -------------------------------------------------------------------------------- /src/main/resources/templates/admin/adminUser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/templates/admin/adminUser.html -------------------------------------------------------------------------------- /src/main/resources/templates/admin/adminUser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/templates/admin/adminUser.js -------------------------------------------------------------------------------- /src/main/resources/templates/admin/allDynamic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/templates/admin/allDynamic.html -------------------------------------------------------------------------------- /src/main/resources/templates/admin/allDynamic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/templates/admin/allDynamic.js -------------------------------------------------------------------------------- /src/main/resources/templates/admin/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/templates/admin/common.js -------------------------------------------------------------------------------- /src/main/resources/templates/admin/discussDynamic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/templates/admin/discussDynamic.html -------------------------------------------------------------------------------- /src/main/resources/templates/admin/discussDynamic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/templates/admin/discussDynamic.js -------------------------------------------------------------------------------- /src/main/resources/templates/admin/sendOpinion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/templates/admin/sendOpinion.html -------------------------------------------------------------------------------- /src/main/resources/templates/admin/sendOpinion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/templates/admin/sendOpinion.js -------------------------------------------------------------------------------- /src/main/resources/templates/adminLogin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/templates/adminLogin.html -------------------------------------------------------------------------------- /src/main/resources/templates/adminLogin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/templates/adminLogin.js -------------------------------------------------------------------------------- /src/main/resources/templates/chat/my-chat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/templates/chat/my-chat.html -------------------------------------------------------------------------------- /src/main/resources/templates/chat/my-chat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/templates/chat/my-chat.js -------------------------------------------------------------------------------- /src/main/resources/templates/common.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/templates/contact-us/contact-us.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/templates/contact-us/contact-us.html -------------------------------------------------------------------------------- /src/main/resources/templates/contact-us/contact-us.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/templates/contact-us/contact-us.js -------------------------------------------------------------------------------- /src/main/resources/templates/dynamic/Dynamic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/templates/dynamic/Dynamic.html -------------------------------------------------------------------------------- /src/main/resources/templates/dynamic/Dynamic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/templates/dynamic/Dynamic.js -------------------------------------------------------------------------------- /src/main/resources/templates/forget.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/templates/forget.html -------------------------------------------------------------------------------- /src/main/resources/templates/forget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/templates/forget.js -------------------------------------------------------------------------------- /src/main/resources/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/templates/index.html -------------------------------------------------------------------------------- /src/main/resources/templates/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/templates/index.js -------------------------------------------------------------------------------- /src/main/resources/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/templates/login.html -------------------------------------------------------------------------------- /src/main/resources/templates/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/templates/login.js -------------------------------------------------------------------------------- /src/main/resources/templates/my-message/my-message.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/templates/my-message/my-message.html -------------------------------------------------------------------------------- /src/main/resources/templates/my-message/my-message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/templates/my-message/my-message.js -------------------------------------------------------------------------------- /src/main/resources/templates/my-setting/my-setting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/templates/my-setting/my-setting.html -------------------------------------------------------------------------------- /src/main/resources/templates/my-setting/my-setting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/templates/my-setting/my-setting.js -------------------------------------------------------------------------------- /src/main/resources/templates/registered.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/templates/registered.html -------------------------------------------------------------------------------- /src/main/resources/templates/registered.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/main/resources/templates/registered.js -------------------------------------------------------------------------------- /src/test/java/com/example/teach/ShoesApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuLin-Coder/No236EducationMutualAidManagementSystem/HEAD/src/test/java/com/example/teach/ShoesApplicationTests.java --------------------------------------------------------------------------------