├── README.md ├── img ├── 183659_e8a39d38_7604956.png └── 184037_60026e14_7604956.png └── springboot-schema ├── .gitignore ├── .mvn └── wrapper │ ├── MavenWrapperDownloader.java │ ├── maven-wrapper.jar │ └── maven-wrapper.properties ├── db └── mysql.sql ├── mvnw ├── mvnw.cmd ├── pom.xml └── src ├── main ├── java │ └── com │ │ ├── SpringbootSchemaApplication.java │ │ ├── annotation │ │ ├── APPLoginUser.java │ │ ├── IgnoreAuth.java │ │ └── LoginUser.java │ │ ├── config │ │ ├── InterceptorConfig.java │ │ └── MybatisPlusConfig.java │ │ ├── controller │ │ ├── CommonController.java │ │ ├── ConfigController.java │ │ ├── DiscussqiuzhizhexinxiController.java │ │ ├── DiscusszhaopinxinxiController.java │ │ ├── FileController.java │ │ ├── GangweifenleiController.java │ │ ├── MessagesController.java │ │ ├── NewsController.java │ │ ├── QiuzhizhexinxiController.java │ │ ├── QiyexinxiController.java │ │ ├── StoreupController.java │ │ ├── UserController.java │ │ ├── XuelixinxiController.java │ │ ├── YingpinxinxiController.java │ │ ├── YonghuController.java │ │ ├── YouqinglianjieController.java │ │ └── ZhaopinxinxiController.java │ │ ├── dao │ │ ├── CommonDao.java │ │ ├── ConfigDao.java │ │ ├── DiscussqiuzhizhexinxiDao.java │ │ ├── DiscusszhaopinxinxiDao.java │ │ ├── GangweifenleiDao.java │ │ ├── MessagesDao.java │ │ ├── NewsDao.java │ │ ├── QiuzhizhexinxiDao.java │ │ ├── QiyexinxiDao.java │ │ ├── StoreupDao.java │ │ ├── TokenDao.java │ │ ├── UserDao.java │ │ ├── XuelixinxiDao.java │ │ ├── YingpinxinxiDao.java │ │ ├── YonghuDao.java │ │ ├── YouqinglianjieDao.java │ │ └── ZhaopinxinxiDao.java │ │ ├── entity │ │ ├── ConfigEntity.java │ │ ├── DiscussqiuzhizhexinxiEntity.java │ │ ├── DiscusszhaopinxinxiEntity.java │ │ ├── EIException.java │ │ ├── GangweifenleiEntity.java │ │ ├── MessagesEntity.java │ │ ├── NewsEntity.java │ │ ├── QiuzhizhexinxiEntity.java │ │ ├── QiyexinxiEntity.java │ │ ├── StoreupEntity.java │ │ ├── TokenEntity.java │ │ ├── UserEntity.java │ │ ├── XuelixinxiEntity.java │ │ ├── YingpinxinxiEntity.java │ │ ├── YonghuEntity.java │ │ ├── YouqinglianjieEntity.java │ │ ├── ZhaopinxinxiEntity.java │ │ ├── model │ │ │ ├── DiscussqiuzhizhexinxiModel.java │ │ │ ├── DiscusszhaopinxinxiModel.java │ │ │ ├── GangweifenleiModel.java │ │ │ ├── MessagesModel.java │ │ │ ├── NewsModel.java │ │ │ ├── QiuzhizhexinxiModel.java │ │ │ ├── QiyexinxiModel.java │ │ │ ├── StoreupModel.java │ │ │ ├── XuelixinxiModel.java │ │ │ ├── YingpinxinxiModel.java │ │ │ ├── YonghuModel.java │ │ │ ├── YouqinglianjieModel.java │ │ │ └── ZhaopinxinxiModel.java │ │ ├── view │ │ │ ├── DiscussqiuzhizhexinxiView.java │ │ │ ├── DiscusszhaopinxinxiView.java │ │ │ ├── GangweifenleiView.java │ │ │ ├── MessagesView.java │ │ │ ├── NewsView.java │ │ │ ├── QiuzhizhexinxiView.java │ │ │ ├── QiyexinxiView.java │ │ │ ├── StoreupView.java │ │ │ ├── XuelixinxiView.java │ │ │ ├── YingpinxinxiView.java │ │ │ ├── YonghuView.java │ │ │ ├── YouqinglianjieView.java │ │ │ └── ZhaopinxinxiView.java │ │ └── vo │ │ │ ├── DiscussqiuzhizhexinxiVO.java │ │ │ ├── DiscusszhaopinxinxiVO.java │ │ │ ├── GangweifenleiVO.java │ │ │ ├── MessagesVO.java │ │ │ ├── NewsVO.java │ │ │ ├── QiuzhizhexinxiVO.java │ │ │ ├── QiyexinxiVO.java │ │ │ ├── StoreupVO.java │ │ │ ├── XuelixinxiVO.java │ │ │ ├── YingpinxinxiVO.java │ │ │ ├── YonghuVO.java │ │ │ ├── YouqinglianjieVO.java │ │ │ └── ZhaopinxinxiVO.java │ │ ├── interceptor │ │ └── AuthorizationInterceptor.java │ │ ├── service │ │ ├── CommonService.java │ │ ├── ConfigService.java │ │ ├── DiscussqiuzhizhexinxiService.java │ │ ├── DiscusszhaopinxinxiService.java │ │ ├── GangweifenleiService.java │ │ ├── MessagesService.java │ │ ├── NewsService.java │ │ ├── QiuzhizhexinxiService.java │ │ ├── QiyexinxiService.java │ │ ├── StoreupService.java │ │ ├── TokenService.java │ │ ├── UserService.java │ │ ├── XuelixinxiService.java │ │ ├── YingpinxinxiService.java │ │ ├── YonghuService.java │ │ ├── YouqinglianjieService.java │ │ ├── ZhaopinxinxiService.java │ │ └── impl │ │ │ ├── CommonServiceImpl.java │ │ │ ├── ConfigServiceImpl.java │ │ │ ├── DiscussqiuzhizhexinxiServiceImpl.java │ │ │ ├── DiscusszhaopinxinxiServiceImpl.java │ │ │ ├── GangweifenleiServiceImpl.java │ │ │ ├── MessagesServiceImpl.java │ │ │ ├── NewsServiceImpl.java │ │ │ ├── QiuzhizhexinxiServiceImpl.java │ │ │ ├── QiyexinxiServiceImpl.java │ │ │ ├── StoreupServiceImpl.java │ │ │ ├── TokenServiceImpl.java │ │ │ ├── UserServiceImpl.java │ │ │ ├── XuelixinxiServiceImpl.java │ │ │ ├── YingpinxinxiServiceImpl.java │ │ │ ├── YonghuServiceImpl.java │ │ │ ├── YouqinglianjieServiceImpl.java │ │ │ └── ZhaopinxinxiServiceImpl.java │ │ └── utils │ │ ├── BaiduUtil.java │ │ ├── CommonUtil.java │ │ ├── FileUtil.java │ │ ├── HttpClientUtils.java │ │ ├── JQPageInfo.java │ │ ├── MPUtil.java │ │ ├── PageUtils.java │ │ ├── Query.java │ │ ├── R.java │ │ ├── SQLFilter.java │ │ ├── SpringContextUtils.java │ │ └── ValidatorUtils.java └── resources │ ├── admin │ └── admin │ │ ├── babel.config.js │ │ ├── dist │ │ ├── css │ │ │ ├── app.a65ba691.css │ │ │ └── chunk-vendors.1f0a25b2.css │ │ ├── favicon.ico │ │ ├── fonts │ │ │ ├── element-icons.535877f5.woff │ │ │ └── element-icons.732389de.ttf │ │ ├── img │ │ │ ├── 404.3648f234.png │ │ │ ├── bg.875e60c1.jpg │ │ │ └── zhongguo.20798bfa.png │ │ ├── index.html │ │ └── js │ │ │ ├── app.ad8a76f6.js │ │ │ ├── app.ad8a76f6.js.map │ │ │ ├── chunk-vendors.6ec768d0.js │ │ │ └── chunk-vendors.6ec768d0.js.map │ │ ├── muban.jpg │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ ├── favicon.ico │ │ └── index.html │ │ ├── src │ │ ├── App.vue │ │ ├── assets │ │ │ ├── css │ │ │ │ ├── element-variables.scss │ │ │ │ ├── style.scss │ │ │ │ └── theme.scss │ │ │ └── img │ │ │ │ ├── 404.png │ │ │ │ ├── avator.png │ │ │ │ ├── bg.jpg │ │ │ │ ├── captcha.jpg │ │ │ │ ├── logo.png │ │ │ │ └── test │ │ │ │ ├── jianshe.png │ │ │ │ ├── jiaotong.png │ │ │ │ ├── nongye.png │ │ │ │ ├── weixin.png │ │ │ │ ├── zhifubao.png │ │ │ │ └── zhongguo.png │ │ ├── components │ │ │ ├── common │ │ │ │ ├── BreadCrumbs.vue │ │ │ │ ├── Editor.vue │ │ │ │ └── FileUpload.vue │ │ │ └── index │ │ │ │ ├── IndexAside.vue │ │ │ │ ├── IndexAsideStatic.vue │ │ │ │ ├── IndexAsideSub.vue │ │ │ │ ├── IndexHeader.vue │ │ │ │ └── IndexMain.vue │ │ ├── main.js │ │ ├── router │ │ │ └── router-static.js │ │ ├── store │ │ │ └── store.js │ │ ├── utils │ │ │ ├── api.js │ │ │ ├── base.js │ │ │ ├── http.js │ │ │ ├── menu.js │ │ │ ├── storage.js │ │ │ ├── utils.js │ │ │ └── validate.js │ │ └── views │ │ │ ├── 404.vue │ │ │ ├── center.vue │ │ │ ├── home.vue │ │ │ ├── index.vue │ │ │ ├── login.vue │ │ │ ├── modules │ │ │ ├── cuotiben │ │ │ │ └── list.vue │ │ │ ├── discussqiuzhizhexinxi │ │ │ │ ├── add-or-update.vue │ │ │ │ └── list.vue │ │ │ ├── discusszhaopinxinxi │ │ │ │ ├── add-or-update.vue │ │ │ │ └── list.vue │ │ │ ├── gangweifenlei │ │ │ │ ├── add-or-update.vue │ │ │ │ └── list.vue │ │ │ ├── kaoshijilu │ │ │ │ └── list.vue │ │ │ ├── kefuguanli │ │ │ │ ├── chat-add-or-update.vue │ │ │ │ └── list.vue │ │ │ ├── luntanguanli │ │ │ │ ├── forum-add-or-update.vue │ │ │ │ └── list.vue │ │ │ ├── luxianguanli │ │ │ │ ├── list.vue │ │ │ │ └── route-add-or-update.vue │ │ │ ├── messages │ │ │ │ ├── add-or-update.vue │ │ │ │ └── list.vue │ │ │ ├── news │ │ │ │ ├── add-or-update.vue │ │ │ │ └── list.vue │ │ │ ├── peizhiguanli │ │ │ │ ├── add-or-update.vue │ │ │ │ └── list.vue │ │ │ ├── qiuzhizhexinxi │ │ │ │ ├── add-or-update.vue │ │ │ │ └── list.vue │ │ │ ├── qiyexinxi │ │ │ │ ├── add-or-update.vue │ │ │ │ └── list.vue │ │ │ ├── renlianshangchuan │ │ │ │ └── list.vue │ │ │ ├── shijuanguanli │ │ │ │ ├── list.vue │ │ │ │ └── paper-add-or-update.vue │ │ │ ├── shijuanliebiao │ │ │ │ ├── exam.vue │ │ │ │ └── list.vue │ │ │ ├── shitiguanli │ │ │ │ ├── list.vue │ │ │ │ └── question-add-or-update.vue │ │ │ ├── storeup │ │ │ │ ├── add-or-update.vue │ │ │ │ └── list.vue │ │ │ ├── users │ │ │ │ ├── add-or-update.vue │ │ │ │ └── list.vue │ │ │ ├── weizhifudingdan │ │ │ │ ├── list.vue │ │ │ │ └── order-add-or-update.vue │ │ │ ├── xuelixinxi │ │ │ │ ├── add-or-update.vue │ │ │ │ └── list.vue │ │ │ ├── yifahuodingdan │ │ │ │ ├── list.vue │ │ │ │ └── order-add-or-update.vue │ │ │ ├── yingpinxinxi │ │ │ │ ├── add-or-update.vue │ │ │ │ └── list.vue │ │ │ ├── yiquxiaodingdan │ │ │ │ ├── list.vue │ │ │ │ └── order-add-or-update.vue │ │ │ ├── yituikuandingdan │ │ │ │ ├── list.vue │ │ │ │ └── order-add-or-update.vue │ │ │ ├── yiwanchengdingdan │ │ │ │ ├── list.vue │ │ │ │ └── order-add-or-update.vue │ │ │ ├── yizhifudingdan │ │ │ │ ├── list.vue │ │ │ │ └── order-add-or-update.vue │ │ │ ├── yonghu │ │ │ │ ├── add-or-update.vue │ │ │ │ └── list.vue │ │ │ ├── youqinglianjie │ │ │ │ ├── add-or-update.vue │ │ │ │ └── list.vue │ │ │ ├── zhaopinxinxi │ │ │ │ ├── add-or-update.vue │ │ │ │ └── list.vue │ │ │ ├── zuoweiguanli │ │ │ │ ├── film-seat-add-or-update.vue │ │ │ │ └── list.vue │ │ │ └── zuoweiyudingguanli │ │ │ │ ├── list.vue │ │ │ │ └── restaurant-seat-add-or-update.vue │ │ │ ├── pay.vue │ │ │ ├── register.vue │ │ │ └── update-password.vue │ │ └── vue.config.js │ ├── application.yml │ ├── front │ └── front │ │ ├── assets │ │ ├── css │ │ │ ├── relys │ │ │ │ ├── all.min.css │ │ │ │ ├── animate.css │ │ │ │ ├── bg-image │ │ │ │ │ └── footer-top-bg.png │ │ │ │ ├── bootstrap.min.css │ │ │ │ ├── fonts │ │ │ │ │ └── icofont.woff2 │ │ │ │ ├── icofont.min.css │ │ │ │ ├── lightcase.css │ │ │ │ ├── login.css │ │ │ │ ├── style.css │ │ │ │ └── swiper.min.css │ │ │ └── webfonts │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ └── fa-solid-900.woff2 │ │ ├── images │ │ │ ├── 404.png │ │ │ ├── about │ │ │ │ ├── 01.png │ │ │ │ ├── 02.png │ │ │ │ ├── 03.png │ │ │ │ ├── icon │ │ │ │ │ ├── 01.jpg │ │ │ │ │ ├── 01.png │ │ │ │ │ ├── 02.jpg │ │ │ │ │ ├── 02.png │ │ │ │ │ ├── 03.png │ │ │ │ │ └── 04.png │ │ │ │ └── shape │ │ │ │ │ ├── 01.png │ │ │ │ │ └── 02.png │ │ │ ├── audioicon.png │ │ │ ├── author.jpg │ │ │ ├── avatar.jpg │ │ │ ├── banner │ │ │ │ ├── 01.jpg │ │ │ │ └── 02.jpg │ │ │ ├── bg-images │ │ │ │ ├── bg-1.jpg │ │ │ │ ├── bg-countdown.jpg │ │ │ │ ├── bg-counter.jpg │ │ │ │ └── page-header.jpg │ │ │ ├── blog │ │ │ │ ├── 01.jpg │ │ │ │ ├── 02.jpg │ │ │ │ ├── 03.jpg │ │ │ │ ├── 04.jpg │ │ │ │ ├── 05.jpg │ │ │ │ └── 06.jpg │ │ │ ├── countdown │ │ │ │ ├── 01.png │ │ │ │ ├── 02.png │ │ │ │ └── 03.png │ │ │ ├── counter │ │ │ │ ├── 01.png │ │ │ │ ├── 02.png │ │ │ │ ├── 03.png │ │ │ │ └── 04.png │ │ │ ├── del.png │ │ │ ├── farm │ │ │ │ ├── 01.png │ │ │ │ └── 02.png │ │ │ ├── feature │ │ │ │ ├── 01.png │ │ │ │ ├── 02.png │ │ │ │ ├── 03.png │ │ │ │ ├── 04.png │ │ │ │ ├── 05.png │ │ │ │ ├── 06.png │ │ │ │ ├── 07.png │ │ │ │ ├── 08.png │ │ │ │ ├── 09.png │ │ │ │ ├── 10.png │ │ │ │ └── shape │ │ │ │ │ ├── 01.png │ │ │ │ │ ├── 02.png │ │ │ │ │ └── 03.png │ │ │ ├── fileicon.png │ │ │ ├── gallery │ │ │ │ ├── 01.jpg │ │ │ │ ├── 02.jpg │ │ │ │ ├── 03.jpg │ │ │ │ ├── 04.jpg │ │ │ │ ├── 05.jpg │ │ │ │ └── 06.jpg │ │ │ ├── history │ │ │ │ └── 01.jpg │ │ │ ├── iconpay │ │ │ │ ├── js.png │ │ │ │ ├── jt.png │ │ │ │ ├── wx.png │ │ │ │ ├── yz.png │ │ │ │ ├── zfb.png │ │ │ │ └── zg.png │ │ │ ├── kefu │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ └── kefuicon.png │ │ │ ├── logo │ │ │ │ ├── 01.png │ │ │ │ └── 02.png │ │ │ ├── masonary │ │ │ │ ├── 01.jpg │ │ │ │ ├── 02.jpg │ │ │ │ ├── 03.jpg │ │ │ │ ├── 04.jpg │ │ │ │ ├── 05.jpg │ │ │ │ ├── 06.jpg │ │ │ │ ├── 07.jpg │ │ │ │ ├── 08.jpg │ │ │ │ ├── 09.jpg │ │ │ │ ├── 10.jpg │ │ │ │ ├── 11.jpg │ │ │ │ └── 12.jpg │ │ │ ├── offer │ │ │ │ ├── 01.png │ │ │ │ └── 02.png │ │ │ ├── product │ │ │ │ ├── 01.jpg │ │ │ │ ├── 02.jpg │ │ │ │ ├── 03.jpg │ │ │ │ ├── 04.jpg │ │ │ │ ├── 05.jpg │ │ │ │ ├── 06.jpg │ │ │ │ ├── 07.jpg │ │ │ │ ├── 08.jpg │ │ │ │ ├── 09.jpg │ │ │ │ ├── 10.jpg │ │ │ │ ├── 11.jpg │ │ │ │ ├── 12.jpg │ │ │ │ ├── 13.jpg │ │ │ │ ├── 14.jpg │ │ │ │ ├── 15.jpg │ │ │ │ ├── 16.jpg │ │ │ │ ├── 17.jpg │ │ │ │ ├── 18.jpg │ │ │ │ ├── 19.jpg │ │ │ │ ├── 20.jpg │ │ │ │ ├── 21.jpg │ │ │ │ ├── 22.jpg │ │ │ │ ├── 23.jpg │ │ │ │ ├── 24.jpg │ │ │ │ ├── 25.jpg │ │ │ │ ├── home3 │ │ │ │ │ ├── 01.jpg │ │ │ │ │ ├── 01.png │ │ │ │ │ ├── 02.jpg │ │ │ │ │ ├── 02.png │ │ │ │ │ ├── 03.jpg │ │ │ │ │ ├── 03.png │ │ │ │ │ ├── 04.jpg │ │ │ │ │ ├── 04.png │ │ │ │ │ ├── 05.jpg │ │ │ │ │ ├── 05.png │ │ │ │ │ ├── 06.jpg │ │ │ │ │ ├── 06.png │ │ │ │ │ ├── 07.jpg │ │ │ │ │ ├── 07.png │ │ │ │ │ ├── 08.jpg │ │ │ │ │ └── 09.jpg │ │ │ │ ├── shape │ │ │ │ │ ├── 01.png │ │ │ │ │ └── 02.png │ │ │ │ └── single │ │ │ │ │ ├── bottom │ │ │ │ │ ├── 01.png │ │ │ │ │ ├── 02.png │ │ │ │ │ ├── 03.png │ │ │ │ │ ├── 04.png │ │ │ │ │ └── 05.png │ │ │ │ │ └── top │ │ │ │ │ └── 01.png │ │ │ ├── sponsor │ │ │ │ ├── 01.png │ │ │ │ ├── 02.png │ │ │ │ ├── 03.png │ │ │ │ ├── 04.png │ │ │ │ └── 05.png │ │ │ ├── team │ │ │ │ ├── 01.jpg │ │ │ │ ├── 02.jpg │ │ │ │ ├── 03.jpg │ │ │ │ ├── 04.jpg │ │ │ │ ├── 05.jpg │ │ │ │ ├── 06.jpg │ │ │ │ ├── 07.jpg │ │ │ │ ├── 08.jpg │ │ │ │ ├── 09.jpg │ │ │ │ ├── 10.jpg │ │ │ │ ├── 11.jpg │ │ │ │ └── 12.jpg │ │ │ └── testimonial │ │ │ │ ├── 01.jpg │ │ │ │ ├── 02.jpg │ │ │ │ ├── 03.jpg │ │ │ │ ├── quete-left.png │ │ │ │ └── qute.png │ │ └── js │ │ │ ├── api │ │ │ ├── api.js │ │ │ ├── defaultuser.js │ │ │ ├── order.js │ │ │ ├── shop-address.js │ │ │ ├── shop-cart.js │ │ │ ├── shop.js │ │ │ └── tplist.js │ │ │ └── relys │ │ │ ├── bootstrap.AMapPositionPicker.js │ │ │ ├── bootstrap.min.js │ │ │ ├── fontawesome.min.js │ │ │ ├── functions.js │ │ │ ├── isotope.pkgd.min.js │ │ │ ├── jq-paginator.min.js │ │ │ ├── jquery.countdown.min.js │ │ │ ├── jquery.counterup.min.js │ │ │ ├── jquery.js │ │ │ ├── lightcase.js │ │ │ ├── storage.js │ │ │ ├── swiper.min.js │ │ │ ├── utils.js │ │ │ ├── vue.js │ │ │ ├── vue.min.js │ │ │ ├── waypoints.min.js │ │ │ └── wow.min.js │ │ ├── index.html │ │ ├── layui │ │ ├── css │ │ │ ├── layui.css │ │ │ ├── layui.mobile.css │ │ │ └── modules │ │ │ │ ├── code.css │ │ │ │ ├── laydate │ │ │ │ └── default │ │ │ │ │ └── laydate.css │ │ │ │ └── layer │ │ │ │ └── default │ │ │ │ ├── icon-ext.png │ │ │ │ ├── icon.png │ │ │ │ ├── layer.css │ │ │ │ ├── loading-0.gif │ │ │ │ ├── loading-1.gif │ │ │ │ └── loading-2.gif │ │ ├── font │ │ │ ├── iconfont.eot │ │ │ ├── iconfont.svg │ │ │ ├── iconfont.ttf │ │ │ ├── iconfont.woff │ │ │ └── iconfont.woff2 │ │ ├── images │ │ │ └── face │ │ │ │ ├── 0.gif │ │ │ │ ├── 1.gif │ │ │ │ ├── 10.gif │ │ │ │ ├── 11.gif │ │ │ │ ├── 12.gif │ │ │ │ ├── 13.gif │ │ │ │ ├── 14.gif │ │ │ │ ├── 15.gif │ │ │ │ ├── 16.gif │ │ │ │ ├── 17.gif │ │ │ │ ├── 18.gif │ │ │ │ ├── 19.gif │ │ │ │ ├── 2.gif │ │ │ │ ├── 20.gif │ │ │ │ ├── 21.gif │ │ │ │ ├── 22.gif │ │ │ │ ├── 23.gif │ │ │ │ ├── 24.gif │ │ │ │ ├── 25.gif │ │ │ │ ├── 26.gif │ │ │ │ ├── 27.gif │ │ │ │ ├── 28.gif │ │ │ │ ├── 29.gif │ │ │ │ ├── 3.gif │ │ │ │ ├── 30.gif │ │ │ │ ├── 31.gif │ │ │ │ ├── 32.gif │ │ │ │ ├── 33.gif │ │ │ │ ├── 34.gif │ │ │ │ ├── 35.gif │ │ │ │ ├── 36.gif │ │ │ │ ├── 37.gif │ │ │ │ ├── 38.gif │ │ │ │ ├── 39.gif │ │ │ │ ├── 4.gif │ │ │ │ ├── 40.gif │ │ │ │ ├── 41.gif │ │ │ │ ├── 42.gif │ │ │ │ ├── 43.gif │ │ │ │ ├── 44.gif │ │ │ │ ├── 45.gif │ │ │ │ ├── 46.gif │ │ │ │ ├── 47.gif │ │ │ │ ├── 48.gif │ │ │ │ ├── 49.gif │ │ │ │ ├── 5.gif │ │ │ │ ├── 50.gif │ │ │ │ ├── 51.gif │ │ │ │ ├── 52.gif │ │ │ │ ├── 53.gif │ │ │ │ ├── 54.gif │ │ │ │ ├── 55.gif │ │ │ │ ├── 56.gif │ │ │ │ ├── 57.gif │ │ │ │ ├── 58.gif │ │ │ │ ├── 59.gif │ │ │ │ ├── 6.gif │ │ │ │ ├── 60.gif │ │ │ │ ├── 61.gif │ │ │ │ ├── 62.gif │ │ │ │ ├── 63.gif │ │ │ │ ├── 64.gif │ │ │ │ ├── 65.gif │ │ │ │ ├── 66.gif │ │ │ │ ├── 67.gif │ │ │ │ ├── 68.gif │ │ │ │ ├── 69.gif │ │ │ │ ├── 7.gif │ │ │ │ ├── 70.gif │ │ │ │ ├── 71.gif │ │ │ │ ├── 8.gif │ │ │ │ └── 9.gif │ │ ├── lay │ │ │ └── modules │ │ │ │ ├── carousel.js │ │ │ │ ├── code.js │ │ │ │ ├── colorpicker.js │ │ │ │ ├── element.js │ │ │ │ ├── flow.js │ │ │ │ ├── form.js │ │ │ │ ├── jquery.js │ │ │ │ ├── laydate.js │ │ │ │ ├── layedit.js │ │ │ │ ├── layer.js │ │ │ │ ├── laypage.js │ │ │ │ ├── laytpl.js │ │ │ │ ├── mobile.js │ │ │ │ ├── rate.js │ │ │ │ ├── slider.js │ │ │ │ ├── table.js │ │ │ │ ├── transfer.js │ │ │ │ ├── tree.js │ │ │ │ ├── upload.js │ │ │ │ └── util.js │ │ ├── layui.all.js │ │ └── layui.js │ │ ├── muban.jpg │ │ └── pages │ │ ├── address │ │ ├── address-edit.html │ │ ├── address-list.html │ │ └── style.css │ │ ├── blog │ │ ├── blog-detail.html │ │ └── blog-list.html │ │ ├── cart │ │ ├── cart.html │ │ └── style.css │ │ ├── discussqiuzhizhexinxi │ │ ├── add.html │ │ ├── detail.html │ │ ├── list.html │ │ ├── register.html │ │ └── reset.html │ │ ├── discusszhaopinxinxi │ │ ├── add.html │ │ ├── detail.html │ │ ├── list.html │ │ ├── register.html │ │ └── reset.html │ │ ├── gangweifenlei │ │ ├── add.html │ │ ├── detail.html │ │ ├── list.html │ │ ├── register.html │ │ └── reset.html │ │ ├── home │ │ └── home.html │ │ ├── login │ │ └── login.html │ │ ├── luntan │ │ ├── detail.html │ │ └── list.html │ │ ├── messages │ │ ├── add.html │ │ ├── detail.html │ │ ├── list.html │ │ ├── register.html │ │ └── reset.html │ │ ├── news │ │ ├── add.html │ │ ├── detail.html │ │ ├── list.html │ │ ├── news-detail.html │ │ ├── register.html │ │ └── reset.html │ │ ├── order │ │ ├── confirm-order.html │ │ └── order-list.html │ │ ├── personal │ │ ├── personal.html │ │ └── style.css │ │ ├── qiuzhizhexinxi │ │ ├── add.html │ │ ├── detail.html │ │ ├── list.html │ │ ├── register.html │ │ └── reset.html │ │ ├── qiyexinxi │ │ ├── add.html │ │ ├── detail.html │ │ ├── list.html │ │ ├── register.html │ │ └── reset.html │ │ ├── storeup │ │ ├── add.html │ │ ├── detail.html │ │ ├── list.html │ │ ├── register.html │ │ └── reset.html │ │ ├── xuelixinxi │ │ ├── add.html │ │ ├── detail.html │ │ ├── list.html │ │ ├── register.html │ │ └── reset.html │ │ ├── yingpinxinxi │ │ ├── add.html │ │ ├── detail.html │ │ ├── list.html │ │ ├── register.html │ │ └── reset.html │ │ ├── yonghu │ │ ├── add.html │ │ ├── detail.html │ │ ├── list.html │ │ ├── register.html │ │ └── reset.html │ │ ├── youqinglianjie │ │ ├── add.html │ │ ├── detail.html │ │ ├── list.html │ │ ├── register.html │ │ └── reset.html │ │ └── zhaopinxinxi │ │ ├── add.html │ │ ├── detail.html │ │ ├── list.html │ │ ├── register.html │ │ └── reset.html │ ├── mapper │ ├── CommonDao.xml │ ├── ConfigDao.xml │ ├── DiscussqiuzhizhexinxiDao.xml │ ├── DiscusszhaopinxinxiDao.xml │ ├── GangweifenleiDao.xml │ ├── MessagesDao.xml │ ├── NewsDao.xml │ ├── QiuzhizhexinxiDao.xml │ ├── QiyexinxiDao.xml │ ├── StoreupDao.xml │ ├── TokenDao.xml │ ├── UserDao.xml │ ├── XuelixinxiDao.xml │ ├── YingpinxinxiDao.xml │ ├── YonghuDao.xml │ ├── YouqinglianjieDao.xml │ └── ZhaopinxinxiDao.xml │ └── static │ └── upload │ ├── 1577351717989.jpg │ ├── 1596202359040.jpg │ ├── 1596202765029.jpg │ ├── 1596202778459.jpg │ ├── 1596202789362.jpg │ ├── 1596202801460.jpg │ ├── 1596202812156.jpg │ ├── 1596202819339.jpg │ ├── 1596203897238.gif │ ├── 1596204129522.jpeg │ ├── 1596204165238.jpeg │ ├── 1596204249970.jpg │ ├── 1596284947334.jpg │ ├── 1596285093334.docx │ ├── 1596285115757.jpg │ ├── 1596371914892.jpg │ ├── 1596372445456.jpg │ ├── 1596372470161.jpg │ ├── 1596372812163.jpg │ ├── 1596372817043.jpg │ └── test └── test └── java └── com └── SpringbootSchemaApplicationTests.java /img/183659_e8a39d38_7604956.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/img/183659_e8a39d38_7604956.png -------------------------------------------------------------------------------- /img/184037_60026e14_7604956.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/img/184037_60026e14_7604956.png -------------------------------------------------------------------------------- /springboot-schema/.gitignore: -------------------------------------------------------------------------------- 1 | HELP.md 2 | target/ 3 | !.mvn/wrapper/maven-wrapper.jar 4 | !**/src/main/** 5 | !**/src/test/** 6 | 7 | ### STS ### 8 | .apt_generated 9 | .classpath 10 | .factorypath 11 | .project 12 | .settings 13 | .springBeans 14 | .sts4-cache 15 | 16 | ### IntelliJ IDEA ### 17 | .idea 18 | *.iws 19 | *.iml 20 | *.ipr 21 | 22 | ### NetBeans ### 23 | /nbproject/private/ 24 | /nbbuild/ 25 | /dist/ 26 | /nbdist/ 27 | /.nb-gradle/ 28 | build/ 29 | 30 | ### VS Code ### 31 | .vscode/ 32 | -------------------------------------------------------------------------------- /springboot-schema/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /springboot-schema/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.6.2/apache-maven-3.6.2-bin.zip 2 | wrapperUrl=https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.5/maven-wrapper-0.5.5.jar 3 | -------------------------------------------------------------------------------- /springboot-schema/src/main/java/com/SpringbootSchemaApplication.java: -------------------------------------------------------------------------------- 1 | package com; 2 | 3 | import org.mybatis.spring.annotation.MapperScan; 4 | import org.springframework.boot.SpringApplication; 5 | import org.springframework.boot.autoconfigure.SpringBootApplication; 6 | 7 | @SpringBootApplication 8 | @MapperScan(basePackages = {"com.dao"}) 9 | public class SpringbootSchemaApplication { 10 | 11 | public static void main(String[] args) { 12 | SpringApplication.run(SpringbootSchemaApplication.class, args); 13 | } 14 | 15 | } 16 | -------------------------------------------------------------------------------- /springboot-schema/src/main/java/com/annotation/APPLoginUser.java: -------------------------------------------------------------------------------- 1 | package com.annotation; 2 | 3 | import java.lang.annotation.ElementType; 4 | import java.lang.annotation.Retention; 5 | import java.lang.annotation.RetentionPolicy; 6 | import java.lang.annotation.Target; 7 | 8 | /** 9 | * 登录用户信息 10 | */ 11 | @Target(ElementType.PARAMETER) 12 | @Retention(RetentionPolicy.RUNTIME) 13 | public @interface APPLoginUser { 14 | 15 | } 16 | -------------------------------------------------------------------------------- /springboot-schema/src/main/java/com/annotation/IgnoreAuth.java: -------------------------------------------------------------------------------- 1 | package com.annotation; 2 | 3 | import java.lang.annotation.*; 4 | 5 | /** 6 | * 忽略Token验证 7 | */ 8 | @Target(ElementType.METHOD) 9 | @Retention(RetentionPolicy.RUNTIME) 10 | @Documented 11 | public @interface IgnoreAuth { 12 | 13 | } 14 | -------------------------------------------------------------------------------- /springboot-schema/src/main/java/com/annotation/LoginUser.java: -------------------------------------------------------------------------------- 1 | package com.annotation; 2 | 3 | import java.lang.annotation.ElementType; 4 | import java.lang.annotation.Retention; 5 | import java.lang.annotation.RetentionPolicy; 6 | import java.lang.annotation.Target; 7 | 8 | /** 9 | * 登录用户信息 10 | */ 11 | @Target(ElementType.PARAMETER) 12 | @Retention(RetentionPolicy.RUNTIME) 13 | public @interface LoginUser { 14 | 15 | } 16 | -------------------------------------------------------------------------------- /springboot-schema/src/main/java/com/config/MybatisPlusConfig.java: -------------------------------------------------------------------------------- 1 | 2 | package com.config; 3 | 4 | import org.springframework.context.annotation.Bean; 5 | import org.springframework.context.annotation.Configuration; 6 | 7 | import com.baomidou.mybatisplus.mapper.MetaObjectHandler; 8 | import com.baomidou.mybatisplus.plugins.PaginationInterceptor; 9 | 10 | /** 11 | * mybatis-plus配置 12 | * @author yangliyuan 13 | * @date 2019年6月25日 上午10:41:15 14 | */ 15 | @Configuration 16 | public class MybatisPlusConfig { 17 | 18 | /** 19 | * 分页插件 20 | */ 21 | @Bean 22 | public PaginationInterceptor paginationInterceptor() { 23 | return new PaginationInterceptor(); 24 | } 25 | 26 | } 27 | -------------------------------------------------------------------------------- /springboot-schema/src/main/java/com/dao/CommonDao.java: -------------------------------------------------------------------------------- 1 | 2 | package com.dao; 3 | 4 | import java.util.List; 5 | import java.util.Map; 6 | 7 | /** 8 | * 通用接口 9 | */ 10 | public interface CommonDao{ 11 | List getOption(Map params); 12 | 13 | Map getFollowByOption(Map params); 14 | 15 | List getFollowByOption2(Map params); 16 | 17 | void sh(Map params); 18 | 19 | int remindCount(Map params); 20 | 21 | Map selectCal(Map params); 22 | 23 | List> selectGroup(Map params); 24 | 25 | List> selectValue(Map params); 26 | } 27 | -------------------------------------------------------------------------------- /springboot-schema/src/main/java/com/dao/ConfigDao.java: -------------------------------------------------------------------------------- 1 | 2 | package com.dao; 3 | 4 | import com.baomidou.mybatisplus.mapper.BaseMapper; 5 | import com.entity.ConfigEntity; 6 | 7 | /** 8 | * 配置 9 | */ 10 | public interface ConfigDao extends BaseMapper { 11 | 12 | } 13 | -------------------------------------------------------------------------------- /springboot-schema/src/main/java/com/dao/DiscussqiuzhizhexinxiDao.java: -------------------------------------------------------------------------------- 1 | package com.dao; 2 | 3 | import com.entity.DiscussqiuzhizhexinxiEntity; 4 | import com.baomidou.mybatisplus.mapper.BaseMapper; 5 | import java.util.List; 6 | import com.baomidou.mybatisplus.mapper.Wrapper; 7 | import com.baomidou.mybatisplus.plugins.pagination.Pagination; 8 | 9 | import org.apache.ibatis.annotations.Param; 10 | import com.entity.vo.DiscussqiuzhizhexinxiVO; 11 | import com.entity.view.DiscussqiuzhizhexinxiView; 12 | 13 | 14 | /** 15 | * 求职者信息评论表 16 | * 17 | * @author 18 | * @email 19 | * @date 2020-05-13 10:02:23 20 | */ 21 | public interface DiscussqiuzhizhexinxiDao extends BaseMapper { 22 | 23 | List selectListVO(@Param("ew") Wrapper wrapper); 24 | 25 | DiscussqiuzhizhexinxiVO selectVO(@Param("ew") Wrapper wrapper); 26 | 27 | List selectListView(@Param("ew") Wrapper wrapper); 28 | 29 | List selectListView(Pagination page,@Param("ew") Wrapper wrapper); 30 | 31 | DiscussqiuzhizhexinxiView selectView(@Param("ew") Wrapper wrapper); 32 | } 33 | -------------------------------------------------------------------------------- /springboot-schema/src/main/java/com/dao/DiscusszhaopinxinxiDao.java: -------------------------------------------------------------------------------- 1 | package com.dao; 2 | 3 | import com.entity.DiscusszhaopinxinxiEntity; 4 | import com.baomidou.mybatisplus.mapper.BaseMapper; 5 | import java.util.List; 6 | import com.baomidou.mybatisplus.mapper.Wrapper; 7 | import com.baomidou.mybatisplus.plugins.pagination.Pagination; 8 | 9 | import org.apache.ibatis.annotations.Param; 10 | import com.entity.vo.DiscusszhaopinxinxiVO; 11 | import com.entity.view.DiscusszhaopinxinxiView; 12 | 13 | 14 | /** 15 | * 招聘信息评论表 16 | * 17 | * @author 18 | * @email 19 | * @date 2020-05-13 10:02:23 20 | */ 21 | public interface DiscusszhaopinxinxiDao extends BaseMapper { 22 | 23 | List selectListVO(@Param("ew") Wrapper wrapper); 24 | 25 | DiscusszhaopinxinxiVO selectVO(@Param("ew") Wrapper wrapper); 26 | 27 | List selectListView(@Param("ew") Wrapper wrapper); 28 | 29 | List selectListView(Pagination page,@Param("ew") Wrapper wrapper); 30 | 31 | DiscusszhaopinxinxiView selectView(@Param("ew") Wrapper wrapper); 32 | } 33 | -------------------------------------------------------------------------------- /springboot-schema/src/main/java/com/dao/GangweifenleiDao.java: -------------------------------------------------------------------------------- 1 | package com.dao; 2 | 3 | import com.entity.GangweifenleiEntity; 4 | import com.baomidou.mybatisplus.mapper.BaseMapper; 5 | import java.util.List; 6 | import com.baomidou.mybatisplus.mapper.Wrapper; 7 | import com.baomidou.mybatisplus.plugins.pagination.Pagination; 8 | 9 | import org.apache.ibatis.annotations.Param; 10 | import com.entity.vo.GangweifenleiVO; 11 | import com.entity.view.GangweifenleiView; 12 | 13 | 14 | /** 15 | * 岗位分类 16 | * 17 | * @author 18 | * @email 19 | * @date 2020-05-13 10:02:23 20 | */ 21 | public interface GangweifenleiDao extends BaseMapper { 22 | 23 | List selectListVO(@Param("ew") Wrapper wrapper); 24 | 25 | GangweifenleiVO selectVO(@Param("ew") Wrapper wrapper); 26 | 27 | List selectListView(@Param("ew") Wrapper wrapper); 28 | 29 | List selectListView(Pagination page,@Param("ew") Wrapper wrapper); 30 | 31 | GangweifenleiView selectView(@Param("ew") Wrapper wrapper); 32 | } 33 | -------------------------------------------------------------------------------- /springboot-schema/src/main/java/com/dao/MessagesDao.java: -------------------------------------------------------------------------------- 1 | package com.dao; 2 | 3 | import com.entity.MessagesEntity; 4 | import com.baomidou.mybatisplus.mapper.BaseMapper; 5 | import java.util.List; 6 | import com.baomidou.mybatisplus.mapper.Wrapper; 7 | import com.baomidou.mybatisplus.plugins.pagination.Pagination; 8 | 9 | import org.apache.ibatis.annotations.Param; 10 | import com.entity.vo.MessagesVO; 11 | import com.entity.view.MessagesView; 12 | 13 | 14 | /** 15 | * 留言板 16 | * 17 | * @author 18 | * @email 19 | * @date 2020-05-13 10:02:23 20 | */ 21 | public interface MessagesDao extends BaseMapper { 22 | 23 | List selectListVO(@Param("ew") Wrapper wrapper); 24 | 25 | MessagesVO selectVO(@Param("ew") Wrapper wrapper); 26 | 27 | List selectListView(@Param("ew") Wrapper wrapper); 28 | 29 | List selectListView(Pagination page,@Param("ew") Wrapper wrapper); 30 | 31 | MessagesView selectView(@Param("ew") Wrapper wrapper); 32 | } 33 | -------------------------------------------------------------------------------- /springboot-schema/src/main/java/com/dao/NewsDao.java: -------------------------------------------------------------------------------- 1 | package com.dao; 2 | 3 | import com.entity.NewsEntity; 4 | import com.baomidou.mybatisplus.mapper.BaseMapper; 5 | import java.util.List; 6 | import com.baomidou.mybatisplus.mapper.Wrapper; 7 | import com.baomidou.mybatisplus.plugins.pagination.Pagination; 8 | 9 | import org.apache.ibatis.annotations.Param; 10 | import com.entity.vo.NewsVO; 11 | import com.entity.view.NewsView; 12 | 13 | 14 | /** 15 | * 新闻资讯 16 | * 17 | * @author 18 | * @email 19 | * @date 2020-05-13 10:02:23 20 | */ 21 | public interface NewsDao extends BaseMapper { 22 | 23 | List selectListVO(@Param("ew") Wrapper wrapper); 24 | 25 | NewsVO selectVO(@Param("ew") Wrapper wrapper); 26 | 27 | List selectListView(@Param("ew") Wrapper wrapper); 28 | 29 | List selectListView(Pagination page,@Param("ew") Wrapper wrapper); 30 | 31 | NewsView selectView(@Param("ew") Wrapper wrapper); 32 | } 33 | -------------------------------------------------------------------------------- /springboot-schema/src/main/java/com/dao/QiuzhizhexinxiDao.java: -------------------------------------------------------------------------------- 1 | package com.dao; 2 | 3 | import com.entity.QiuzhizhexinxiEntity; 4 | import com.baomidou.mybatisplus.mapper.BaseMapper; 5 | import java.util.List; 6 | import com.baomidou.mybatisplus.mapper.Wrapper; 7 | import com.baomidou.mybatisplus.plugins.pagination.Pagination; 8 | 9 | import org.apache.ibatis.annotations.Param; 10 | import com.entity.vo.QiuzhizhexinxiVO; 11 | import com.entity.view.QiuzhizhexinxiView; 12 | 13 | 14 | /** 15 | * 求职者信息 16 | * 17 | * @author 18 | * @email 19 | * @date 2020-05-13 10:02:23 20 | */ 21 | public interface QiuzhizhexinxiDao extends BaseMapper { 22 | 23 | List selectListVO(@Param("ew") Wrapper wrapper); 24 | 25 | QiuzhizhexinxiVO selectVO(@Param("ew") Wrapper wrapper); 26 | 27 | List selectListView(@Param("ew") Wrapper wrapper); 28 | 29 | List selectListView(Pagination page,@Param("ew") Wrapper wrapper); 30 | 31 | QiuzhizhexinxiView selectView(@Param("ew") Wrapper wrapper); 32 | } 33 | -------------------------------------------------------------------------------- /springboot-schema/src/main/java/com/dao/QiyexinxiDao.java: -------------------------------------------------------------------------------- 1 | package com.dao; 2 | 3 | import com.entity.QiyexinxiEntity; 4 | import com.baomidou.mybatisplus.mapper.BaseMapper; 5 | import java.util.List; 6 | import com.baomidou.mybatisplus.mapper.Wrapper; 7 | import com.baomidou.mybatisplus.plugins.pagination.Pagination; 8 | 9 | import org.apache.ibatis.annotations.Param; 10 | import com.entity.vo.QiyexinxiVO; 11 | import com.entity.view.QiyexinxiView; 12 | 13 | 14 | /** 15 | * 企业信息 16 | * 17 | * @author 18 | * @email 19 | * @date 2020-05-13 10:02:22 20 | */ 21 | public interface QiyexinxiDao extends BaseMapper { 22 | 23 | List selectListVO(@Param("ew") Wrapper wrapper); 24 | 25 | QiyexinxiVO selectVO(@Param("ew") Wrapper wrapper); 26 | 27 | List selectListView(@Param("ew") Wrapper wrapper); 28 | 29 | List selectListView(Pagination page,@Param("ew") Wrapper wrapper); 30 | 31 | QiyexinxiView selectView(@Param("ew") Wrapper wrapper); 32 | } 33 | -------------------------------------------------------------------------------- /springboot-schema/src/main/java/com/dao/StoreupDao.java: -------------------------------------------------------------------------------- 1 | package com.dao; 2 | 3 | import com.entity.StoreupEntity; 4 | import com.baomidou.mybatisplus.mapper.BaseMapper; 5 | import java.util.List; 6 | import com.baomidou.mybatisplus.mapper.Wrapper; 7 | import com.baomidou.mybatisplus.plugins.pagination.Pagination; 8 | 9 | import org.apache.ibatis.annotations.Param; 10 | import com.entity.vo.StoreupVO; 11 | import com.entity.view.StoreupView; 12 | 13 | 14 | /** 15 | * 收藏表 16 | * 17 | * @author 18 | * @email 19 | * @date 2020-05-13 10:02:23 20 | */ 21 | public interface StoreupDao extends BaseMapper { 22 | 23 | List selectListVO(@Param("ew") Wrapper wrapper); 24 | 25 | StoreupVO selectVO(@Param("ew") Wrapper wrapper); 26 | 27 | List selectListView(@Param("ew") Wrapper wrapper); 28 | 29 | List selectListView(Pagination page,@Param("ew") Wrapper wrapper); 30 | 31 | StoreupView selectView(@Param("ew") Wrapper wrapper); 32 | } 33 | -------------------------------------------------------------------------------- /springboot-schema/src/main/java/com/dao/TokenDao.java: -------------------------------------------------------------------------------- 1 | 2 | package com.dao; 3 | 4 | import java.util.List; 5 | 6 | import org.apache.ibatis.annotations.Param; 7 | 8 | import com.baomidou.mybatisplus.mapper.BaseMapper; 9 | import com.baomidou.mybatisplus.mapper.Wrapper; 10 | import com.baomidou.mybatisplus.plugins.pagination.Pagination; 11 | import com.entity.TokenEntity; 12 | 13 | /** 14 | * token 15 | */ 16 | public interface TokenDao extends BaseMapper { 17 | 18 | List selectListView(@Param("ew") Wrapper wrapper); 19 | 20 | List selectListView(Pagination page,@Param("ew") Wrapper wrapper); 21 | 22 | } 23 | -------------------------------------------------------------------------------- /springboot-schema/src/main/java/com/dao/UserDao.java: -------------------------------------------------------------------------------- 1 | 2 | package com.dao; 3 | 4 | import java.util.List; 5 | 6 | import org.apache.ibatis.annotations.Param; 7 | 8 | import com.baomidou.mybatisplus.mapper.BaseMapper; 9 | import com.baomidou.mybatisplus.mapper.Wrapper; 10 | import com.baomidou.mybatisplus.plugins.pagination.Pagination; 11 | import com.entity.UserEntity; 12 | 13 | /** 14 | * 用户 15 | */ 16 | public interface UserDao extends BaseMapper { 17 | 18 | List selectListView(@Param("ew") Wrapper wrapper); 19 | 20 | List selectListView(Pagination page,@Param("ew") Wrapper wrapper); 21 | 22 | } 23 | -------------------------------------------------------------------------------- /springboot-schema/src/main/java/com/dao/XuelixinxiDao.java: -------------------------------------------------------------------------------- 1 | package com.dao; 2 | 3 | import com.entity.XuelixinxiEntity; 4 | import com.baomidou.mybatisplus.mapper.BaseMapper; 5 | import java.util.List; 6 | import com.baomidou.mybatisplus.mapper.Wrapper; 7 | import com.baomidou.mybatisplus.plugins.pagination.Pagination; 8 | 9 | import org.apache.ibatis.annotations.Param; 10 | import com.entity.vo.XuelixinxiVO; 11 | import com.entity.view.XuelixinxiView; 12 | 13 | 14 | /** 15 | * 学历信息 16 | * 17 | * @author 18 | * @email 19 | * @date 2020-05-13 10:02:23 20 | */ 21 | public interface XuelixinxiDao extends BaseMapper { 22 | 23 | List selectListVO(@Param("ew") Wrapper wrapper); 24 | 25 | XuelixinxiVO selectVO(@Param("ew") Wrapper wrapper); 26 | 27 | List selectListView(@Param("ew") Wrapper wrapper); 28 | 29 | List selectListView(Pagination page,@Param("ew") Wrapper wrapper); 30 | 31 | XuelixinxiView selectView(@Param("ew") Wrapper wrapper); 32 | } 33 | -------------------------------------------------------------------------------- /springboot-schema/src/main/java/com/dao/YingpinxinxiDao.java: -------------------------------------------------------------------------------- 1 | package com.dao; 2 | 3 | import com.entity.YingpinxinxiEntity; 4 | import com.baomidou.mybatisplus.mapper.BaseMapper; 5 | import java.util.List; 6 | import com.baomidou.mybatisplus.mapper.Wrapper; 7 | import com.baomidou.mybatisplus.plugins.pagination.Pagination; 8 | 9 | import org.apache.ibatis.annotations.Param; 10 | import com.entity.vo.YingpinxinxiVO; 11 | import com.entity.view.YingpinxinxiView; 12 | 13 | 14 | /** 15 | * 应聘信息 16 | * 17 | * @author 18 | * @email 19 | * @date 2020-05-13 10:02:23 20 | */ 21 | public interface YingpinxinxiDao extends BaseMapper { 22 | 23 | List selectListVO(@Param("ew") Wrapper wrapper); 24 | 25 | YingpinxinxiVO selectVO(@Param("ew") Wrapper wrapper); 26 | 27 | List selectListView(@Param("ew") Wrapper wrapper); 28 | 29 | List selectListView(Pagination page,@Param("ew") Wrapper wrapper); 30 | 31 | YingpinxinxiView selectView(@Param("ew") Wrapper wrapper); 32 | } 33 | -------------------------------------------------------------------------------- /springboot-schema/src/main/java/com/dao/YonghuDao.java: -------------------------------------------------------------------------------- 1 | package com.dao; 2 | 3 | import com.entity.YonghuEntity; 4 | import com.baomidou.mybatisplus.mapper.BaseMapper; 5 | import java.util.List; 6 | import com.baomidou.mybatisplus.mapper.Wrapper; 7 | import com.baomidou.mybatisplus.plugins.pagination.Pagination; 8 | 9 | import org.apache.ibatis.annotations.Param; 10 | import com.entity.vo.YonghuVO; 11 | import com.entity.view.YonghuView; 12 | 13 | 14 | /** 15 | * 用户 16 | * 17 | * @author 18 | * @email 19 | * @date 2020-05-13 10:02:22 20 | */ 21 | public interface YonghuDao extends BaseMapper { 22 | 23 | List selectListVO(@Param("ew") Wrapper wrapper); 24 | 25 | YonghuVO selectVO(@Param("ew") Wrapper wrapper); 26 | 27 | List selectListView(@Param("ew") Wrapper wrapper); 28 | 29 | List selectListView(Pagination page,@Param("ew") Wrapper wrapper); 30 | 31 | YonghuView selectView(@Param("ew") Wrapper wrapper); 32 | } 33 | -------------------------------------------------------------------------------- /springboot-schema/src/main/java/com/dao/YouqinglianjieDao.java: -------------------------------------------------------------------------------- 1 | package com.dao; 2 | 3 | import com.entity.YouqinglianjieEntity; 4 | import com.baomidou.mybatisplus.mapper.BaseMapper; 5 | import java.util.List; 6 | import com.baomidou.mybatisplus.mapper.Wrapper; 7 | import com.baomidou.mybatisplus.plugins.pagination.Pagination; 8 | 9 | import org.apache.ibatis.annotations.Param; 10 | import com.entity.vo.YouqinglianjieVO; 11 | import com.entity.view.YouqinglianjieView; 12 | 13 | 14 | /** 15 | * 友情链接 16 | * 17 | * @author 18 | * @email 19 | * @date 2020-05-13 10:02:23 20 | */ 21 | public interface YouqinglianjieDao extends BaseMapper { 22 | 23 | List selectListVO(@Param("ew") Wrapper wrapper); 24 | 25 | YouqinglianjieVO selectVO(@Param("ew") Wrapper wrapper); 26 | 27 | List selectListView(@Param("ew") Wrapper wrapper); 28 | 29 | List selectListView(Pagination page,@Param("ew") Wrapper wrapper); 30 | 31 | YouqinglianjieView selectView(@Param("ew") Wrapper wrapper); 32 | } 33 | -------------------------------------------------------------------------------- /springboot-schema/src/main/java/com/dao/ZhaopinxinxiDao.java: -------------------------------------------------------------------------------- 1 | package com.dao; 2 | 3 | import com.entity.ZhaopinxinxiEntity; 4 | import com.baomidou.mybatisplus.mapper.BaseMapper; 5 | import java.util.List; 6 | import com.baomidou.mybatisplus.mapper.Wrapper; 7 | import com.baomidou.mybatisplus.plugins.pagination.Pagination; 8 | 9 | import org.apache.ibatis.annotations.Param; 10 | import com.entity.vo.ZhaopinxinxiVO; 11 | import com.entity.view.ZhaopinxinxiView; 12 | 13 | 14 | /** 15 | * 招聘信息 16 | * 17 | * @author 18 | * @email 19 | * @date 2020-05-13 10:02:22 20 | */ 21 | public interface ZhaopinxinxiDao extends BaseMapper { 22 | 23 | List selectListVO(@Param("ew") Wrapper wrapper); 24 | 25 | ZhaopinxinxiVO selectVO(@Param("ew") Wrapper wrapper); 26 | 27 | List selectListView(@Param("ew") Wrapper wrapper); 28 | 29 | List selectListView(Pagination page,@Param("ew") Wrapper wrapper); 30 | 31 | ZhaopinxinxiView selectView(@Param("ew") Wrapper wrapper); 32 | } 33 | -------------------------------------------------------------------------------- /springboot-schema/src/main/java/com/entity/ConfigEntity.java: -------------------------------------------------------------------------------- 1 | package com.entity; 2 | 3 | import java.io.Serializable; 4 | 5 | import com.baomidou.mybatisplus.annotations.TableId; 6 | import com.baomidou.mybatisplus.annotations.TableName; 7 | import com.baomidou.mybatisplus.enums.IdType; 8 | 9 | /** 10 | * @author yangliyuan 11 | * @version 创建时间:2020年2月7日 下午8:36:05 12 | * 类说明 : 13 | */ 14 | @TableName("config") 15 | public class ConfigEntity implements Serializable{ 16 | private static final long serialVersionUID = 1L; 17 | 18 | @TableId(type = IdType.AUTO) 19 | private Long id; 20 | 21 | /** 22 | * key 23 | */ 24 | private String name; 25 | 26 | /** 27 | * value 28 | */ 29 | private String value; 30 | 31 | public Long getId() { 32 | return id; 33 | } 34 | 35 | public void setId(Long id) { 36 | this.id = id; 37 | } 38 | 39 | public String getName() { 40 | return name; 41 | } 42 | 43 | public void setName(String name) { 44 | this.name = name; 45 | } 46 | 47 | public String getValue() { 48 | return value; 49 | } 50 | 51 | public void setValue(String value) { 52 | this.value = value; 53 | } 54 | 55 | } 56 | -------------------------------------------------------------------------------- /springboot-schema/src/main/java/com/entity/EIException.java: -------------------------------------------------------------------------------- 1 | 2 | package com.entity; 3 | 4 | /** 5 | * 自定义异常 6 | */ 7 | public class EIException extends RuntimeException { 8 | private static final long serialVersionUID = 1L; 9 | 10 | private String msg; 11 | private int code = 500; 12 | 13 | public EIException(String msg) { 14 | super(msg); 15 | this.msg = msg; 16 | } 17 | 18 | public EIException(String msg, Throwable e) { 19 | super(msg, e); 20 | this.msg = msg; 21 | } 22 | 23 | public EIException(String msg, int code) { 24 | super(msg); 25 | this.msg = msg; 26 | this.code = code; 27 | } 28 | 29 | public EIException(String msg, int code, Throwable e) { 30 | super(msg, e); 31 | this.msg = msg; 32 | this.code = code; 33 | } 34 | 35 | public String getMsg() { 36 | return msg; 37 | } 38 | 39 | public void setMsg(String msg) { 40 | this.msg = msg; 41 | } 42 | 43 | public int getCode() { 44 | return code; 45 | } 46 | 47 | public void setCode(int code) { 48 | this.code = code; 49 | } 50 | 51 | 52 | } 53 | -------------------------------------------------------------------------------- /springboot-schema/src/main/java/com/entity/model/DiscussqiuzhizhexinxiModel.java: -------------------------------------------------------------------------------- 1 | package com.entity.model; 2 | 3 | import com.entity.DiscussqiuzhizhexinxiEntity; 4 | 5 | import com.baomidou.mybatisplus.annotations.TableName; 6 | import java.util.Date; 7 | import org.springframework.format.annotation.DateTimeFormat; 8 | 9 | import com.fasterxml.jackson.annotation.JsonFormat; 10 | import java.io.Serializable; 11 | 12 | 13 | /** 14 | * 求职者信息评论表 15 | * 接收传参的实体类 16 | *(实际开发中配合移动端接口开发手动去掉些没用的字段, 后端一般用entity就够用了) 17 | * 取自ModelAndView 的model名称 18 | * @author 19 | * @email 20 | * @date 2020-05-13 10:02:23 21 | */ 22 | public class DiscussqiuzhizhexinxiModel implements Serializable { 23 | private static final long serialVersionUID = 1L; 24 | 25 | 26 | /** 27 | * 评论内容 28 | */ 29 | 30 | private String content; 31 | 32 | /** 33 | * 用户id 34 | */ 35 | 36 | private Long userid; 37 | 38 | 39 | /** 40 | * 设置:评论内容 41 | */ 42 | 43 | public void setContent(String content) { 44 | this.content = content; 45 | } 46 | 47 | /** 48 | * 获取:评论内容 49 | */ 50 | public String getContent() { 51 | return content; 52 | } 53 | 54 | 55 | /** 56 | * 设置:用户id 57 | */ 58 | 59 | public void setUserid(Long userid) { 60 | this.userid = userid; 61 | } 62 | 63 | /** 64 | * 获取:用户id 65 | */ 66 | public Long getUserid() { 67 | return userid; 68 | } 69 | 70 | } 71 | -------------------------------------------------------------------------------- /springboot-schema/src/main/java/com/entity/model/DiscusszhaopinxinxiModel.java: -------------------------------------------------------------------------------- 1 | package com.entity.model; 2 | 3 | import com.entity.DiscusszhaopinxinxiEntity; 4 | 5 | import com.baomidou.mybatisplus.annotations.TableName; 6 | import java.util.Date; 7 | import org.springframework.format.annotation.DateTimeFormat; 8 | 9 | import com.fasterxml.jackson.annotation.JsonFormat; 10 | import java.io.Serializable; 11 | 12 | 13 | /** 14 | * 招聘信息评论表 15 | * 接收传参的实体类 16 | *(实际开发中配合移动端接口开发手动去掉些没用的字段, 后端一般用entity就够用了) 17 | * 取自ModelAndView 的model名称 18 | * @author 19 | * @email 20 | * @date 2020-05-13 10:02:23 21 | */ 22 | public class DiscusszhaopinxinxiModel implements Serializable { 23 | private static final long serialVersionUID = 1L; 24 | 25 | 26 | /** 27 | * 评论内容 28 | */ 29 | 30 | private String content; 31 | 32 | /** 33 | * 用户id 34 | */ 35 | 36 | private Long userid; 37 | 38 | 39 | /** 40 | * 设置:评论内容 41 | */ 42 | 43 | public void setContent(String content) { 44 | this.content = content; 45 | } 46 | 47 | /** 48 | * 获取:评论内容 49 | */ 50 | public String getContent() { 51 | return content; 52 | } 53 | 54 | 55 | /** 56 | * 设置:用户id 57 | */ 58 | 59 | public void setUserid(Long userid) { 60 | this.userid = userid; 61 | } 62 | 63 | /** 64 | * 获取:用户id 65 | */ 66 | public Long getUserid() { 67 | return userid; 68 | } 69 | 70 | } 71 | -------------------------------------------------------------------------------- /springboot-schema/src/main/java/com/entity/model/GangweifenleiModel.java: -------------------------------------------------------------------------------- 1 | package com.entity.model; 2 | 3 | import com.entity.GangweifenleiEntity; 4 | 5 | import com.baomidou.mybatisplus.annotations.TableName; 6 | import java.util.Date; 7 | import org.springframework.format.annotation.DateTimeFormat; 8 | 9 | import com.fasterxml.jackson.annotation.JsonFormat; 10 | import java.io.Serializable; 11 | 12 | 13 | /** 14 | * 岗位分类 15 | * 接收传参的实体类 16 | *(实际开发中配合移动端接口开发手动去掉些没用的字段, 后端一般用entity就够用了) 17 | * 取自ModelAndView 的model名称 18 | * @author 19 | * @email 20 | * @date 2020-05-13 10:02:23 21 | */ 22 | public class GangweifenleiModel implements Serializable { 23 | private static final long serialVersionUID = 1L; 24 | 25 | 26 | } 27 | -------------------------------------------------------------------------------- /springboot-schema/src/main/java/com/entity/model/MessagesModel.java: -------------------------------------------------------------------------------- 1 | package com.entity.model; 2 | 3 | import com.entity.MessagesEntity; 4 | 5 | import com.baomidou.mybatisplus.annotations.TableName; 6 | import java.util.Date; 7 | import org.springframework.format.annotation.DateTimeFormat; 8 | 9 | import com.fasterxml.jackson.annotation.JsonFormat; 10 | import java.io.Serializable; 11 | 12 | 13 | /** 14 | * 留言板 15 | * 接收传参的实体类 16 | *(实际开发中配合移动端接口开发手动去掉些没用的字段, 后端一般用entity就够用了) 17 | * 取自ModelAndView 的model名称 18 | * @author 19 | * @email 20 | * @date 2020-05-13 10:02:23 21 | */ 22 | public class MessagesModel implements Serializable { 23 | private static final long serialVersionUID = 1L; 24 | 25 | 26 | /** 27 | * 留言人id 28 | */ 29 | 30 | private Long userid; 31 | 32 | 33 | /** 34 | * 设置:留言人id 35 | */ 36 | 37 | public void setUserid(Long userid) { 38 | this.userid = userid; 39 | } 40 | 41 | /** 42 | * 获取:留言人id 43 | */ 44 | public Long getUserid() { 45 | return userid; 46 | } 47 | 48 | } 49 | -------------------------------------------------------------------------------- /springboot-schema/src/main/java/com/entity/model/NewsModel.java: -------------------------------------------------------------------------------- 1 | package com.entity.model; 2 | 3 | import com.entity.NewsEntity; 4 | 5 | import com.baomidou.mybatisplus.annotations.TableName; 6 | import java.util.Date; 7 | import org.springframework.format.annotation.DateTimeFormat; 8 | 9 | import com.fasterxml.jackson.annotation.JsonFormat; 10 | import java.io.Serializable; 11 | 12 | 13 | /** 14 | * 新闻资讯 15 | * 接收传参的实体类 16 | *(实际开发中配合移动端接口开发手动去掉些没用的字段, 后端一般用entity就够用了) 17 | * 取自ModelAndView 的model名称 18 | * @author 19 | * @email 20 | * @date 2020-05-13 10:02:23 21 | */ 22 | public class NewsModel implements Serializable { 23 | private static final long serialVersionUID = 1L; 24 | 25 | 26 | /** 27 | * 图片 28 | */ 29 | 30 | private String picture; 31 | 32 | /** 33 | * 内容 34 | */ 35 | 36 | private String content; 37 | 38 | 39 | /** 40 | * 设置:图片 41 | */ 42 | 43 | public void setPicture(String picture) { 44 | this.picture = picture; 45 | } 46 | 47 | /** 48 | * 获取:图片 49 | */ 50 | public String getPicture() { 51 | return picture; 52 | } 53 | 54 | 55 | /** 56 | * 设置:内容 57 | */ 58 | 59 | public void setContent(String content) { 60 | this.content = content; 61 | } 62 | 63 | /** 64 | * 获取:内容 65 | */ 66 | public String getContent() { 67 | return content; 68 | } 69 | 70 | } 71 | -------------------------------------------------------------------------------- /springboot-schema/src/main/java/com/entity/model/XuelixinxiModel.java: -------------------------------------------------------------------------------- 1 | package com.entity.model; 2 | 3 | import com.entity.XuelixinxiEntity; 4 | 5 | import com.baomidou.mybatisplus.annotations.TableName; 6 | import java.util.Date; 7 | import org.springframework.format.annotation.DateTimeFormat; 8 | 9 | import com.fasterxml.jackson.annotation.JsonFormat; 10 | import java.io.Serializable; 11 | 12 | 13 | /** 14 | * 学历信息 15 | * 接收传参的实体类 16 | *(实际开发中配合移动端接口开发手动去掉些没用的字段, 后端一般用entity就够用了) 17 | * 取自ModelAndView 的model名称 18 | * @author 19 | * @email 20 | * @date 2020-05-13 10:02:23 21 | */ 22 | public class XuelixinxiModel implements Serializable { 23 | private static final long serialVersionUID = 1L; 24 | 25 | 26 | } 27 | -------------------------------------------------------------------------------- /springboot-schema/src/main/java/com/entity/view/DiscussqiuzhizhexinxiView.java: -------------------------------------------------------------------------------- 1 | package com.entity.view; 2 | 3 | import com.entity.DiscussqiuzhizhexinxiEntity; 4 | 5 | import com.baomidou.mybatisplus.annotations.TableName; 6 | import org.apache.commons.beanutils.BeanUtils; 7 | import java.lang.reflect.InvocationTargetException; 8 | 9 | import java.io.Serializable; 10 | 11 | 12 | /** 13 | * 求职者信息评论表 14 | * 后端返回视图实体辅助类 15 | * (通常后端关联的表或者自定义的字段需要返回使用) 16 | * @author 17 | * @email 18 | * @date 2020-05-13 10:02:23 19 | */ 20 | @TableName("discussqiuzhizhexinxi") 21 | public class DiscussqiuzhizhexinxiView extends DiscussqiuzhizhexinxiEntity implements Serializable { 22 | private static final long serialVersionUID = 1L; 23 | 24 | public DiscussqiuzhizhexinxiView(){ 25 | } 26 | 27 | public DiscussqiuzhizhexinxiView(DiscussqiuzhizhexinxiEntity discussqiuzhizhexinxiEntity){ 28 | try { 29 | BeanUtils.copyProperties(this, discussqiuzhizhexinxiEntity); 30 | } catch (IllegalAccessException | InvocationTargetException e) { 31 | // TODO Auto-generated catch block 32 | e.printStackTrace(); 33 | } 34 | 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /springboot-schema/src/main/java/com/entity/view/DiscusszhaopinxinxiView.java: -------------------------------------------------------------------------------- 1 | package com.entity.view; 2 | 3 | import com.entity.DiscusszhaopinxinxiEntity; 4 | 5 | import com.baomidou.mybatisplus.annotations.TableName; 6 | import org.apache.commons.beanutils.BeanUtils; 7 | import java.lang.reflect.InvocationTargetException; 8 | 9 | import java.io.Serializable; 10 | 11 | 12 | /** 13 | * 招聘信息评论表 14 | * 后端返回视图实体辅助类 15 | * (通常后端关联的表或者自定义的字段需要返回使用) 16 | * @author 17 | * @email 18 | * @date 2020-05-13 10:02:23 19 | */ 20 | @TableName("discusszhaopinxinxi") 21 | public class DiscusszhaopinxinxiView extends DiscusszhaopinxinxiEntity implements Serializable { 22 | private static final long serialVersionUID = 1L; 23 | 24 | public DiscusszhaopinxinxiView(){ 25 | } 26 | 27 | public DiscusszhaopinxinxiView(DiscusszhaopinxinxiEntity discusszhaopinxinxiEntity){ 28 | try { 29 | BeanUtils.copyProperties(this, discusszhaopinxinxiEntity); 30 | } catch (IllegalAccessException | InvocationTargetException e) { 31 | // TODO Auto-generated catch block 32 | e.printStackTrace(); 33 | } 34 | 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /springboot-schema/src/main/java/com/entity/view/GangweifenleiView.java: -------------------------------------------------------------------------------- 1 | package com.entity.view; 2 | 3 | import com.entity.GangweifenleiEntity; 4 | 5 | import com.baomidou.mybatisplus.annotations.TableName; 6 | import org.apache.commons.beanutils.BeanUtils; 7 | import java.lang.reflect.InvocationTargetException; 8 | 9 | import java.io.Serializable; 10 | 11 | 12 | /** 13 | * 岗位分类 14 | * 后端返回视图实体辅助类 15 | * (通常后端关联的表或者自定义的字段需要返回使用) 16 | * @author 17 | * @email 18 | * @date 2020-05-13 10:02:23 19 | */ 20 | @TableName("gangweifenlei") 21 | public class GangweifenleiView extends GangweifenleiEntity implements Serializable { 22 | private static final long serialVersionUID = 1L; 23 | 24 | public GangweifenleiView(){ 25 | } 26 | 27 | public GangweifenleiView(GangweifenleiEntity gangweifenleiEntity){ 28 | try { 29 | BeanUtils.copyProperties(this, gangweifenleiEntity); 30 | } catch (IllegalAccessException | InvocationTargetException e) { 31 | // TODO Auto-generated catch block 32 | e.printStackTrace(); 33 | } 34 | 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /springboot-schema/src/main/java/com/entity/view/MessagesView.java: -------------------------------------------------------------------------------- 1 | package com.entity.view; 2 | 3 | import com.entity.MessagesEntity; 4 | 5 | import com.baomidou.mybatisplus.annotations.TableName; 6 | import org.apache.commons.beanutils.BeanUtils; 7 | import java.lang.reflect.InvocationTargetException; 8 | 9 | import java.io.Serializable; 10 | 11 | 12 | /** 13 | * 留言板 14 | * 后端返回视图实体辅助类 15 | * (通常后端关联的表或者自定义的字段需要返回使用) 16 | * @author 17 | * @email 18 | * @date 2020-05-13 10:02:23 19 | */ 20 | @TableName("messages") 21 | public class MessagesView extends MessagesEntity implements Serializable { 22 | private static final long serialVersionUID = 1L; 23 | 24 | public MessagesView(){ 25 | } 26 | 27 | public MessagesView(MessagesEntity messagesEntity){ 28 | try { 29 | BeanUtils.copyProperties(this, messagesEntity); 30 | } catch (IllegalAccessException | InvocationTargetException e) { 31 | // TODO Auto-generated catch block 32 | e.printStackTrace(); 33 | } 34 | 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /springboot-schema/src/main/java/com/entity/view/NewsView.java: -------------------------------------------------------------------------------- 1 | package com.entity.view; 2 | 3 | import com.entity.NewsEntity; 4 | 5 | import com.baomidou.mybatisplus.annotations.TableName; 6 | import org.apache.commons.beanutils.BeanUtils; 7 | import java.lang.reflect.InvocationTargetException; 8 | 9 | import java.io.Serializable; 10 | 11 | 12 | /** 13 | * 新闻资讯 14 | * 后端返回视图实体辅助类 15 | * (通常后端关联的表或者自定义的字段需要返回使用) 16 | * @author 17 | * @email 18 | * @date 2020-05-13 10:02:23 19 | */ 20 | @TableName("news") 21 | public class NewsView extends NewsEntity implements Serializable { 22 | private static final long serialVersionUID = 1L; 23 | 24 | public NewsView(){ 25 | } 26 | 27 | public NewsView(NewsEntity newsEntity){ 28 | try { 29 | BeanUtils.copyProperties(this, newsEntity); 30 | } catch (IllegalAccessException | InvocationTargetException e) { 31 | // TODO Auto-generated catch block 32 | e.printStackTrace(); 33 | } 34 | 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /springboot-schema/src/main/java/com/entity/view/QiuzhizhexinxiView.java: -------------------------------------------------------------------------------- 1 | package com.entity.view; 2 | 3 | import com.entity.QiuzhizhexinxiEntity; 4 | 5 | import com.baomidou.mybatisplus.annotations.TableName; 6 | import org.apache.commons.beanutils.BeanUtils; 7 | import java.lang.reflect.InvocationTargetException; 8 | 9 | import java.io.Serializable; 10 | 11 | 12 | /** 13 | * 求职者信息 14 | * 后端返回视图实体辅助类 15 | * (通常后端关联的表或者自定义的字段需要返回使用) 16 | * @author 17 | * @email 18 | * @date 2020-05-13 10:02:23 19 | */ 20 | @TableName("qiuzhizhexinxi") 21 | public class QiuzhizhexinxiView extends QiuzhizhexinxiEntity implements Serializable { 22 | private static final long serialVersionUID = 1L; 23 | 24 | public QiuzhizhexinxiView(){ 25 | } 26 | 27 | public QiuzhizhexinxiView(QiuzhizhexinxiEntity qiuzhizhexinxiEntity){ 28 | try { 29 | BeanUtils.copyProperties(this, qiuzhizhexinxiEntity); 30 | } catch (IllegalAccessException | InvocationTargetException e) { 31 | // TODO Auto-generated catch block 32 | e.printStackTrace(); 33 | } 34 | 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /springboot-schema/src/main/java/com/entity/view/QiyexinxiView.java: -------------------------------------------------------------------------------- 1 | package com.entity.view; 2 | 3 | import com.entity.QiyexinxiEntity; 4 | 5 | import com.baomidou.mybatisplus.annotations.TableName; 6 | import org.apache.commons.beanutils.BeanUtils; 7 | import java.lang.reflect.InvocationTargetException; 8 | 9 | import java.io.Serializable; 10 | 11 | 12 | /** 13 | * 企业信息 14 | * 后端返回视图实体辅助类 15 | * (通常后端关联的表或者自定义的字段需要返回使用) 16 | * @author 17 | * @email 18 | * @date 2020-05-13 10:02:22 19 | */ 20 | @TableName("qiyexinxi") 21 | public class QiyexinxiView extends QiyexinxiEntity implements Serializable { 22 | private static final long serialVersionUID = 1L; 23 | 24 | public QiyexinxiView(){ 25 | } 26 | 27 | public QiyexinxiView(QiyexinxiEntity qiyexinxiEntity){ 28 | try { 29 | BeanUtils.copyProperties(this, qiyexinxiEntity); 30 | } catch (IllegalAccessException | InvocationTargetException e) { 31 | // TODO Auto-generated catch block 32 | e.printStackTrace(); 33 | } 34 | 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /springboot-schema/src/main/java/com/entity/view/StoreupView.java: -------------------------------------------------------------------------------- 1 | package com.entity.view; 2 | 3 | import com.entity.StoreupEntity; 4 | 5 | import com.baomidou.mybatisplus.annotations.TableName; 6 | import org.apache.commons.beanutils.BeanUtils; 7 | import java.lang.reflect.InvocationTargetException; 8 | 9 | import java.io.Serializable; 10 | 11 | 12 | /** 13 | * 收藏表 14 | * 后端返回视图实体辅助类 15 | * (通常后端关联的表或者自定义的字段需要返回使用) 16 | * @author 17 | * @email 18 | * @date 2020-05-13 10:02:23 19 | */ 20 | @TableName("storeup") 21 | public class StoreupView extends StoreupEntity implements Serializable { 22 | private static final long serialVersionUID = 1L; 23 | 24 | public StoreupView(){ 25 | } 26 | 27 | public StoreupView(StoreupEntity storeupEntity){ 28 | try { 29 | BeanUtils.copyProperties(this, storeupEntity); 30 | } catch (IllegalAccessException | InvocationTargetException e) { 31 | // TODO Auto-generated catch block 32 | e.printStackTrace(); 33 | } 34 | 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /springboot-schema/src/main/java/com/entity/view/XuelixinxiView.java: -------------------------------------------------------------------------------- 1 | package com.entity.view; 2 | 3 | import com.entity.XuelixinxiEntity; 4 | 5 | import com.baomidou.mybatisplus.annotations.TableName; 6 | import org.apache.commons.beanutils.BeanUtils; 7 | import java.lang.reflect.InvocationTargetException; 8 | 9 | import java.io.Serializable; 10 | 11 | 12 | /** 13 | * 学历信息 14 | * 后端返回视图实体辅助类 15 | * (通常后端关联的表或者自定义的字段需要返回使用) 16 | * @author 17 | * @email 18 | * @date 2020-05-13 10:02:23 19 | */ 20 | @TableName("xuelixinxi") 21 | public class XuelixinxiView extends XuelixinxiEntity implements Serializable { 22 | private static final long serialVersionUID = 1L; 23 | 24 | public XuelixinxiView(){ 25 | } 26 | 27 | public XuelixinxiView(XuelixinxiEntity xuelixinxiEntity){ 28 | try { 29 | BeanUtils.copyProperties(this, xuelixinxiEntity); 30 | } catch (IllegalAccessException | InvocationTargetException e) { 31 | // TODO Auto-generated catch block 32 | e.printStackTrace(); 33 | } 34 | 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /springboot-schema/src/main/java/com/entity/view/YingpinxinxiView.java: -------------------------------------------------------------------------------- 1 | package com.entity.view; 2 | 3 | import com.entity.YingpinxinxiEntity; 4 | 5 | import com.baomidou.mybatisplus.annotations.TableName; 6 | import org.apache.commons.beanutils.BeanUtils; 7 | import java.lang.reflect.InvocationTargetException; 8 | 9 | import java.io.Serializable; 10 | 11 | 12 | /** 13 | * 应聘信息 14 | * 后端返回视图实体辅助类 15 | * (通常后端关联的表或者自定义的字段需要返回使用) 16 | * @author 17 | * @email 18 | * @date 2020-05-13 10:02:23 19 | */ 20 | @TableName("yingpinxinxi") 21 | public class YingpinxinxiView extends YingpinxinxiEntity implements Serializable { 22 | private static final long serialVersionUID = 1L; 23 | 24 | public YingpinxinxiView(){ 25 | } 26 | 27 | public YingpinxinxiView(YingpinxinxiEntity yingpinxinxiEntity){ 28 | try { 29 | BeanUtils.copyProperties(this, yingpinxinxiEntity); 30 | } catch (IllegalAccessException | InvocationTargetException e) { 31 | // TODO Auto-generated catch block 32 | e.printStackTrace(); 33 | } 34 | 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /springboot-schema/src/main/java/com/entity/view/YonghuView.java: -------------------------------------------------------------------------------- 1 | package com.entity.view; 2 | 3 | import com.entity.YonghuEntity; 4 | 5 | import com.baomidou.mybatisplus.annotations.TableName; 6 | import org.apache.commons.beanutils.BeanUtils; 7 | import java.lang.reflect.InvocationTargetException; 8 | 9 | import java.io.Serializable; 10 | 11 | 12 | /** 13 | * 用户 14 | * 后端返回视图实体辅助类 15 | * (通常后端关联的表或者自定义的字段需要返回使用) 16 | * @author 17 | * @email 18 | * @date 2020-05-13 10:02:22 19 | */ 20 | @TableName("yonghu") 21 | public class YonghuView extends YonghuEntity implements Serializable { 22 | private static final long serialVersionUID = 1L; 23 | 24 | public YonghuView(){ 25 | } 26 | 27 | public YonghuView(YonghuEntity yonghuEntity){ 28 | try { 29 | BeanUtils.copyProperties(this, yonghuEntity); 30 | } catch (IllegalAccessException | InvocationTargetException e) { 31 | // TODO Auto-generated catch block 32 | e.printStackTrace(); 33 | } 34 | 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /springboot-schema/src/main/java/com/entity/view/YouqinglianjieView.java: -------------------------------------------------------------------------------- 1 | package com.entity.view; 2 | 3 | import com.entity.YouqinglianjieEntity; 4 | 5 | import com.baomidou.mybatisplus.annotations.TableName; 6 | import org.apache.commons.beanutils.BeanUtils; 7 | import java.lang.reflect.InvocationTargetException; 8 | 9 | import java.io.Serializable; 10 | 11 | 12 | /** 13 | * 友情链接 14 | * 后端返回视图实体辅助类 15 | * (通常后端关联的表或者自定义的字段需要返回使用) 16 | * @author 17 | * @email 18 | * @date 2020-05-13 10:02:23 19 | */ 20 | @TableName("youqinglianjie") 21 | public class YouqinglianjieView extends YouqinglianjieEntity implements Serializable { 22 | private static final long serialVersionUID = 1L; 23 | 24 | public YouqinglianjieView(){ 25 | } 26 | 27 | public YouqinglianjieView(YouqinglianjieEntity youqinglianjieEntity){ 28 | try { 29 | BeanUtils.copyProperties(this, youqinglianjieEntity); 30 | } catch (IllegalAccessException | InvocationTargetException e) { 31 | // TODO Auto-generated catch block 32 | e.printStackTrace(); 33 | } 34 | 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /springboot-schema/src/main/java/com/entity/view/ZhaopinxinxiView.java: -------------------------------------------------------------------------------- 1 | package com.entity.view; 2 | 3 | import com.entity.ZhaopinxinxiEntity; 4 | 5 | import com.baomidou.mybatisplus.annotations.TableName; 6 | import org.apache.commons.beanutils.BeanUtils; 7 | import java.lang.reflect.InvocationTargetException; 8 | 9 | import java.io.Serializable; 10 | 11 | 12 | /** 13 | * 招聘信息 14 | * 后端返回视图实体辅助类 15 | * (通常后端关联的表或者自定义的字段需要返回使用) 16 | * @author 17 | * @email 18 | * @date 2020-05-13 10:02:22 19 | */ 20 | @TableName("zhaopinxinxi") 21 | public class ZhaopinxinxiView extends ZhaopinxinxiEntity implements Serializable { 22 | private static final long serialVersionUID = 1L; 23 | 24 | public ZhaopinxinxiView(){ 25 | } 26 | 27 | public ZhaopinxinxiView(ZhaopinxinxiEntity zhaopinxinxiEntity){ 28 | try { 29 | BeanUtils.copyProperties(this, zhaopinxinxiEntity); 30 | } catch (IllegalAccessException | InvocationTargetException e) { 31 | // TODO Auto-generated catch block 32 | e.printStackTrace(); 33 | } 34 | 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /springboot-schema/src/main/java/com/entity/vo/DiscussqiuzhizhexinxiVO.java: -------------------------------------------------------------------------------- 1 | package com.entity.vo; 2 | 3 | import com.entity.DiscussqiuzhizhexinxiEntity; 4 | 5 | import com.baomidou.mybatisplus.annotations.TableName; 6 | import java.util.Date; 7 | import org.springframework.format.annotation.DateTimeFormat; 8 | 9 | import com.fasterxml.jackson.annotation.JsonFormat; 10 | import java.io.Serializable; 11 | 12 | 13 | /** 14 | * 求职者信息评论表 15 | * 手机端接口返回实体辅助类 16 | * (主要作用去除一些不必要的字段) 17 | * @author 18 | * @email 19 | * @date 2020-05-13 10:02:23 20 | */ 21 | public class DiscussqiuzhizhexinxiVO implements Serializable { 22 | private static final long serialVersionUID = 1L; 23 | 24 | 25 | /** 26 | * 评论内容 27 | */ 28 | 29 | private String content; 30 | 31 | /** 32 | * 用户id 33 | */ 34 | 35 | private Long userid; 36 | 37 | 38 | /** 39 | * 设置:评论内容 40 | */ 41 | 42 | public void setContent(String content) { 43 | this.content = content; 44 | } 45 | 46 | /** 47 | * 获取:评论内容 48 | */ 49 | public String getContent() { 50 | return content; 51 | } 52 | 53 | 54 | /** 55 | * 设置:用户id 56 | */ 57 | 58 | public void setUserid(Long userid) { 59 | this.userid = userid; 60 | } 61 | 62 | /** 63 | * 获取:用户id 64 | */ 65 | public Long getUserid() { 66 | return userid; 67 | } 68 | 69 | } 70 | -------------------------------------------------------------------------------- /springboot-schema/src/main/java/com/entity/vo/DiscusszhaopinxinxiVO.java: -------------------------------------------------------------------------------- 1 | package com.entity.vo; 2 | 3 | import com.entity.DiscusszhaopinxinxiEntity; 4 | 5 | import com.baomidou.mybatisplus.annotations.TableName; 6 | import java.util.Date; 7 | import org.springframework.format.annotation.DateTimeFormat; 8 | 9 | import com.fasterxml.jackson.annotation.JsonFormat; 10 | import java.io.Serializable; 11 | 12 | 13 | /** 14 | * 招聘信息评论表 15 | * 手机端接口返回实体辅助类 16 | * (主要作用去除一些不必要的字段) 17 | * @author 18 | * @email 19 | * @date 2020-05-13 10:02:23 20 | */ 21 | public class DiscusszhaopinxinxiVO implements Serializable { 22 | private static final long serialVersionUID = 1L; 23 | 24 | 25 | /** 26 | * 评论内容 27 | */ 28 | 29 | private String content; 30 | 31 | /** 32 | * 用户id 33 | */ 34 | 35 | private Long userid; 36 | 37 | 38 | /** 39 | * 设置:评论内容 40 | */ 41 | 42 | public void setContent(String content) { 43 | this.content = content; 44 | } 45 | 46 | /** 47 | * 获取:评论内容 48 | */ 49 | public String getContent() { 50 | return content; 51 | } 52 | 53 | 54 | /** 55 | * 设置:用户id 56 | */ 57 | 58 | public void setUserid(Long userid) { 59 | this.userid = userid; 60 | } 61 | 62 | /** 63 | * 获取:用户id 64 | */ 65 | public Long getUserid() { 66 | return userid; 67 | } 68 | 69 | } 70 | -------------------------------------------------------------------------------- /springboot-schema/src/main/java/com/entity/vo/GangweifenleiVO.java: -------------------------------------------------------------------------------- 1 | package com.entity.vo; 2 | 3 | import com.entity.GangweifenleiEntity; 4 | 5 | import com.baomidou.mybatisplus.annotations.TableName; 6 | import java.util.Date; 7 | import org.springframework.format.annotation.DateTimeFormat; 8 | 9 | import com.fasterxml.jackson.annotation.JsonFormat; 10 | import java.io.Serializable; 11 | 12 | 13 | /** 14 | * 岗位分类 15 | * 手机端接口返回实体辅助类 16 | * (主要作用去除一些不必要的字段) 17 | * @author 18 | * @email 19 | * @date 2020-05-13 10:02:23 20 | */ 21 | public class GangweifenleiVO implements Serializable { 22 | private static final long serialVersionUID = 1L; 23 | 24 | 25 | } 26 | -------------------------------------------------------------------------------- /springboot-schema/src/main/java/com/entity/vo/MessagesVO.java: -------------------------------------------------------------------------------- 1 | package com.entity.vo; 2 | 3 | import com.entity.MessagesEntity; 4 | 5 | import com.baomidou.mybatisplus.annotations.TableName; 6 | import java.util.Date; 7 | import org.springframework.format.annotation.DateTimeFormat; 8 | 9 | import com.fasterxml.jackson.annotation.JsonFormat; 10 | import java.io.Serializable; 11 | 12 | 13 | /** 14 | * 留言板 15 | * 手机端接口返回实体辅助类 16 | * (主要作用去除一些不必要的字段) 17 | * @author 18 | * @email 19 | * @date 2020-05-13 10:02:23 20 | */ 21 | public class MessagesVO implements Serializable { 22 | private static final long serialVersionUID = 1L; 23 | 24 | 25 | /** 26 | * 留言人id 27 | */ 28 | 29 | private Long userid; 30 | 31 | 32 | /** 33 | * 设置:留言人id 34 | */ 35 | 36 | public void setUserid(Long userid) { 37 | this.userid = userid; 38 | } 39 | 40 | /** 41 | * 获取:留言人id 42 | */ 43 | public Long getUserid() { 44 | return userid; 45 | } 46 | 47 | } 48 | -------------------------------------------------------------------------------- /springboot-schema/src/main/java/com/entity/vo/NewsVO.java: -------------------------------------------------------------------------------- 1 | package com.entity.vo; 2 | 3 | import com.entity.NewsEntity; 4 | 5 | import com.baomidou.mybatisplus.annotations.TableName; 6 | import java.util.Date; 7 | import org.springframework.format.annotation.DateTimeFormat; 8 | 9 | import com.fasterxml.jackson.annotation.JsonFormat; 10 | import java.io.Serializable; 11 | 12 | 13 | /** 14 | * 新闻资讯 15 | * 手机端接口返回实体辅助类 16 | * (主要作用去除一些不必要的字段) 17 | * @author 18 | * @email 19 | * @date 2020-05-13 10:02:23 20 | */ 21 | public class NewsVO implements Serializable { 22 | private static final long serialVersionUID = 1L; 23 | 24 | 25 | /** 26 | * 图片 27 | */ 28 | 29 | private String picture; 30 | 31 | /** 32 | * 内容 33 | */ 34 | 35 | private String content; 36 | 37 | 38 | /** 39 | * 设置:图片 40 | */ 41 | 42 | public void setPicture(String picture) { 43 | this.picture = picture; 44 | } 45 | 46 | /** 47 | * 获取:图片 48 | */ 49 | public String getPicture() { 50 | return picture; 51 | } 52 | 53 | 54 | /** 55 | * 设置:内容 56 | */ 57 | 58 | public void setContent(String content) { 59 | this.content = content; 60 | } 61 | 62 | /** 63 | * 获取:内容 64 | */ 65 | public String getContent() { 66 | return content; 67 | } 68 | 69 | } 70 | -------------------------------------------------------------------------------- /springboot-schema/src/main/java/com/entity/vo/XuelixinxiVO.java: -------------------------------------------------------------------------------- 1 | package com.entity.vo; 2 | 3 | import com.entity.XuelixinxiEntity; 4 | 5 | import com.baomidou.mybatisplus.annotations.TableName; 6 | import java.util.Date; 7 | import org.springframework.format.annotation.DateTimeFormat; 8 | 9 | import com.fasterxml.jackson.annotation.JsonFormat; 10 | import java.io.Serializable; 11 | 12 | 13 | /** 14 | * 学历信息 15 | * 手机端接口返回实体辅助类 16 | * (主要作用去除一些不必要的字段) 17 | * @author 18 | * @email 19 | * @date 2020-05-13 10:02:23 20 | */ 21 | public class XuelixinxiVO implements Serializable { 22 | private static final long serialVersionUID = 1L; 23 | 24 | 25 | } 26 | -------------------------------------------------------------------------------- /springboot-schema/src/main/java/com/service/CommonService.java: -------------------------------------------------------------------------------- 1 | package com.service; 2 | 3 | import java.util.List; 4 | import java.util.Map; 5 | 6 | public interface CommonService { 7 | List getOption(Map params); 8 | 9 | Map getFollowByOption(Map params); 10 | 11 | void sh(Map params); 12 | 13 | int remindCount(Map params); 14 | 15 | Map selectCal(Map params); 16 | 17 | List> selectGroup(Map params); 18 | 19 | List> selectValue(Map params); 20 | } 21 | -------------------------------------------------------------------------------- /springboot-schema/src/main/java/com/service/ConfigService.java: -------------------------------------------------------------------------------- 1 | 2 | package com.service; 3 | 4 | import java.util.Map; 5 | 6 | import com.baomidou.mybatisplus.service.IService; 7 | import com.entity.ConfigEntity; 8 | import com.utils.PageUtils; 9 | 10 | 11 | /** 12 | * 系统用户 13 | * @author yangliyuan 14 | * @date 2019年10月10日 上午9:18:20 15 | */ 16 | public interface ConfigService extends IService { 17 | PageUtils queryPage(Map params); 18 | } 19 | -------------------------------------------------------------------------------- /springboot-schema/src/main/java/com/service/DiscussqiuzhizhexinxiService.java: -------------------------------------------------------------------------------- 1 | package com.service; 2 | 3 | import com.baomidou.mybatisplus.mapper.Wrapper; 4 | import com.baomidou.mybatisplus.service.IService; 5 | import com.utils.PageUtils; 6 | import com.entity.DiscussqiuzhizhexinxiEntity; 7 | import java.util.List; 8 | import java.util.Map; 9 | import com.entity.vo.DiscussqiuzhizhexinxiVO; 10 | import org.apache.ibatis.annotations.Param; 11 | import com.entity.view.DiscussqiuzhizhexinxiView; 12 | 13 | 14 | /** 15 | * 求职者信息评论表 16 | * 17 | * @author 18 | * @email 19 | * @date 2020-05-13 10:02:23 20 | */ 21 | public interface DiscussqiuzhizhexinxiService extends IService { 22 | 23 | PageUtils queryPage(Map params); 24 | 25 | List selectListVO(Wrapper wrapper); 26 | 27 | DiscussqiuzhizhexinxiVO selectVO(@Param("ew") Wrapper wrapper); 28 | 29 | List selectListView(Wrapper wrapper); 30 | 31 | DiscussqiuzhizhexinxiView selectView(@Param("ew") Wrapper wrapper); 32 | 33 | PageUtils queryPage(Map params,Wrapper wrapper); 34 | } 35 | 36 | -------------------------------------------------------------------------------- /springboot-schema/src/main/java/com/service/DiscusszhaopinxinxiService.java: -------------------------------------------------------------------------------- 1 | package com.service; 2 | 3 | import com.baomidou.mybatisplus.mapper.Wrapper; 4 | import com.baomidou.mybatisplus.service.IService; 5 | import com.utils.PageUtils; 6 | import com.entity.DiscusszhaopinxinxiEntity; 7 | import java.util.List; 8 | import java.util.Map; 9 | import com.entity.vo.DiscusszhaopinxinxiVO; 10 | import org.apache.ibatis.annotations.Param; 11 | import com.entity.view.DiscusszhaopinxinxiView; 12 | 13 | 14 | /** 15 | * 招聘信息评论表 16 | * 17 | * @author 18 | * @email 19 | * @date 2020-05-13 10:02:23 20 | */ 21 | public interface DiscusszhaopinxinxiService extends IService { 22 | 23 | PageUtils queryPage(Map params); 24 | 25 | List selectListVO(Wrapper wrapper); 26 | 27 | DiscusszhaopinxinxiVO selectVO(@Param("ew") Wrapper wrapper); 28 | 29 | List selectListView(Wrapper wrapper); 30 | 31 | DiscusszhaopinxinxiView selectView(@Param("ew") Wrapper wrapper); 32 | 33 | PageUtils queryPage(Map params,Wrapper wrapper); 34 | } 35 | 36 | -------------------------------------------------------------------------------- /springboot-schema/src/main/java/com/service/GangweifenleiService.java: -------------------------------------------------------------------------------- 1 | package com.service; 2 | 3 | import com.baomidou.mybatisplus.mapper.Wrapper; 4 | import com.baomidou.mybatisplus.service.IService; 5 | import com.utils.PageUtils; 6 | import com.entity.GangweifenleiEntity; 7 | import java.util.List; 8 | import java.util.Map; 9 | import com.entity.vo.GangweifenleiVO; 10 | import org.apache.ibatis.annotations.Param; 11 | import com.entity.view.GangweifenleiView; 12 | 13 | 14 | /** 15 | * 岗位分类 16 | * 17 | * @author 18 | * @email 19 | * @date 2020-05-13 10:02:23 20 | */ 21 | public interface GangweifenleiService extends IService { 22 | 23 | PageUtils queryPage(Map params); 24 | 25 | List selectListVO(Wrapper wrapper); 26 | 27 | GangweifenleiVO selectVO(@Param("ew") Wrapper wrapper); 28 | 29 | List selectListView(Wrapper wrapper); 30 | 31 | GangweifenleiView selectView(@Param("ew") Wrapper wrapper); 32 | 33 | PageUtils queryPage(Map params,Wrapper wrapper); 34 | } 35 | 36 | -------------------------------------------------------------------------------- /springboot-schema/src/main/java/com/service/MessagesService.java: -------------------------------------------------------------------------------- 1 | package com.service; 2 | 3 | import com.baomidou.mybatisplus.mapper.Wrapper; 4 | import com.baomidou.mybatisplus.service.IService; 5 | import com.utils.PageUtils; 6 | import com.entity.MessagesEntity; 7 | import java.util.List; 8 | import java.util.Map; 9 | import com.entity.vo.MessagesVO; 10 | import org.apache.ibatis.annotations.Param; 11 | import com.entity.view.MessagesView; 12 | 13 | 14 | /** 15 | * 留言板 16 | * 17 | * @author 18 | * @email 19 | * @date 2020-05-13 10:02:23 20 | */ 21 | public interface MessagesService extends IService { 22 | 23 | PageUtils queryPage(Map params); 24 | 25 | List selectListVO(Wrapper wrapper); 26 | 27 | MessagesVO selectVO(@Param("ew") Wrapper wrapper); 28 | 29 | List selectListView(Wrapper wrapper); 30 | 31 | MessagesView selectView(@Param("ew") Wrapper wrapper); 32 | 33 | PageUtils queryPage(Map params,Wrapper wrapper); 34 | } 35 | 36 | -------------------------------------------------------------------------------- /springboot-schema/src/main/java/com/service/NewsService.java: -------------------------------------------------------------------------------- 1 | package com.service; 2 | 3 | import com.baomidou.mybatisplus.mapper.Wrapper; 4 | import com.baomidou.mybatisplus.service.IService; 5 | import com.utils.PageUtils; 6 | import com.entity.NewsEntity; 7 | import java.util.List; 8 | import java.util.Map; 9 | import com.entity.vo.NewsVO; 10 | import org.apache.ibatis.annotations.Param; 11 | import com.entity.view.NewsView; 12 | 13 | 14 | /** 15 | * 新闻资讯 16 | * 17 | * @author 18 | * @email 19 | * @date 2020-05-13 10:02:23 20 | */ 21 | public interface NewsService extends IService { 22 | 23 | PageUtils queryPage(Map params); 24 | 25 | List selectListVO(Wrapper wrapper); 26 | 27 | NewsVO selectVO(@Param("ew") Wrapper wrapper); 28 | 29 | List selectListView(Wrapper wrapper); 30 | 31 | NewsView selectView(@Param("ew") Wrapper wrapper); 32 | 33 | PageUtils queryPage(Map params,Wrapper wrapper); 34 | } 35 | 36 | -------------------------------------------------------------------------------- /springboot-schema/src/main/java/com/service/QiuzhizhexinxiService.java: -------------------------------------------------------------------------------- 1 | package com.service; 2 | 3 | import com.baomidou.mybatisplus.mapper.Wrapper; 4 | import com.baomidou.mybatisplus.service.IService; 5 | import com.utils.PageUtils; 6 | import com.entity.QiuzhizhexinxiEntity; 7 | import java.util.List; 8 | import java.util.Map; 9 | import com.entity.vo.QiuzhizhexinxiVO; 10 | import org.apache.ibatis.annotations.Param; 11 | import com.entity.view.QiuzhizhexinxiView; 12 | 13 | 14 | /** 15 | * 求职者信息 16 | * 17 | * @author 18 | * @email 19 | * @date 2020-05-13 10:02:23 20 | */ 21 | public interface QiuzhizhexinxiService extends IService { 22 | 23 | PageUtils queryPage(Map params); 24 | 25 | List selectListVO(Wrapper wrapper); 26 | 27 | QiuzhizhexinxiVO selectVO(@Param("ew") Wrapper wrapper); 28 | 29 | List selectListView(Wrapper wrapper); 30 | 31 | QiuzhizhexinxiView selectView(@Param("ew") Wrapper wrapper); 32 | 33 | PageUtils queryPage(Map params,Wrapper wrapper); 34 | } 35 | 36 | -------------------------------------------------------------------------------- /springboot-schema/src/main/java/com/service/QiyexinxiService.java: -------------------------------------------------------------------------------- 1 | package com.service; 2 | 3 | import com.baomidou.mybatisplus.mapper.Wrapper; 4 | import com.baomidou.mybatisplus.service.IService; 5 | import com.utils.PageUtils; 6 | import com.entity.QiyexinxiEntity; 7 | import java.util.List; 8 | import java.util.Map; 9 | import com.entity.vo.QiyexinxiVO; 10 | import org.apache.ibatis.annotations.Param; 11 | import com.entity.view.QiyexinxiView; 12 | 13 | 14 | /** 15 | * 企业信息 16 | * 17 | * @author 18 | * @email 19 | * @date 2020-05-13 10:02:22 20 | */ 21 | public interface QiyexinxiService extends IService { 22 | 23 | PageUtils queryPage(Map params); 24 | 25 | List selectListVO(Wrapper wrapper); 26 | 27 | QiyexinxiVO selectVO(@Param("ew") Wrapper wrapper); 28 | 29 | List selectListView(Wrapper wrapper); 30 | 31 | QiyexinxiView selectView(@Param("ew") Wrapper wrapper); 32 | 33 | PageUtils queryPage(Map params,Wrapper wrapper); 34 | } 35 | 36 | -------------------------------------------------------------------------------- /springboot-schema/src/main/java/com/service/StoreupService.java: -------------------------------------------------------------------------------- 1 | package com.service; 2 | 3 | import com.baomidou.mybatisplus.mapper.Wrapper; 4 | import com.baomidou.mybatisplus.service.IService; 5 | import com.utils.PageUtils; 6 | import com.entity.StoreupEntity; 7 | import java.util.List; 8 | import java.util.Map; 9 | import com.entity.vo.StoreupVO; 10 | import org.apache.ibatis.annotations.Param; 11 | import com.entity.view.StoreupView; 12 | 13 | 14 | /** 15 | * 收藏表 16 | * 17 | * @author 18 | * @email 19 | * @date 2020-05-13 10:02:23 20 | */ 21 | public interface StoreupService extends IService { 22 | 23 | PageUtils queryPage(Map params); 24 | 25 | List selectListVO(Wrapper wrapper); 26 | 27 | StoreupVO selectVO(@Param("ew") Wrapper wrapper); 28 | 29 | List selectListView(Wrapper wrapper); 30 | 31 | StoreupView selectView(@Param("ew") Wrapper wrapper); 32 | 33 | PageUtils queryPage(Map params,Wrapper wrapper); 34 | } 35 | 36 | -------------------------------------------------------------------------------- /springboot-schema/src/main/java/com/service/TokenService.java: -------------------------------------------------------------------------------- 1 | 2 | package com.service; 3 | 4 | import java.util.List; 5 | import java.util.Map; 6 | 7 | import com.baomidou.mybatisplus.mapper.Wrapper; 8 | import com.baomidou.mybatisplus.service.IService; 9 | import com.entity.TokenEntity; 10 | import com.utils.PageUtils; 11 | 12 | 13 | /** 14 | * token 15 | * @author yangliyuan 16 | * @date 2019年10月10日 上午9:18:20 17 | */ 18 | public interface TokenService extends IService { 19 | PageUtils queryPage(Map params); 20 | 21 | List selectListView(Wrapper wrapper); 22 | 23 | PageUtils queryPage(Map params,Wrapper wrapper); 24 | 25 | String generateToken(Long userid,String username,String tableName, String role); 26 | 27 | TokenEntity getTokenEntity(String token); 28 | } 29 | -------------------------------------------------------------------------------- /springboot-schema/src/main/java/com/service/UserService.java: -------------------------------------------------------------------------------- 1 | 2 | package com.service; 3 | 4 | import java.util.List; 5 | import java.util.Map; 6 | 7 | import org.apache.ibatis.annotations.Param; 8 | 9 | import com.baomidou.mybatisplus.mapper.Wrapper; 10 | import com.baomidou.mybatisplus.service.IService; 11 | import com.entity.UserEntity; 12 | import com.utils.PageUtils; 13 | 14 | 15 | /** 16 | * 系统用户 17 | * @author yangliyuan 18 | * @date 2019年10月10日 上午9:18:20 19 | */ 20 | public interface UserService extends IService { 21 | PageUtils queryPage(Map params); 22 | 23 | List selectListView(Wrapper wrapper); 24 | 25 | PageUtils queryPage(Map params,Wrapper wrapper); 26 | 27 | } 28 | -------------------------------------------------------------------------------- /springboot-schema/src/main/java/com/service/XuelixinxiService.java: -------------------------------------------------------------------------------- 1 | package com.service; 2 | 3 | import com.baomidou.mybatisplus.mapper.Wrapper; 4 | import com.baomidou.mybatisplus.service.IService; 5 | import com.utils.PageUtils; 6 | import com.entity.XuelixinxiEntity; 7 | import java.util.List; 8 | import java.util.Map; 9 | import com.entity.vo.XuelixinxiVO; 10 | import org.apache.ibatis.annotations.Param; 11 | import com.entity.view.XuelixinxiView; 12 | 13 | 14 | /** 15 | * 学历信息 16 | * 17 | * @author 18 | * @email 19 | * @date 2020-05-13 10:02:23 20 | */ 21 | public interface XuelixinxiService extends IService { 22 | 23 | PageUtils queryPage(Map params); 24 | 25 | List selectListVO(Wrapper wrapper); 26 | 27 | XuelixinxiVO selectVO(@Param("ew") Wrapper wrapper); 28 | 29 | List selectListView(Wrapper wrapper); 30 | 31 | XuelixinxiView selectView(@Param("ew") Wrapper wrapper); 32 | 33 | PageUtils queryPage(Map params,Wrapper wrapper); 34 | } 35 | 36 | -------------------------------------------------------------------------------- /springboot-schema/src/main/java/com/service/YingpinxinxiService.java: -------------------------------------------------------------------------------- 1 | package com.service; 2 | 3 | import com.baomidou.mybatisplus.mapper.Wrapper; 4 | import com.baomidou.mybatisplus.service.IService; 5 | import com.utils.PageUtils; 6 | import com.entity.YingpinxinxiEntity; 7 | import java.util.List; 8 | import java.util.Map; 9 | import com.entity.vo.YingpinxinxiVO; 10 | import org.apache.ibatis.annotations.Param; 11 | import com.entity.view.YingpinxinxiView; 12 | 13 | 14 | /** 15 | * 应聘信息 16 | * 17 | * @author 18 | * @email 19 | * @date 2020-05-13 10:02:23 20 | */ 21 | public interface YingpinxinxiService extends IService { 22 | 23 | PageUtils queryPage(Map params); 24 | 25 | List selectListVO(Wrapper wrapper); 26 | 27 | YingpinxinxiVO selectVO(@Param("ew") Wrapper wrapper); 28 | 29 | List selectListView(Wrapper wrapper); 30 | 31 | YingpinxinxiView selectView(@Param("ew") Wrapper wrapper); 32 | 33 | PageUtils queryPage(Map params,Wrapper wrapper); 34 | } 35 | 36 | -------------------------------------------------------------------------------- /springboot-schema/src/main/java/com/service/YonghuService.java: -------------------------------------------------------------------------------- 1 | package com.service; 2 | 3 | import com.baomidou.mybatisplus.mapper.Wrapper; 4 | import com.baomidou.mybatisplus.service.IService; 5 | import com.utils.PageUtils; 6 | import com.entity.YonghuEntity; 7 | import java.util.List; 8 | import java.util.Map; 9 | import com.entity.vo.YonghuVO; 10 | import org.apache.ibatis.annotations.Param; 11 | import com.entity.view.YonghuView; 12 | 13 | 14 | /** 15 | * 用户 16 | * 17 | * @author 18 | * @email 19 | * @date 2020-05-13 10:02:22 20 | */ 21 | public interface YonghuService extends IService { 22 | 23 | PageUtils queryPage(Map params); 24 | 25 | List selectListVO(Wrapper wrapper); 26 | 27 | YonghuVO selectVO(@Param("ew") Wrapper wrapper); 28 | 29 | List selectListView(Wrapper wrapper); 30 | 31 | YonghuView selectView(@Param("ew") Wrapper wrapper); 32 | 33 | PageUtils queryPage(Map params,Wrapper wrapper); 34 | } 35 | 36 | -------------------------------------------------------------------------------- /springboot-schema/src/main/java/com/service/YouqinglianjieService.java: -------------------------------------------------------------------------------- 1 | package com.service; 2 | 3 | import com.baomidou.mybatisplus.mapper.Wrapper; 4 | import com.baomidou.mybatisplus.service.IService; 5 | import com.utils.PageUtils; 6 | import com.entity.YouqinglianjieEntity; 7 | import java.util.List; 8 | import java.util.Map; 9 | import com.entity.vo.YouqinglianjieVO; 10 | import org.apache.ibatis.annotations.Param; 11 | import com.entity.view.YouqinglianjieView; 12 | 13 | 14 | /** 15 | * 友情链接 16 | * 17 | * @author 18 | * @email 19 | * @date 2020-05-13 10:02:23 20 | */ 21 | public interface YouqinglianjieService extends IService { 22 | 23 | PageUtils queryPage(Map params); 24 | 25 | List selectListVO(Wrapper wrapper); 26 | 27 | YouqinglianjieVO selectVO(@Param("ew") Wrapper wrapper); 28 | 29 | List selectListView(Wrapper wrapper); 30 | 31 | YouqinglianjieView selectView(@Param("ew") Wrapper wrapper); 32 | 33 | PageUtils queryPage(Map params,Wrapper wrapper); 34 | } 35 | 36 | -------------------------------------------------------------------------------- /springboot-schema/src/main/java/com/service/ZhaopinxinxiService.java: -------------------------------------------------------------------------------- 1 | package com.service; 2 | 3 | import com.baomidou.mybatisplus.mapper.Wrapper; 4 | import com.baomidou.mybatisplus.service.IService; 5 | import com.utils.PageUtils; 6 | import com.entity.ZhaopinxinxiEntity; 7 | import java.util.List; 8 | import java.util.Map; 9 | import com.entity.vo.ZhaopinxinxiVO; 10 | import org.apache.ibatis.annotations.Param; 11 | import com.entity.view.ZhaopinxinxiView; 12 | 13 | 14 | /** 15 | * 招聘信息 16 | * 17 | * @author 18 | * @email 19 | * @date 2020-05-13 10:02:22 20 | */ 21 | public interface ZhaopinxinxiService extends IService { 22 | 23 | PageUtils queryPage(Map params); 24 | 25 | List selectListVO(Wrapper wrapper); 26 | 27 | ZhaopinxinxiVO selectVO(@Param("ew") Wrapper wrapper); 28 | 29 | List selectListView(Wrapper wrapper); 30 | 31 | ZhaopinxinxiView selectView(@Param("ew") Wrapper wrapper); 32 | 33 | PageUtils queryPage(Map params,Wrapper wrapper); 34 | } 35 | 36 | -------------------------------------------------------------------------------- /springboot-schema/src/main/java/com/service/impl/ConfigServiceImpl.java: -------------------------------------------------------------------------------- 1 | 2 | package com.service.impl; 3 | 4 | 5 | import java.util.Map; 6 | 7 | import org.springframework.stereotype.Service; 8 | 9 | import com.baomidou.mybatisplus.mapper.EntityWrapper; 10 | import com.baomidou.mybatisplus.plugins.Page; 11 | import com.baomidou.mybatisplus.service.impl.ServiceImpl; 12 | import com.dao.ConfigDao; 13 | import com.entity.ConfigEntity; 14 | import com.entity.UserEntity; 15 | import com.service.ConfigService; 16 | import com.utils.PageUtils; 17 | import com.utils.Query; 18 | 19 | 20 | /** 21 | * 系统用户 22 | * @author yangliyuan 23 | * @date 2019年10月10日 上午9:17:59 24 | */ 25 | @Service("configService") 26 | public class ConfigServiceImpl extends ServiceImpl implements ConfigService { 27 | @Override 28 | public PageUtils queryPage(Map params) { 29 | Page page = this.selectPage( 30 | new Query(params).getPage(), 31 | new EntityWrapper() 32 | ); 33 | return new PageUtils(page); 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /springboot-schema/src/main/java/com/utils/CommonUtil.java: -------------------------------------------------------------------------------- 1 | package com.utils; 2 | 3 | import java.util.Random; 4 | 5 | public class CommonUtil { 6 | /** 7 | * 获取随机字符串 8 | * 9 | * @param num 10 | * @return 11 | */ 12 | public static String getRandomString(Integer num) { 13 | String base = "abcdefghijklmnopqrstuvwxyz0123456789"; 14 | Random random = new Random(); 15 | StringBuffer sb = new StringBuffer(); 16 | for (int i = 0; i < num; i++) { 17 | int number = random.nextInt(base.length()); 18 | sb.append(base.charAt(number)); 19 | } 20 | return sb.toString(); 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /springboot-schema/src/main/java/com/utils/FileUtil.java: -------------------------------------------------------------------------------- 1 | package com.utils; 2 | 3 | import java.io.ByteArrayOutputStream; 4 | import java.io.File; 5 | import java.io.FileInputStream; 6 | import java.io.IOException; 7 | import java.io.InputStream; 8 | 9 | /** 10 | * @author yangliyuan 11 | * @version 创建时间:2020年2月7日 下午8:01:14 12 | * 类说明 : 13 | */ 14 | 15 | public class FileUtil { 16 | public static byte[] FileToByte(File file) throws IOException { 17 | // 将数据转为流 18 | @SuppressWarnings("resource") 19 | InputStream content = new FileInputStream(file); 20 | ByteArrayOutputStream swapStream = new ByteArrayOutputStream(); 21 | byte[] buff = new byte[100]; 22 | int rc = 0; 23 | while ((rc = content.read(buff, 0, 100)) > 0) { 24 | swapStream.write(buff, 0, rc); 25 | } 26 | // 获得二进制数组 27 | return swapStream.toByteArray(); 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /springboot-schema/src/main/java/com/utils/HttpClientUtils.java: -------------------------------------------------------------------------------- 1 | package com.utils; 2 | 3 | import java.io.BufferedReader; 4 | import java.io.InputStreamReader; 5 | import java.net.HttpURLConnection; 6 | import java.net.URL; 7 | 8 | 9 | /** 10 | * HttpClient工具类 11 | */ 12 | public class HttpClientUtils { 13 | 14 | /** 15 | * @param uri 16 | * @return String 17 | * @description get请求方式 18 | * @author: long.he01 19 | */ 20 | public static String doGet(String uri) { 21 | 22 | StringBuilder result = new StringBuilder(); 23 | try { 24 | String res = ""; 25 | URL url = new URL(uri); 26 | HttpURLConnection conn = (HttpURLConnection) url.openConnection(); 27 | BufferedReader in = new BufferedReader(new InputStreamReader(conn.getInputStream(), "UTF-8")); 28 | String line; 29 | while ((line = in.readLine()) != null) { 30 | res += line+"\n"; 31 | } 32 | in.close(); 33 | return res; 34 | }catch (Exception e) { 35 | e.printStackTrace(); 36 | return null; 37 | } 38 | 39 | } 40 | 41 | } 42 | 43 | -------------------------------------------------------------------------------- /springboot-schema/src/main/java/com/utils/JQPageInfo.java: -------------------------------------------------------------------------------- 1 | package com.utils; 2 | 3 | public class JQPageInfo{ 4 | private Integer page; 5 | 6 | private Integer limit; 7 | 8 | private String sidx; 9 | 10 | private String order; 11 | 12 | private Integer offset; 13 | 14 | public Integer getPage() { 15 | return page; 16 | } 17 | 18 | public void setPage(Integer page) { 19 | this.page = page; 20 | } 21 | 22 | public Integer getLimit() { 23 | return limit; 24 | } 25 | 26 | public void setLimit(Integer limit) { 27 | this.limit = limit; 28 | } 29 | 30 | public String getSidx() { 31 | return sidx; 32 | } 33 | 34 | public void setSidx(String sidx) { 35 | this.sidx = sidx; 36 | } 37 | 38 | public String getOrder() { 39 | return order; 40 | } 41 | 42 | public void setOrder(String order) { 43 | this.order = order; 44 | } 45 | 46 | public Integer getOffset() { 47 | return offset; 48 | } 49 | 50 | public void setOffset(Integer offset) { 51 | this.offset = offset; 52 | } 53 | 54 | } 55 | -------------------------------------------------------------------------------- /springboot-schema/src/main/java/com/utils/R.java: -------------------------------------------------------------------------------- 1 | package com.utils; 2 | 3 | import java.util.HashMap; 4 | import java.util.Map; 5 | 6 | /** 7 | * 返回数据 8 | */ 9 | public class R extends HashMap { 10 | private static final long serialVersionUID = 1L; 11 | 12 | public R() { 13 | put("code", 0); 14 | } 15 | 16 | public static R error() { 17 | return error(500, "未知异常,请联系管理员"); 18 | } 19 | 20 | public static R error(String msg) { 21 | return error(500, msg); 22 | } 23 | 24 | public static R error(int code, String msg) { 25 | R r = new R(); 26 | r.put("code", code); 27 | r.put("msg", msg); 28 | return r; 29 | } 30 | 31 | public static R ok(String msg) { 32 | R r = new R(); 33 | r.put("msg", msg); 34 | return r; 35 | } 36 | 37 | public static R ok(Map map) { 38 | R r = new R(); 39 | r.putAll(map); 40 | return r; 41 | } 42 | 43 | public static R ok() { 44 | return new R(); 45 | } 46 | 47 | public R put(String key, Object value) { 48 | super.put(key, value); 49 | return this; 50 | } 51 | } 52 | -------------------------------------------------------------------------------- /springboot-schema/src/main/java/com/utils/SQLFilter.java: -------------------------------------------------------------------------------- 1 | 2 | package com.utils; 3 | 4 | import org.apache.commons.lang3.StringUtils; 5 | 6 | import com.entity.EIException; 7 | 8 | /** 9 | * SQL过滤 10 | */ 11 | public class SQLFilter { 12 | 13 | /** 14 | * SQL注入过滤 15 | * @param str 待验证的字符串 16 | */ 17 | public static String sqlInject(String str){ 18 | if(StringUtils.isBlank(str)){ 19 | return null; 20 | } 21 | //去掉'|"|;|\字符 22 | str = StringUtils.replace(str, "'", ""); 23 | str = StringUtils.replace(str, "\"", ""); 24 | str = StringUtils.replace(str, ";", ""); 25 | str = StringUtils.replace(str, "\\", ""); 26 | 27 | //转换成小写 28 | str = str.toLowerCase(); 29 | 30 | //非法字符 31 | String[] keywords = {"master", "truncate", "insert", "select", "delete", "update", "declare", "alter", "drop"}; 32 | 33 | //判断是否包含非法字符 34 | for(String keyword : keywords){ 35 | if(str.indexOf(keyword) != -1){ 36 | throw new EIException("包含非法字符"); 37 | } 38 | } 39 | 40 | return str; 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /springboot-schema/src/main/java/com/utils/SpringContextUtils.java: -------------------------------------------------------------------------------- 1 | 2 | package com.utils; 3 | 4 | import org.springframework.beans.BeansException; 5 | import org.springframework.context.ApplicationContext; 6 | import org.springframework.context.ApplicationContextAware; 7 | import org.springframework.stereotype.Component; 8 | 9 | 10 | /** 11 | * Spring Context 工具类 12 | */ 13 | @Component 14 | public class SpringContextUtils implements ApplicationContextAware { 15 | public static ApplicationContext applicationContext; 16 | 17 | @Override 18 | public void setApplicationContext(ApplicationContext applicationContext) 19 | throws BeansException { 20 | SpringContextUtils.applicationContext = applicationContext; 21 | } 22 | 23 | public static Object getBean(String name) { 24 | return applicationContext.getBean(name); 25 | } 26 | 27 | public static T getBean(String name, Class requiredType) { 28 | return applicationContext.getBean(name, requiredType); 29 | } 30 | 31 | public static boolean containsBean(String name) { 32 | return applicationContext.containsBean(name); 33 | } 34 | 35 | public static boolean isSingleton(String name) { 36 | return applicationContext.isSingleton(name); 37 | } 38 | 39 | public static Class getType(String name) { 40 | return applicationContext.getType(name); 41 | } 42 | 43 | } -------------------------------------------------------------------------------- /springboot-schema/src/main/java/com/utils/ValidatorUtils.java: -------------------------------------------------------------------------------- 1 | 2 | package com.utils; 3 | 4 | 5 | import java.util.Set; 6 | 7 | import javax.validation.ConstraintViolation; 8 | import javax.validation.Validation; 9 | import javax.validation.Validator; 10 | 11 | import com.entity.EIException; 12 | 13 | /** 14 | * hibernate-validator校验工具类 15 | */ 16 | public class ValidatorUtils { 17 | private static Validator validator; 18 | 19 | static { 20 | validator = Validation.buildDefaultValidatorFactory().getValidator(); 21 | } 22 | 23 | /** 24 | * 校验对象 25 | * @param object 待校验对象 26 | * @param groups 待校验的组 27 | * @throws EIException 校验不通过,则报EIException异常 28 | */ 29 | public static void validateEntity(Object object, Class... groups) 30 | throws EIException { 31 | Set> constraintViolations = validator.validate(object, groups); 32 | if (!constraintViolations.isEmpty()) { 33 | ConstraintViolation constraint = (ConstraintViolation)constraintViolations.iterator().next(); 34 | throw new EIException(constraint.getMessage()); 35 | } 36 | } 37 | 38 | 39 | } 40 | -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/admin/admin/babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | presets: [ 3 | '@vue/cli-plugin-babel/preset' 4 | ] 5 | } 6 | -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/admin/admin/dist/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/admin/admin/dist/favicon.ico -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/admin/admin/dist/fonts/element-icons.535877f5.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/admin/admin/dist/fonts/element-icons.535877f5.woff -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/admin/admin/dist/fonts/element-icons.732389de.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/admin/admin/dist/fonts/element-icons.732389de.ttf -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/admin/admin/dist/img/404.3648f234.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/admin/admin/dist/img/404.3648f234.png -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/admin/admin/dist/img/bg.875e60c1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/admin/admin/dist/img/bg.875e60c1.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/admin/admin/dist/img/zhongguo.20798bfa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/admin/admin/dist/img/zhongguo.20798bfa.png -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/admin/admin/dist/index.html: -------------------------------------------------------------------------------- 1 | 后台管理系统
-------------------------------------------------------------------------------- /springboot-schema/src/main/resources/admin/admin/muban.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/admin/admin/muban.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/admin/admin/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/admin/admin/public/favicon.ico -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/admin/admin/public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 后台管理系统 10 | 11 | 12 | 13 | 17 |
18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/admin/admin/src/App.vue: -------------------------------------------------------------------------------- 1 | 6 | 7 | 12 | 13 | 26 | -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/admin/admin/src/assets/css/element-variables.scss: -------------------------------------------------------------------------------- 1 | /* 改变主题色变量 */ 2 | $--color-primary: #409EFF !default; 3 | $--color-success: #67c23a !default; 4 | $--color-warning: #e6a23c !default; 5 | $--color-danger: #f56c6c !default; 6 | $--color-info: #909399 !default; 7 | /* 改变 icon 字体路径变量,必需 */ 8 | $--font-path: '~element-ui/lib/theme-chalk/fonts'; 9 | @import "~element-ui/packages/theme-chalk/src/index"; -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/admin/admin/src/assets/img/404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/admin/admin/src/assets/img/404.png -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/admin/admin/src/assets/img/avator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/admin/admin/src/assets/img/avator.png -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/admin/admin/src/assets/img/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/admin/admin/src/assets/img/bg.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/admin/admin/src/assets/img/captcha.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/admin/admin/src/assets/img/captcha.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/admin/admin/src/assets/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/admin/admin/src/assets/img/logo.png -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/admin/admin/src/assets/img/test/jianshe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/admin/admin/src/assets/img/test/jianshe.png -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/admin/admin/src/assets/img/test/jiaotong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/admin/admin/src/assets/img/test/jiaotong.png -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/admin/admin/src/assets/img/test/nongye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/admin/admin/src/assets/img/test/nongye.png -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/admin/admin/src/assets/img/test/weixin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/admin/admin/src/assets/img/test/weixin.png -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/admin/admin/src/assets/img/test/zhifubao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/admin/admin/src/assets/img/test/zhifubao.png -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/admin/admin/src/assets/img/test/zhongguo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/admin/admin/src/assets/img/test/zhongguo.png -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/admin/admin/src/components/common/BreadCrumbs.vue: -------------------------------------------------------------------------------- 1 | 8 | 11 | 17 | -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/admin/admin/src/components/index/IndexMain.vue: -------------------------------------------------------------------------------- 1 | 7 | 10 | 29 | -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/admin/admin/src/store/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/admin/admin/src/store/store.js -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/admin/admin/src/utils/base.js: -------------------------------------------------------------------------------- 1 | const base = { 2 | get() { 3 | return { 4 | url : "http://localhost:8080/springbootjlvpC/", 5 | name: "springbootjlvpC" 6 | } 7 | }, 8 | getProjectName(){ 9 | return { 10 | projectName: "校园招聘系统" 11 | } 12 | } 13 | } 14 | export default base -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/admin/admin/src/utils/http.js: -------------------------------------------------------------------------------- 1 | import axios from 'axios' 2 | import router from '@/router/router-static' 3 | import storage from '@/utils/storage' 4 | 5 | const http = axios.create({ 6 | timeout: 1000 * 86400, 7 | withCredentials: true, 8 | baseURL: '/springbootjlvpC', 9 | headers: { 10 | 'Content-Type': 'application/json; charset=utf-8' 11 | } 12 | }) 13 | // 请求拦截 14 | http.interceptors.request.use(config => { 15 | config.headers['Token'] = storage.get('Token') // 请求头带上token 16 | return config 17 | }, error => { 18 | return Promise.reject(error) 19 | }) 20 | // 响应拦截 21 | http.interceptors.response.use(response => { 22 | if (response.data && response.data.code === 401) { // 401, token失效 23 | router.push({ name: 'login' }) 24 | } 25 | return response 26 | }, error => { 27 | return Promise.reject(error) 28 | }) 29 | export default http -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/admin/admin/src/utils/storage.js: -------------------------------------------------------------------------------- 1 | const storage = { 2 | set(key, value) { 3 | localStorage.setItem(key, JSON.stringify(value)); 4 | }, 5 | get(key) { 6 | return localStorage.getItem(key)?localStorage.getItem(key).replace('"','').replace('"',''):""; 7 | }, 8 | getObj(key) { 9 | return localStorage.getItem(key)?JSON.parse(localStorage.getItem(key)):null; 10 | }, 11 | remove(key) { 12 | localStorage.removeItem(key); 13 | } 14 | } 15 | export default storage; -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/admin/admin/src/utils/utils.js: -------------------------------------------------------------------------------- 1 | import storage from './storage'; 2 | import menu from './menu'; 3 | /** 4 | * 是否有权限 5 | * @param {*} key 6 | */ 7 | export function isAuth(tableName,key) { 8 | let role = storage.get("role"); 9 | if(!role){ 10 | role = '管理员'; 11 | } 12 | let menus = menu.list(); 13 | for(let i=0;i 2 |
3 | 4 |
出错了...页面失踪了
5 | 返回 6 |
7 | 8 | 9 | 18 | 19 | 40 | 41 | -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/admin/admin/src/views/index.vue: -------------------------------------------------------------------------------- 1 | 17 | 29 | 30 | 40 | -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/css/relys/bg-image/footer-top-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/css/relys/bg-image/footer-top-bg.png -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/css/relys/fonts/icofont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/css/relys/fonts/icofont.woff2 -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/css/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/css/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/css/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/css/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/css/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/css/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/404.png -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/about/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/about/01.png -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/about/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/about/02.png -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/about/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/about/03.png -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/about/icon/01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/about/icon/01.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/about/icon/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/about/icon/01.png -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/about/icon/02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/about/icon/02.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/about/icon/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/about/icon/02.png -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/about/icon/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/about/icon/03.png -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/about/icon/04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/about/icon/04.png -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/about/shape/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/about/shape/01.png -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/about/shape/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/about/shape/02.png -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/audioicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/audioicon.png -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/author.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/author.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/avatar.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/banner/01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/banner/01.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/banner/02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/banner/02.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/bg-images/bg-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/bg-images/bg-1.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/bg-images/bg-countdown.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/bg-images/bg-countdown.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/bg-images/bg-counter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/bg-images/bg-counter.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/bg-images/page-header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/bg-images/page-header.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/blog/01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/blog/01.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/blog/02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/blog/02.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/blog/03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/blog/03.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/blog/04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/blog/04.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/blog/05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/blog/05.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/blog/06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/blog/06.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/countdown/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/countdown/01.png -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/countdown/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/countdown/02.png -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/countdown/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/countdown/03.png -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/counter/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/counter/01.png -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/counter/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/counter/02.png -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/counter/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/counter/03.png -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/counter/04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/counter/04.png -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/del.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/del.png -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/farm/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/farm/01.png -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/farm/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/farm/02.png -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/feature/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/feature/01.png -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/feature/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/feature/02.png -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/feature/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/feature/03.png -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/feature/04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/feature/04.png -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/feature/05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/feature/05.png -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/feature/06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/feature/06.png -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/feature/07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/feature/07.png -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/feature/08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/feature/08.png -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/feature/09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/feature/09.png -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/feature/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/feature/10.png -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/feature/shape/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/feature/shape/01.png -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/feature/shape/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/feature/shape/02.png -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/feature/shape/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/feature/shape/03.png -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/fileicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/fileicon.png -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/gallery/01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/gallery/01.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/gallery/02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/gallery/02.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/gallery/03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/gallery/03.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/gallery/04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/gallery/04.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/gallery/05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/gallery/05.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/gallery/06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/gallery/06.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/history/01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/history/01.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/iconpay/js.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/iconpay/js.png -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/iconpay/jt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/iconpay/jt.png -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/iconpay/wx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/iconpay/wx.png -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/iconpay/yz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/iconpay/yz.png -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/iconpay/zfb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/iconpay/zfb.png -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/iconpay/zg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/iconpay/zg.png -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/kefu/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/kefu/1.png -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/kefu/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/kefu/2.png -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/kefu/kefuicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/kefu/kefuicon.png -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/logo/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/logo/01.png -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/logo/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/logo/02.png -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/masonary/01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/masonary/01.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/masonary/02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/masonary/02.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/masonary/03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/masonary/03.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/masonary/04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/masonary/04.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/masonary/05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/masonary/05.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/masonary/06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/masonary/06.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/masonary/07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/masonary/07.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/masonary/08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/masonary/08.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/masonary/09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/masonary/09.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/masonary/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/masonary/10.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/masonary/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/masonary/11.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/masonary/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/masonary/12.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/offer/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/offer/01.png -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/offer/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/offer/02.png -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/product/01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/product/01.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/product/02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/product/02.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/product/03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/product/03.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/product/04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/product/04.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/product/05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/product/05.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/product/06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/product/06.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/product/07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/product/07.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/product/08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/product/08.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/product/09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/product/09.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/product/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/product/10.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/product/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/product/11.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/product/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/product/12.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/product/13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/product/13.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/product/14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/product/14.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/product/15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/product/15.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/product/16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/product/16.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/product/17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/product/17.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/product/18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/product/18.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/product/19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/product/19.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/product/20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/product/20.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/product/21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/product/21.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/product/22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/product/22.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/product/23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/product/23.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/product/24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/product/24.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/product/25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/product/25.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/product/home3/01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/product/home3/01.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/product/home3/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/product/home3/01.png -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/product/home3/02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/product/home3/02.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/product/home3/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/product/home3/02.png -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/product/home3/03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/product/home3/03.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/product/home3/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/product/home3/03.png -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/product/home3/04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/product/home3/04.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/product/home3/04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/product/home3/04.png -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/product/home3/05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/product/home3/05.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/product/home3/05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/product/home3/05.png -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/product/home3/06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/product/home3/06.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/product/home3/06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/product/home3/06.png -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/product/home3/07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/product/home3/07.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/product/home3/07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/product/home3/07.png -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/product/home3/08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/product/home3/08.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/product/home3/09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/product/home3/09.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/product/shape/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/product/shape/01.png -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/product/shape/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/product/shape/02.png -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/product/single/bottom/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/product/single/bottom/01.png -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/product/single/bottom/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/product/single/bottom/02.png -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/product/single/bottom/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/product/single/bottom/03.png -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/product/single/bottom/04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/product/single/bottom/04.png -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/product/single/bottom/05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/product/single/bottom/05.png -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/product/single/top/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/product/single/top/01.png -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/sponsor/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/sponsor/01.png -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/sponsor/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/sponsor/02.png -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/sponsor/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/sponsor/03.png -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/sponsor/04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/sponsor/04.png -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/sponsor/05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/sponsor/05.png -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/team/01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/team/01.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/team/02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/team/02.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/team/03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/team/03.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/team/04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/team/04.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/team/05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/team/05.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/team/06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/team/06.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/team/07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/team/07.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/team/08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/team/08.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/team/09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/team/09.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/team/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/team/10.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/team/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/team/11.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/team/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/team/12.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/testimonial/01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/testimonial/01.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/testimonial/02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/testimonial/02.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/testimonial/03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/testimonial/03.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/testimonial/quete-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/testimonial/quete-left.png -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/images/testimonial/qute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/assets/images/testimonial/qute.png -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/js/api/defaultuser.js: -------------------------------------------------------------------------------- 1 | /** 2 | * 登录 3 | */ 4 | function login(tablename, data, callback) { 5 | http(`${tablename}/login`, 'GET', data, callback) 6 | } 7 | /** 8 | * 用户个人信息 9 | */ 10 | function session(tablename, callback) { 11 | httpJson(`${tablename}/session`, 'GET', '', callback) 12 | } 13 | /** 14 | * 更新用户信息 15 | * @param {Object} tablename 用户表名 16 | * @param {Object} data 用户数据 17 | * @param {Object} callback 回调 18 | */ 19 | function updateUser(tablename, data, callback) { 20 | httpJson(`${tablename}/update`, 'POST', data, callback); 21 | } 22 | /** 23 | * 注册 24 | * @param {Object} tablename 用户表名 25 | * @param {Object} username 用户名 26 | * @param {Object} password 密码 27 | * @param {Object} callback 回调 28 | */ 29 | function register(tablename, data, callback) { 30 | httpJson(`${tablename}/register`, 'POST', data, callback); 31 | } 32 | /** 33 | * 重置密码 34 | * @param {Object} tablename 表名 35 | * @param {Object} username 账户名 36 | */ 37 | function resetPass(tablename, data, callback) { 38 | http(`${tablename}/resetPass`, 'GET', data, callback); 39 | } 40 | -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/js/api/order.js: -------------------------------------------------------------------------------- 1 | /** 2 | * 订单列表 3 | * @param {Object} page 页数 4 | * @param {Object} limit 条数 5 | * @param {Object} callback 回调 6 | */ 7 | function ordersList(page, limit, status, callback) { 8 | if(status=="全部"){ 9 | httpJson(`orders/list?page=${page}&limit=${limit}`, 'GET', '', callback); 10 | }else{ 11 | httpJson(`orders/list?page=${page}&limit=${limit}&status=${status}`, 'GET', '', callback); 12 | } 13 | 14 | } 15 | /** 16 | * 添加订单 17 | * @param {Object} data 订单数据 18 | * @param {Object} callback 回调 19 | */ 20 | function ordersSave(data, callback) { 21 | httpJson(`orders/add`, 'POST', data, callback); 22 | } 23 | /** 24 | * 更新订单数据 25 | * @param {Object} data 订单数据 26 | * @param {Object} callback 回调 27 | */ 28 | function ordersUpdate(data, callback) { 29 | httpJson(`orders/update`, 'POST', data, callback); 30 | } 31 | /** 32 | * 删除订单数据 33 | * @param {Object} ids 订单数组 34 | * @param {Object} callback 回调 35 | */ 36 | function ordersDelete(ids, callback) { 37 | httpJson(`orders/delete`, 'POST', ids, callback); 38 | } 39 | /** 40 | * 订单详情 41 | * @param {Object} id 订单id 42 | * @param {Object} callback 回调 43 | */ 44 | function ordersInfo(id, callback) { 45 | httpJson(`orders/detail/${id}`, 'POST', '', callback); 46 | } 47 | -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/js/api/shop-address.js: -------------------------------------------------------------------------------- 1 | /** 2 | * 收货地址列表 3 | * @param {Object} page 页数 4 | * @param {Object} limit 条数 5 | * @param {Object} callback 回调 6 | */ 7 | function addressList(page, limit, callback) { 8 | httpJson(`address/list?page=${page}&limit=${limit}`, 'GET', '', callback); 9 | } 10 | /** 11 | * 添加地址 12 | * @param {Object} data 地址数据 13 | * @param {Object} callback 回调 14 | */ 15 | function addressSave(data, callback) { 16 | httpJson(`address/add`, 'POST', data, callback); 17 | } 18 | /** 19 | * 更新地址数据 20 | * @param {Object} data 地址数据 21 | * @param {Object} callback 回调 22 | */ 23 | function addressUpdate(data, callback) { 24 | httpJson(`address/update`, 'POST', data, callback); 25 | } 26 | /** 27 | * 删除地址数据 28 | * @param {Object} ids 地址数据 29 | * @param {Object} callback 回调 30 | */ 31 | function addressDelete(ids, callback) { 32 | httpJson(`address/delete`, 'POST', ids, callback); 33 | } 34 | 35 | function addressInfo(id, callback) { 36 | httpJson(`address/detail/${id}`, 'POST', '', callback); 37 | } 38 | -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/js/api/shop-cart.js: -------------------------------------------------------------------------------- 1 | /** 2 | * 购物车列表 3 | * @param {Object} page 页数 4 | * @param {Object} limit 条数 5 | * @param {Object} callback 回调 6 | */ 7 | function cartList(page, limit, callback) { 8 | httpJson(`cart/list?page=${page}&limit=${limit}`, 'GET', '', callback); 9 | } 10 | /** 11 | * 添加到购物车 12 | * @param {Object} data 购物车数据 13 | * @param {Object} callback 回调 14 | */ 15 | function cartSave(data, callback) { 16 | httpJson(`cart/add`, 'POST', data, callback); 17 | } 18 | /** 19 | * 更新购物车数据 20 | * @param {Object} data 购物车数据 21 | * @param {Object} callback 回调 22 | */ 23 | function cartUpdate(data, callback) { 24 | httpJson(`cart/update`, 'POST', data, callback); 25 | } 26 | /** 27 | * 删除购物车数据 28 | * @param {Object} ids id数组数据 29 | * @param {Object} callback 回调 30 | */ 31 | function cartDelete(ids, callback) { 32 | httpJson(`cart/delete`, 'POST', ids, callback); 33 | } -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/js/api/shop.js: -------------------------------------------------------------------------------- 1 | /** 2 | * 推荐商品 3 | * @param {Object} tablename 表名 4 | * @param {Object} page 页数 5 | * @param {Object} limit 条数 6 | * @param {Object} callback 回调 7 | */ 8 | function recommend(tablename, type ,callback) { 9 | if(!type){ 10 | httpJson(`${tablename}/list?page=1&limit=6`, 'GET', '', callback); 11 | }else{ 12 | httpJson(`${tablename}/autoSort?limit=6`, 'GET', '', callback); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/js/relys/jquery.countdown.min.js: -------------------------------------------------------------------------------- 1 | 2 | // CountDown Clock 3 | // Version : 1.0.1 4 | // Developer : Ekrem KAYA 5 | // Website : http://e-piksel.com 6 | // GitHub : https://github.com/epiksel/countdown 7 | 8 | !function(t){t.fn.countdown=function(e,n){function o(){var t=new Date(r.date),e=s(),o=t-e;if(0>o)return clearInterval(d),void(n&&"function"==typeof n&&n());var a=1e3,f=60*a,u=60*f,l=24*u,c=Math.floor(o/l),h=Math.floor(o%l/u),x=Math.floor(o%u/f),g=Math.floor(o%f/a),y=1===c?r.day:r.days,m=1===h?r.hour:r.hours,v=1===x?r.minute:r.minutes,D=1===g?r.second:r.seconds;c=String(c).length>=2?c:"0"+c,h=String(h).length>=2?h:"0"+h,x=String(x).length>=2?x:"0"+x,g=String(g).length>=2?g:"0"+g,i.find(".days").text(c),i.find(".hours").text(h),i.find(".minutes").text(x),i.find(".seconds").text(g),i.find(".days_text").text(y),i.find(".hours_text").text(m),i.find(".minutes_text").text(v),i.find(".seconds_text").text(D)}var r=t.extend({date:null,offset:null,day:"Day",days:"Days",hour:"Hour",hours:"Hours",minute:"Minute",minutes:"Minutes",second:"Second",seconds:"Seconds"},e);r.date||t.error("Date is not defined."),Date.parse(r.date)||t.error("Incorrect date format, it should look like this, 12/24/2012 12:00:00.");var i=this,s=function(){var t=new Date,e=t.getTime()+6e4*t.getTimezoneOffset(),n=new Date(e+36e5*r.offset);return n},d=setInterval(o,1e3)}}(jQuery); 9 | 10 | -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/js/relys/jquery.counterup.min.js: -------------------------------------------------------------------------------- 1 | !function(n){"use strict";n.fn.counterUp=function(t){var e=n.extend({time:400,delay:10},t);return this.each(function(){var i=n(this),s=e;i.waypoint(function(){var t=[],e=s.time/s.delay,n=i.text(),u=/[0-9]+,[0-9]+/.test(n);n=n.replace(/,/g,"");/^[0-9]+$/.test(n);for(var a=/^[0-9]+\.[0-9]+$/.test(n),r=a?(n.split(".")[1]||[]).length:0,o=e;1<=o;o--){var c=parseInt(n/e*o);if(a&&(c=parseFloat(n/e*o).toFixed(r)),u)for(;/(\d+)(\d{3})/.test(c.toString());)c=c.toString().replace(/(\d+)(\d{3})/,"$1,$2");t.unshift(c)}i.data("counterup-nums",t),i.text("0");i.data("counterup-func",function(){i.text(i.data("counterup-nums").shift()),i.data("counterup-nums").length?setTimeout(i.data("counterup-func"),s.delay):(i.data("counterup-nums"),i.data("counterup-nums",null),i.data("counterup-func",null))}),setTimeout(i.data("counterup-func"),s.delay)},{offset:"100%",triggerOnce:!0})})}}(jQuery); -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/js/relys/storage.js: -------------------------------------------------------------------------------- 1 | function setStorage(key, value) { 2 | localStorage.setItem(key, JSON.stringify(value)); 3 | } 4 | function getStorage(key) { 5 | return localStorage.getItem(key)?localStorage.getItem(key).replace('"','').replace('"',''):""; 6 | } 7 | function getStorageObj(key) { 8 | return localStorage.getItem(key)?JSON.parse(localStorage.getItem(key)):null; 9 | } 10 | function removeStorage(key) { 11 | localStorage.removeItem(key); 12 | } -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/assets/js/relys/utils.js: -------------------------------------------------------------------------------- 1 | /** 2 | * 获取传递参数值(修改支持中文) 3 | * @param {Object} name 参数名称 4 | */ 5 | function getParam(name) { 6 | var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)"); 7 | var r = window.location.search.substr(1).match(reg); 8 | if (r != null) 9 | return decodeURI(r[2]); //对参数进行decodeURI解码 10 | return null; 11 | } 12 | /** 13 | * 生成订单编号 14 | */ 15 | function genTradeNo() { 16 | var date = new Date(); 17 | var tradeNo = date.getFullYear().toString() + (date.getMonth() + 1).toString() + 18 | date.getDate().toString() + date.getHours().toString() + date.getMinutes().toString() + 19 | date.getSeconds().toString() + date.getMilliseconds().toString(); 20 | for (var i = 0; i < 5; i++) //5位随机数,用以加在时间戳后面。 21 | { 22 | tradeNo += Math.floor(Math.random() * 10); 23 | } 24 | return tradeNo; 25 | } 26 | -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/layui/css/modules/code.css: -------------------------------------------------------------------------------- 1 | /** layui-v2.5.6 MIT License By https://www.layui.com */ 2 | html #layuicss-skincodecss{display:none;position:absolute;width:1989px}.layui-code-h3,.layui-code-view{position:relative;font-size:12px}.layui-code-view{display:block;margin:10px 0;padding:0;border:1px solid #e2e2e2;border-left-width:6px;background-color:#F2F2F2;color:#333;font-family:Courier New}.layui-code-h3{padding:0 10px;height:32px;line-height:32px;border-bottom:1px solid #e2e2e2}.layui-code-h3 a{position:absolute;right:10px;top:0;color:#999}.layui-code-view .layui-code-ol{position:relative;overflow:auto}.layui-code-view .layui-code-ol li{position:relative;margin-left:45px;line-height:20px;padding:0 5px;border-left:1px solid #e2e2e2;list-style-type:decimal-leading-zero;*list-style-type:decimal;background-color:#fff}.layui-code-view pre{margin:0}.layui-code-notepad{border:1px solid #0C0C0C;border-left-color:#3F3F3F;background-color:#0C0C0C;color:#C2BE9E}.layui-code-notepad .layui-code-h3{border-bottom:none}.layui-code-notepad .layui-code-ol li{background-color:#3F3F3F;border-left:none} -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/layui/css/modules/layer/default/icon-ext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/layui/css/modules/layer/default/icon-ext.png -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/layui/css/modules/layer/default/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/layui/css/modules/layer/default/icon.png -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/layui/css/modules/layer/default/loading-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/layui/css/modules/layer/default/loading-0.gif -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/layui/css/modules/layer/default/loading-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/layui/css/modules/layer/default/loading-1.gif -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/layui/css/modules/layer/default/loading-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/layui/css/modules/layer/default/loading-2.gif -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/layui/font/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/layui/font/iconfont.eot -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/layui/font/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/layui/font/iconfont.ttf -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/layui/font/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/layui/font/iconfont.woff -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/layui/font/iconfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/layui/font/iconfont.woff2 -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/layui/images/face/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/layui/images/face/0.gif -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/layui/images/face/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/layui/images/face/1.gif -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/layui/images/face/10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/layui/images/face/10.gif -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/layui/images/face/11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/layui/images/face/11.gif -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/layui/images/face/12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/layui/images/face/12.gif -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/layui/images/face/13.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/layui/images/face/13.gif -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/layui/images/face/14.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/layui/images/face/14.gif -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/layui/images/face/15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/layui/images/face/15.gif -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/layui/images/face/16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/layui/images/face/16.gif -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/layui/images/face/17.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/layui/images/face/17.gif -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/layui/images/face/18.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/layui/images/face/18.gif -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/layui/images/face/19.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/layui/images/face/19.gif -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/layui/images/face/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/layui/images/face/2.gif -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/layui/images/face/20.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/layui/images/face/20.gif -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/layui/images/face/21.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/layui/images/face/21.gif -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/layui/images/face/22.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/layui/images/face/22.gif -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/layui/images/face/23.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/layui/images/face/23.gif -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/layui/images/face/24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/layui/images/face/24.gif -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/layui/images/face/25.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/layui/images/face/25.gif -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/layui/images/face/26.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/layui/images/face/26.gif -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/layui/images/face/27.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/layui/images/face/27.gif -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/layui/images/face/28.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/layui/images/face/28.gif -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/layui/images/face/29.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/layui/images/face/29.gif -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/layui/images/face/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/layui/images/face/3.gif -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/layui/images/face/30.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/layui/images/face/30.gif -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/layui/images/face/31.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/layui/images/face/31.gif -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/layui/images/face/32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/layui/images/face/32.gif -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/layui/images/face/33.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/layui/images/face/33.gif -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/layui/images/face/34.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/layui/images/face/34.gif -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/layui/images/face/35.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/layui/images/face/35.gif -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/layui/images/face/36.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/layui/images/face/36.gif -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/layui/images/face/37.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/layui/images/face/37.gif -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/layui/images/face/38.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/layui/images/face/38.gif -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/layui/images/face/39.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/layui/images/face/39.gif -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/layui/images/face/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/layui/images/face/4.gif -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/layui/images/face/40.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/layui/images/face/40.gif -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/layui/images/face/41.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/layui/images/face/41.gif -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/layui/images/face/42.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/layui/images/face/42.gif -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/layui/images/face/43.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/layui/images/face/43.gif -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/layui/images/face/44.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/layui/images/face/44.gif -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/layui/images/face/45.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/layui/images/face/45.gif -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/layui/images/face/46.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/layui/images/face/46.gif -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/layui/images/face/47.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/layui/images/face/47.gif -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/layui/images/face/48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/layui/images/face/48.gif -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/layui/images/face/49.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/layui/images/face/49.gif -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/layui/images/face/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/layui/images/face/5.gif -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/layui/images/face/50.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/layui/images/face/50.gif -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/layui/images/face/51.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/layui/images/face/51.gif -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/layui/images/face/52.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/layui/images/face/52.gif -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/layui/images/face/53.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/layui/images/face/53.gif -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/layui/images/face/54.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/layui/images/face/54.gif -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/layui/images/face/55.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/layui/images/face/55.gif -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/layui/images/face/56.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/layui/images/face/56.gif -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/layui/images/face/57.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/layui/images/face/57.gif -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/layui/images/face/58.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/layui/images/face/58.gif -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/layui/images/face/59.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/layui/images/face/59.gif -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/layui/images/face/6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/layui/images/face/6.gif -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/layui/images/face/60.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/layui/images/face/60.gif -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/layui/images/face/61.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/layui/images/face/61.gif -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/layui/images/face/62.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/layui/images/face/62.gif -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/layui/images/face/63.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/layui/images/face/63.gif -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/layui/images/face/64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/layui/images/face/64.gif -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/layui/images/face/65.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/layui/images/face/65.gif -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/layui/images/face/66.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/layui/images/face/66.gif -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/layui/images/face/67.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/layui/images/face/67.gif -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/layui/images/face/68.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/layui/images/face/68.gif -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/layui/images/face/69.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/layui/images/face/69.gif -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/layui/images/face/7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/layui/images/face/7.gif -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/layui/images/face/70.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/layui/images/face/70.gif -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/layui/images/face/71.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/layui/images/face/71.gif -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/layui/images/face/8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/layui/images/face/8.gif -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/layui/images/face/9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/layui/images/face/9.gif -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/layui/lay/modules/code.js: -------------------------------------------------------------------------------- 1 | /** layui-v2.5.6 MIT License By https://www.layui.com */ 2 | ;layui.define("jquery",function(e){"use strict";var a=layui.$,l="http://www.layui.com/doc/modules/code.html";e("code",function(e){var t=[];e=e||{},e.elem=a(e.elem||".layui-code"),e.about=!("about"in e)||e.about,e.elem.each(function(){t.push(this)}),layui.each(t.reverse(),function(t,i){var c=a(i),o=c.html();(c.attr("lay-encode")||e.encode)&&(o=o.replace(/&(?!#?[a-zA-Z0-9]+;)/g,"&").replace(//g,">").replace(/'/g,"'").replace(/"/g,""")),c.html('
  1. '+o.replace(/[\r\t\n]+/g,"
  2. ")+"
"),c.find(">.layui-code-h3")[0]||c.prepend('

'+(c.attr("lay-title")||e.title||"code")+(e.about?'layui.code':"")+"

");var d=c.find(">.layui-code-ol");c.addClass("layui-box layui-code-view"),(c.attr("lay-skin")||e.skin)&&c.addClass("layui-code-"+(c.attr("lay-skin")||e.skin)),(d.find("li").length/100|0)>0&&d.css("margin-left",(d.find("li").length/100|0)+"px"),(c.attr("lay-height")||e.height)&&d.css("max-height",c.attr("lay-height")||e.height)})})}).addcss("modules/code.css","skincodecss"); -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/muban.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/front/front/muban.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/front/front/pages/blog/blog-detail.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/mapper/ConfigDao.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/mapper/GangweifenleiDao.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 16 | 17 | 22 | 23 | 29 | 30 | 34 | -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/mapper/MessagesDao.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 17 | 18 | 23 | 24 | 30 | 31 | 35 | -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/mapper/NewsDao.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 18 | 19 | 24 | 25 | 31 | 32 | 36 | -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/mapper/TokenDao.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 12 | 13 | -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/mapper/UserDao.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 12 | 13 | -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/mapper/XuelixinxiDao.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 16 | 17 | 22 | 23 | 29 | 30 | 34 | -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/static/upload/1577351717989.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/static/upload/1577351717989.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/static/upload/1596202359040.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/static/upload/1596202359040.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/static/upload/1596202765029.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/static/upload/1596202765029.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/static/upload/1596202778459.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/static/upload/1596202778459.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/static/upload/1596202789362.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/static/upload/1596202789362.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/static/upload/1596202801460.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/static/upload/1596202801460.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/static/upload/1596202812156.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/static/upload/1596202812156.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/static/upload/1596202819339.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/static/upload/1596202819339.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/static/upload/1596203897238.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/static/upload/1596203897238.gif -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/static/upload/1596204129522.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/static/upload/1596204129522.jpeg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/static/upload/1596204165238.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/static/upload/1596204165238.jpeg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/static/upload/1596204249970.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/static/upload/1596204249970.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/static/upload/1596284947334.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/static/upload/1596284947334.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/static/upload/1596285093334.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/static/upload/1596285093334.docx -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/static/upload/1596285115757.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/static/upload/1596285115757.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/static/upload/1596371914892.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/static/upload/1596371914892.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/static/upload/1596372445456.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/static/upload/1596372445456.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/static/upload/1596372470161.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/static/upload/1596372470161.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/static/upload/1596372812163.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/static/upload/1596372812163.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/static/upload/1596372817043.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/static/upload/1596372817043.jpg -------------------------------------------------------------------------------- /springboot-schema/src/main/resources/static/upload/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengchuan6666/campus-recruit/6a2d7d226b427124e498550b47ffceb0cc048089/springboot-schema/src/main/resources/static/upload/test -------------------------------------------------------------------------------- /springboot-schema/src/test/java/com/SpringbootSchemaApplicationTests.java: -------------------------------------------------------------------------------- 1 | package com; 2 | 3 | import org.junit.jupiter.api.Test; 4 | import org.springframework.boot.test.context.SpringBootTest; 5 | 6 | @SpringBootTest 7 | class SpringbootSchemaApplicationTests { 8 | 9 | @Test 10 | void contextLoads() { 11 | } 12 | 13 | } 14 | --------------------------------------------------------------------------------