├── book-mate-wechat ├── pages │ ├── books │ │ ├── books.json │ │ ├── books.wxml │ │ ├── books.js │ │ └── books.wxss │ ├── user │ │ ├── user.json │ │ ├── user.js │ │ ├── user.wxss │ │ └── user.wxml │ ├── book-borrow │ │ ├── book-borrow.json │ │ ├── book-borrow.wxss │ │ ├── book-borrow.wxml │ │ └── book-borrow.js │ ├── book-grade │ │ ├── book-grade.json │ │ ├── book-grade.wxml │ │ ├── book-grade.wxss │ │ └── book-grade.js │ ├── book-return │ │ ├── book-return.json │ │ ├── book-return.wxss │ │ ├── book-return.wxml │ │ └── book-return.js │ ├── main │ │ └── main.json │ ├── forum │ │ ├── forum.json │ │ ├── forum.wxml │ │ ├── forum.wxss │ │ └── forum.js │ ├── books-list │ │ ├── books-list.json │ │ ├── books-list.wxml │ │ ├── books-list.js │ │ └── books-list.wxss │ ├── forum-add │ │ ├── forum-add.json │ │ ├── forum-add.wxml │ │ ├── forum-add.js │ │ └── forum-add.wxss │ ├── user-forum │ │ ├── user-forum.json │ │ ├── user-forum.wxml │ │ ├── user-forum.wxss │ │ └── user-forum.js │ ├── book-detail │ │ └── book-detail.json │ ├── books-search │ │ ├── books-search.json │ │ ├── books-search.wxml │ │ ├── books-search.js │ │ └── books-search.wxss │ ├── forum-content │ │ ├── forum-content.json │ │ ├── forum-content.wxml │ │ └── forum-content.wxss │ ├── user-borrow │ │ ├── user-borrow.json │ │ ├── user-borrow.wxss │ │ └── user-borrow.wxml │ ├── user-comment │ │ ├── user-comment.json │ │ ├── user-comment.wxml │ │ ├── user-comment.wxss │ │ └── user-comment.js │ ├── user-history │ │ ├── user-history.json │ │ ├── user-history.wxss │ │ └── user-history.js │ ├── user-setting │ │ ├── user-setting.json │ │ ├── user-setting.wxss │ │ └── user-setting.wxml │ ├── scan-admin │ │ ├── scan-admin.json │ │ ├── scan-admin.js │ │ ├── scan-admin.wxml │ │ └── scan-admin.wxss │ ├── scan-main │ │ ├── scan-main.json │ │ ├── scan-main.wxml │ │ └── scan-main.wxss │ ├── index │ │ ├── index.json │ │ ├── index.js │ │ ├── index.wxml │ │ └── index.wxss │ ├── login │ │ ├── login.json │ │ ├── login.wxml │ │ ├── login.js │ │ └── login.wxss │ ├── scan-login │ │ ├── scan-login.json │ │ ├── scan-login.wxml │ │ ├── scan-login.js │ │ └── scan-login.wxss │ ├── register │ │ ├── register.json │ │ ├── register.wxml │ │ ├── register.js │ │ └── register.wxss │ └── scan-index │ │ ├── scan-index.json │ │ ├── scan-index.js │ │ ├── scan-index.wxml │ │ └── scan-index.wxss ├── images │ ├── main │ │ ├── star_0.png │ │ └── star_1.png │ ├── setting │ │ ├── exit.png │ │ ├── set.png │ │ ├── borrow.png │ │ ├── comment.png │ │ ├── forum.png │ │ └── history.png │ ├── star │ │ ├── star_0.png │ │ └── star_1.png │ ├── tabBar │ │ ├── books_0.png │ │ ├── books_1.png │ │ ├── forum_0.png │ │ ├── forum_1.png │ │ ├── main_0.png │ │ ├── main_1.png │ │ ├── user_0.png │ │ └── user_1.png │ ├── index │ │ ├── index-logo.png │ │ └── index-logo2.png │ └── login │ │ ├── login-error.png │ │ ├── login-user.png │ │ └── login-password.png ├── utils │ └── util.js ├── app.js ├── app.wxss └── app.json ├── book-mate-server └── bookMateServer │ ├── .settings │ ├── org.eclipse.wst.jsdt.ui.superType.name │ ├── org.eclipse.wst.jsdt.ui.superType.container │ ├── org.eclipse.jdt.core.prefs │ ├── org.eclipse.wst.common.project.facet.core.xml │ ├── org.eclipse.wst.common.component │ └── .jsdtscope │ ├── WebContent │ ├── META-INF │ │ └── MANIFEST.MF │ ├── assets │ │ ├── img │ │ │ ├── a5.png │ │ │ ├── k.jpg │ │ │ ├── book.png │ │ │ ├── logo.jpg │ │ │ ├── logo.png │ │ │ ├── logoa.png │ │ │ ├── logob.png │ │ │ ├── user.png │ │ │ ├── user01.png │ │ │ ├── user02.png │ │ │ ├── user03.png │ │ │ ├── user04.png │ │ │ ├── user05.png │ │ │ ├── user06.png │ │ │ ├── user07.png │ │ │ └── index-logo.png │ │ ├── i │ │ │ ├── favicon.png │ │ │ └── examples │ │ │ │ ├── admin-ie.png │ │ │ │ ├── blogPage.png │ │ │ │ ├── landing.png │ │ │ │ ├── adminPage.png │ │ │ │ ├── loginPage.png │ │ │ │ ├── admin-chrome.png │ │ │ │ ├── admin-firefox.png │ │ │ │ ├── admin-opera.png │ │ │ │ ├── admin-safari.png │ │ │ │ ├── landingPage.png │ │ │ │ └── sidebarPage.png │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ │ └── js │ │ │ └── theme.js │ ├── readme │ │ ├── photo1.png │ │ ├── photo2.png │ │ ├── photo3.png │ │ ├── photo4.png │ │ ├── photo5.png │ │ └── photo6.png │ ├── adminPhoto │ │ └── admin.png │ ├── apiPhoto │ │ ├── emotion.png │ │ ├── history.png │ │ ├── ideal.png │ │ ├── warmth.png │ │ └── technology.png │ ├── WEB-INF │ │ ├── lib │ │ │ ├── asm-3.3.1.jar │ │ │ ├── cglib-2.2.jar │ │ │ ├── jstl-1.2.jar │ │ │ ├── jta-1.1.jar │ │ │ ├── antlr-2.7.6.jar │ │ │ ├── core-3.0.1.jar │ │ │ ├── dom4j-1.6.1.jar │ │ │ ├── commons-lang.jar │ │ │ ├── jsoup-1.10.2.jar │ │ │ ├── log4j-1.2.16.jar │ │ │ ├── mybatis-3.0.3.jar │ │ │ ├── aopalliance-1.0.jar │ │ │ ├── commons-io-1.3.2.jar │ │ │ ├── slf4j-api-1.5.8.jar │ │ │ ├── freemarker-2.3.15.jar │ │ │ ├── jackson-core-2.1.5.jar │ │ │ ├── javassist-3.9.0.GA.jar │ │ │ ├── slf4j-log4j12-1.6.2.jar │ │ │ ├── commons-logging-1.1.3.jar │ │ │ ├── commons-collections-3.1.jar │ │ │ ├── commons-fileupload-1.2.1.jar │ │ │ ├── jackson-databind-2.1.5.jar │ │ │ ├── mybatis-spring-1.0.0-RC3.jar │ │ │ ├── spring-aop-4.0.0.RELEASE.jar │ │ │ ├── spring-orm-4.0.0.RELEASE.jar │ │ │ ├── spring-tx-4.0.0.RELEASE.jar │ │ │ ├── spring-web-4.0.0.RELEASE.jar │ │ │ ├── standard-1.1.2-sources.jar │ │ │ ├── jackson-annotations-2.1.5.jar │ │ │ ├── spring-beans-4.0.0.RELEASE.jar │ │ │ ├── spring-core-4.0.0.RELEASE.jar │ │ │ ├── spring-jdbc-4.0.0.RELEASE.jar │ │ │ ├── spring-aspects-4.0.0.RELEASE.jar │ │ │ ├── spring-context-4.0.0.RELEASE.jar │ │ │ ├── spring-webmvc-4.0.0.RELEASE.jar │ │ │ ├── mysql-connector-java-5.1.10-bin.jar │ │ │ ├── spring-expression-4.0.0.RELEASE.jar │ │ │ ├── com.springsource.net.sf.cglib-2.2.0.jar │ │ │ ├── com.springsource.org.aopalliance-1.0.0.jar │ │ │ └── com.springsource.org.aspectj.weaver-1.6.8.RELEASE.jar │ │ ├── views │ │ │ ├── index │ │ │ │ └── header.jsp │ │ │ └── admin │ │ │ │ └── admin_password.jsp │ │ └── web.xml │ ├── index.jsp │ └── 404.jsp │ ├── build │ └── classes │ │ ├── org │ │ └── bookmate │ │ │ ├── dao │ │ │ ├── AdminDao.class │ │ │ ├── BookDao.class │ │ │ ├── BorrowDao.class │ │ │ ├── ForumDao.class │ │ │ ├── RecordDao.class │ │ │ ├── UserDao.class │ │ │ └── impl │ │ │ │ ├── BookDaoImpl.class │ │ │ │ ├── UserDaoImpl.class │ │ │ │ ├── AdminDaoImpl.class │ │ │ │ ├── BorrowDaoImpl.class │ │ │ │ ├── ForumDaoImpl.class │ │ │ │ └── RecordDaoImpl.class │ │ │ ├── entities │ │ │ ├── Book.class │ │ │ ├── User.class │ │ │ ├── Admin.class │ │ │ ├── Borrow.class │ │ │ ├── Forum.class │ │ │ ├── AdminMessage.class │ │ │ ├── BorrowRecord.class │ │ │ ├── BrowseRecord.class │ │ │ ├── ForumComment.class │ │ │ ├── BookClassifyTwo.class │ │ │ ├── ForumAndComment.class │ │ │ ├── BookRecommendResult.class │ │ │ └── UserRecommendResult.class │ │ │ ├── spider │ │ │ ├── Main.class │ │ │ └── SpiderUtil.class │ │ │ ├── test │ │ │ ├── BookTest.class │ │ │ ├── UserTest.class │ │ │ ├── AdminTest.class │ │ │ ├── BorrowTest.class │ │ │ ├── ForumTest.class │ │ │ └── RecordTest.class │ │ │ ├── util │ │ │ ├── QRCodeUtil.class │ │ │ ├── EncoderUtil.class │ │ │ └── BufferedImageLuminanceSource.class │ │ │ ├── service │ │ │ ├── AdminService.class │ │ │ ├── BookService.class │ │ │ ├── ForumService.class │ │ │ ├── UserService.class │ │ │ ├── BorrowService.class │ │ │ ├── RecordService.class │ │ │ └── impl │ │ │ │ ├── BookServiceImpl.class │ │ │ │ ├── UserServiceImpl.class │ │ │ │ ├── AdminServiceImpl.class │ │ │ │ ├── BorrowServiceImpl.class │ │ │ │ ├── ForumServiceImpl.class │ │ │ │ └── RecordServiceImpl.class │ │ │ ├── handler │ │ │ ├── api │ │ │ │ ├── MainHandler.class │ │ │ │ ├── BookAPIHandler.class │ │ │ │ ├── ForumAPIHandler.class │ │ │ │ ├── ScanAPIHandler.class │ │ │ │ └── UserAPIHandler.class │ │ │ └── admin │ │ │ │ ├── BookHandler.class │ │ │ │ ├── UserHandler.class │ │ │ │ ├── AdminHandler.class │ │ │ │ ├── BorrowHandler.class │ │ │ │ └── IndexHandler.class │ │ │ ├── interceptor │ │ │ ├── AdminLoginInterceptor.class │ │ │ └── AdvancedOperationsInterceptor.class │ │ │ └── mapper │ │ │ ├── BookClassifyTwoMapper.xml │ │ │ ├── UserRecommendResultMapper.xml │ │ │ ├── BookRecommendResultMapper.xml │ │ │ ├── BrowseRecordMapper.xml │ │ │ └── BorrowRecordMapper.xml │ │ ├── sqlMapConfig.xml │ │ └── springmvc.xml │ ├── .springBeans │ ├── src │ ├── org │ │ └── bookmate │ │ │ ├── entities │ │ │ ├── ForumAndComment.java │ │ │ ├── BookClassifyTwo.java │ │ │ ├── BorrowRecord.java │ │ │ ├── BrowseRecord.java │ │ │ ├── Admin.java │ │ │ ├── AdminMessage.java │ │ │ ├── Forum.java │ │ │ └── ForumComment.java │ │ │ ├── spider │ │ │ └── SpiderUtil.java │ │ │ ├── service │ │ │ ├── RecordService.java │ │ │ └── UserService.java │ │ │ ├── interceptor │ │ │ ├── AdminLoginInterceptor.java │ │ │ └── AdvancedOperationsInterceptor.java │ │ │ ├── mapper │ │ │ ├── BookClassifyTwoMapper.xml │ │ │ ├── UserRecommendResultMapper.xml │ │ │ ├── BookRecommendResultMapper.xml │ │ │ ├── BrowseRecordMapper.xml │ │ │ └── BorrowRecordMapper.xml │ │ │ ├── util │ │ │ └── EncoderUtil.java │ │ │ ├── test │ │ │ ├── RecordTest.java │ │ │ └── BorrowTest.java │ │ │ ├── dao │ │ │ ├── UserDao.java │ │ │ ├── BorrowDao.java │ │ │ ├── ForumDao.java │ │ │ └── RecordDao.java │ │ │ └── handler │ │ │ └── admin │ │ │ └── BorrowHandler.java │ ├── sqlMapConfig.xml │ └── springmvc.xml │ ├── .classpath │ └── .project └── README.md /book-mate-wechat/pages/books/books.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /book-mate-wechat/pages/user/user.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /book-mate-wechat/pages/book-borrow/book-borrow.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /book-mate-wechat/pages/book-grade/book-grade.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /book-mate-wechat/pages/book-return/book-return.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /book-mate-wechat/pages/main/main.json: -------------------------------------------------------------------------------- 1 | { 2 | "enablePullDownRefresh": true 3 | } -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /book-mate-wechat/pages/forum/forum.json: -------------------------------------------------------------------------------- 1 | { 2 | "enablePullDownRefresh": true 3 | } -------------------------------------------------------------------------------- /book-mate-wechat/pages/books-list/books-list.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "图书列表" 3 | } -------------------------------------------------------------------------------- /book-mate-wechat/pages/forum-add/forum-add.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "写文推荐" 3 | } -------------------------------------------------------------------------------- /book-mate-wechat/pages/user-forum/user-forum.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "我的帖子" 3 | } -------------------------------------------------------------------------------- /book-mate-wechat/pages/book-detail/book-detail.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "图书详情" 3 | } -------------------------------------------------------------------------------- /book-mate-wechat/pages/books-search/books-search.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "图书列表" 3 | } -------------------------------------------------------------------------------- /book-mate-wechat/pages/forum-content/forum-content.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "文章详情" 3 | } -------------------------------------------------------------------------------- /book-mate-wechat/pages/user-borrow/user-borrow.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "借阅图书" 3 | } -------------------------------------------------------------------------------- /book-mate-wechat/pages/user-comment/user-comment.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "我的评论" 3 | } -------------------------------------------------------------------------------- /book-mate-wechat/pages/user-history/user-history.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "借阅历史" 3 | } -------------------------------------------------------------------------------- /book-mate-wechat/pages/user-setting/user-setting.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "账号设置" 3 | } -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/WebContent/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /book-mate-wechat/images/main/star_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-wechat/images/main/star_0.png -------------------------------------------------------------------------------- /book-mate-wechat/images/main/star_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-wechat/images/main/star_1.png -------------------------------------------------------------------------------- /book-mate-wechat/images/setting/exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-wechat/images/setting/exit.png -------------------------------------------------------------------------------- /book-mate-wechat/images/setting/set.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-wechat/images/setting/set.png -------------------------------------------------------------------------------- /book-mate-wechat/images/star/star_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-wechat/images/star/star_0.png -------------------------------------------------------------------------------- /book-mate-wechat/images/star/star_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-wechat/images/star/star_1.png -------------------------------------------------------------------------------- /book-mate-wechat/images/setting/borrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-wechat/images/setting/borrow.png -------------------------------------------------------------------------------- /book-mate-wechat/images/setting/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-wechat/images/setting/comment.png -------------------------------------------------------------------------------- /book-mate-wechat/images/setting/forum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-wechat/images/setting/forum.png -------------------------------------------------------------------------------- /book-mate-wechat/images/setting/history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-wechat/images/setting/history.png -------------------------------------------------------------------------------- /book-mate-wechat/images/tabBar/books_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-wechat/images/tabBar/books_0.png -------------------------------------------------------------------------------- /book-mate-wechat/images/tabBar/books_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-wechat/images/tabBar/books_1.png -------------------------------------------------------------------------------- /book-mate-wechat/images/tabBar/forum_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-wechat/images/tabBar/forum_0.png -------------------------------------------------------------------------------- /book-mate-wechat/images/tabBar/forum_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-wechat/images/tabBar/forum_1.png -------------------------------------------------------------------------------- /book-mate-wechat/images/tabBar/main_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-wechat/images/tabBar/main_0.png -------------------------------------------------------------------------------- /book-mate-wechat/images/tabBar/main_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-wechat/images/tabBar/main_1.png -------------------------------------------------------------------------------- /book-mate-wechat/images/tabBar/user_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-wechat/images/tabBar/user_0.png -------------------------------------------------------------------------------- /book-mate-wechat/images/tabBar/user_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-wechat/images/tabBar/user_1.png -------------------------------------------------------------------------------- /book-mate-wechat/images/index/index-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-wechat/images/index/index-logo.png -------------------------------------------------------------------------------- /book-mate-wechat/images/index/index-logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-wechat/images/index/index-logo2.png -------------------------------------------------------------------------------- /book-mate-wechat/images/login/login-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-wechat/images/login/login-error.png -------------------------------------------------------------------------------- /book-mate-wechat/images/login/login-user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-wechat/images/login/login-user.png -------------------------------------------------------------------------------- /book-mate-wechat/pages/scan-admin/scan-admin.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "借阅伴侣扫码端", 3 | "navigationBarBackgroundColor": "#7986cb" 4 | } -------------------------------------------------------------------------------- /book-mate-wechat/images/login/login-password.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-wechat/images/login/login-password.png -------------------------------------------------------------------------------- /book-mate-wechat/pages/scan-main/scan-main.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "借阅伴侣扫码端", 3 | "navigationBarBackgroundColor": "#7986cb" 4 | } -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/WebContent/assets/img/a5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/WebContent/assets/img/a5.png -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/WebContent/assets/img/k.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/WebContent/assets/img/k.jpg -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/WebContent/readme/photo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/WebContent/readme/photo1.png -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/WebContent/readme/photo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/WebContent/readme/photo2.png -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/WebContent/readme/photo3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/WebContent/readme/photo3.png -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/WebContent/readme/photo4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/WebContent/readme/photo4.png -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/WebContent/readme/photo5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/WebContent/readme/photo5.png -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/WebContent/readme/photo6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/WebContent/readme/photo6.png -------------------------------------------------------------------------------- /book-mate-wechat/pages/index/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarBackgroundColor": "#eeeeee", 3 | "navigationBarTextStyle": "black", 4 | "backgroundColor": "#eeeeee" 5 | } -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/WebContent/adminPhoto/admin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/WebContent/adminPhoto/admin.png -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/WebContent/apiPhoto/emotion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/WebContent/apiPhoto/emotion.png -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/WebContent/apiPhoto/history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/WebContent/apiPhoto/history.png -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/WebContent/apiPhoto/ideal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/WebContent/apiPhoto/ideal.png -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/WebContent/apiPhoto/warmth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/WebContent/apiPhoto/warmth.png -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/WebContent/assets/i/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/WebContent/assets/i/favicon.png -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/WebContent/assets/img/book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/WebContent/assets/img/book.png -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/WebContent/assets/img/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/WebContent/assets/img/logo.jpg -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/WebContent/assets/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/WebContent/assets/img/logo.png -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/WebContent/assets/img/logoa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/WebContent/assets/img/logoa.png -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/WebContent/assets/img/logob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/WebContent/assets/img/logob.png -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/WebContent/assets/img/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/WebContent/assets/img/user.png -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/WebContent/assets/img/user01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/WebContent/assets/img/user01.png -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/WebContent/assets/img/user02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/WebContent/assets/img/user02.png -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/WebContent/assets/img/user03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/WebContent/assets/img/user03.png -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/WebContent/assets/img/user04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/WebContent/assets/img/user04.png -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/WebContent/assets/img/user05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/WebContent/assets/img/user05.png -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/WebContent/assets/img/user06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/WebContent/assets/img/user06.png -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/WebContent/assets/img/user07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/WebContent/assets/img/user07.png -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/WebContent/WEB-INF/lib/asm-3.3.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/WebContent/WEB-INF/lib/asm-3.3.1.jar -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/WebContent/WEB-INF/lib/cglib-2.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/WebContent/WEB-INF/lib/cglib-2.2.jar -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/WebContent/WEB-INF/lib/jstl-1.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/WebContent/WEB-INF/lib/jstl-1.2.jar -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/WebContent/WEB-INF/lib/jta-1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/WebContent/WEB-INF/lib/jta-1.1.jar -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/WebContent/apiPhoto/technology.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/WebContent/apiPhoto/technology.png -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/WebContent/assets/img/index-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/WebContent/assets/img/index-logo.png -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/WebContent/WEB-INF/lib/antlr-2.7.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/WebContent/WEB-INF/lib/antlr-2.7.6.jar -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/WebContent/WEB-INF/lib/core-3.0.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/WebContent/WEB-INF/lib/core-3.0.1.jar -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/WebContent/WEB-INF/lib/dom4j-1.6.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/WebContent/WEB-INF/lib/dom4j-1.6.1.jar -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/WebContent/WEB-INF/lib/commons-lang.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/WebContent/WEB-INF/lib/commons-lang.jar -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/WebContent/WEB-INF/lib/jsoup-1.10.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/WebContent/WEB-INF/lib/jsoup-1.10.2.jar -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/WebContent/WEB-INF/lib/log4j-1.2.16.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/WebContent/WEB-INF/lib/log4j-1.2.16.jar -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/WebContent/WEB-INF/lib/mybatis-3.0.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/WebContent/WEB-INF/lib/mybatis-3.0.3.jar -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/WebContent/assets/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/WebContent/assets/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/WebContent/assets/i/examples/admin-ie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/WebContent/assets/i/examples/admin-ie.png -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/WebContent/assets/i/examples/blogPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/WebContent/assets/i/examples/blogPage.png -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/WebContent/assets/i/examples/landing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/WebContent/assets/i/examples/landing.png -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/WebContent/WEB-INF/lib/aopalliance-1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/WebContent/WEB-INF/lib/aopalliance-1.0.jar -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/WebContent/WEB-INF/lib/commons-io-1.3.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/WebContent/WEB-INF/lib/commons-io-1.3.2.jar -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/WebContent/WEB-INF/lib/slf4j-api-1.5.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/WebContent/WEB-INF/lib/slf4j-api-1.5.8.jar -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/WebContent/assets/i/examples/adminPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/WebContent/assets/i/examples/adminPage.png -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/WebContent/assets/i/examples/loginPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/WebContent/assets/i/examples/loginPage.png -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/WebContent/WEB-INF/lib/freemarker-2.3.15.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/WebContent/WEB-INF/lib/freemarker-2.3.15.jar -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/WebContent/WEB-INF/lib/jackson-core-2.1.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/WebContent/WEB-INF/lib/jackson-core-2.1.5.jar -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/WebContent/WEB-INF/lib/javassist-3.9.0.GA.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/WebContent/WEB-INF/lib/javassist-3.9.0.GA.jar -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/WebContent/WEB-INF/lib/slf4j-log4j12-1.6.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/WebContent/WEB-INF/lib/slf4j-log4j12-1.6.2.jar -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/WebContent/assets/i/examples/admin-chrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/WebContent/assets/i/examples/admin-chrome.png -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/WebContent/assets/i/examples/admin-firefox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/WebContent/assets/i/examples/admin-firefox.png -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/WebContent/assets/i/examples/admin-opera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/WebContent/assets/i/examples/admin-opera.png -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/WebContent/assets/i/examples/admin-safari.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/WebContent/assets/i/examples/admin-safari.png -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/WebContent/assets/i/examples/landingPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/WebContent/assets/i/examples/landingPage.png -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/WebContent/assets/i/examples/sidebarPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/WebContent/assets/i/examples/sidebarPage.png -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/build/classes/org/bookmate/dao/AdminDao.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/build/classes/org/bookmate/dao/AdminDao.class -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/build/classes/org/bookmate/dao/BookDao.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/build/classes/org/bookmate/dao/BookDao.class -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/build/classes/org/bookmate/dao/BorrowDao.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/build/classes/org/bookmate/dao/BorrowDao.class -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/build/classes/org/bookmate/dao/ForumDao.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/build/classes/org/bookmate/dao/ForumDao.class -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/build/classes/org/bookmate/dao/RecordDao.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/build/classes/org/bookmate/dao/RecordDao.class -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/build/classes/org/bookmate/dao/UserDao.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/build/classes/org/bookmate/dao/UserDao.class -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/build/classes/org/bookmate/entities/Book.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/build/classes/org/bookmate/entities/Book.class -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/build/classes/org/bookmate/entities/User.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/build/classes/org/bookmate/entities/User.class -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/build/classes/org/bookmate/spider/Main.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/build/classes/org/bookmate/spider/Main.class -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/build/classes/org/bookmate/test/BookTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/build/classes/org/bookmate/test/BookTest.class -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/build/classes/org/bookmate/test/UserTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/build/classes/org/bookmate/test/UserTest.class -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/WebContent/WEB-INF/lib/commons-logging-1.1.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/WebContent/WEB-INF/lib/commons-logging-1.1.3.jar -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/WebContent/assets/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/WebContent/assets/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/WebContent/assets/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/WebContent/assets/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/WebContent/assets/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/WebContent/assets/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/build/classes/org/bookmate/entities/Admin.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/build/classes/org/bookmate/entities/Admin.class -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/build/classes/org/bookmate/entities/Borrow.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/build/classes/org/bookmate/entities/Borrow.class -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/build/classes/org/bookmate/entities/Forum.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/build/classes/org/bookmate/entities/Forum.class -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/build/classes/org/bookmate/test/AdminTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/build/classes/org/bookmate/test/AdminTest.class -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/build/classes/org/bookmate/test/BorrowTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/build/classes/org/bookmate/test/BorrowTest.class -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/build/classes/org/bookmate/test/ForumTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/build/classes/org/bookmate/test/ForumTest.class -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/build/classes/org/bookmate/test/RecordTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/build/classes/org/bookmate/test/RecordTest.class -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/build/classes/org/bookmate/util/QRCodeUtil.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/build/classes/org/bookmate/util/QRCodeUtil.class -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/WebContent/WEB-INF/lib/commons-collections-3.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/WebContent/WEB-INF/lib/commons-collections-3.1.jar -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/WebContent/WEB-INF/lib/commons-fileupload-1.2.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/WebContent/WEB-INF/lib/commons-fileupload-1.2.1.jar -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/WebContent/WEB-INF/lib/jackson-databind-2.1.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/WebContent/WEB-INF/lib/jackson-databind-2.1.5.jar -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/WebContent/WEB-INF/lib/mybatis-spring-1.0.0-RC3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/WebContent/WEB-INF/lib/mybatis-spring-1.0.0-RC3.jar -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/WebContent/WEB-INF/lib/spring-aop-4.0.0.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/WebContent/WEB-INF/lib/spring-aop-4.0.0.RELEASE.jar -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/WebContent/WEB-INF/lib/spring-orm-4.0.0.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/WebContent/WEB-INF/lib/spring-orm-4.0.0.RELEASE.jar -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/WebContent/WEB-INF/lib/spring-tx-4.0.0.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/WebContent/WEB-INF/lib/spring-tx-4.0.0.RELEASE.jar -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/WebContent/WEB-INF/lib/spring-web-4.0.0.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/WebContent/WEB-INF/lib/spring-web-4.0.0.RELEASE.jar -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/WebContent/WEB-INF/lib/standard-1.1.2-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/WebContent/WEB-INF/lib/standard-1.1.2-sources.jar -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/WebContent/assets/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/WebContent/assets/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/build/classes/org/bookmate/spider/SpiderUtil.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/build/classes/org/bookmate/spider/SpiderUtil.class -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/build/classes/org/bookmate/util/EncoderUtil.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/build/classes/org/bookmate/util/EncoderUtil.class -------------------------------------------------------------------------------- /book-mate-wechat/pages/login/login.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarBackgroundColor": "#eeeeee", 3 | "navigationBarTextStyle": "black", 4 | "backgroundColor": "#eeeeee", 5 | "navigationBarTitleText": "用户登录" 6 | } -------------------------------------------------------------------------------- /book-mate-wechat/pages/scan-login/scan-login.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarBackgroundColor": "#eeeeee", 3 | "navigationBarTextStyle": "black", 4 | "backgroundColor": "#eeeeee", 5 | "navigationBarTitleText": "管理员登录" 6 | } -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/WebContent/WEB-INF/lib/jackson-annotations-2.1.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/WebContent/WEB-INF/lib/jackson-annotations-2.1.5.jar -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/WebContent/WEB-INF/lib/spring-beans-4.0.0.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/WebContent/WEB-INF/lib/spring-beans-4.0.0.RELEASE.jar -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/WebContent/WEB-INF/lib/spring-core-4.0.0.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/WebContent/WEB-INF/lib/spring-core-4.0.0.RELEASE.jar -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/WebContent/WEB-INF/lib/spring-jdbc-4.0.0.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/WebContent/WEB-INF/lib/spring-jdbc-4.0.0.RELEASE.jar -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/build/classes/org/bookmate/dao/impl/BookDaoImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/build/classes/org/bookmate/dao/impl/BookDaoImpl.class -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/build/classes/org/bookmate/dao/impl/UserDaoImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/build/classes/org/bookmate/dao/impl/UserDaoImpl.class -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/build/classes/org/bookmate/service/AdminService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/build/classes/org/bookmate/service/AdminService.class -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/build/classes/org/bookmate/service/BookService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/build/classes/org/bookmate/service/BookService.class -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/build/classes/org/bookmate/service/ForumService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/build/classes/org/bookmate/service/ForumService.class -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/build/classes/org/bookmate/service/UserService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/build/classes/org/bookmate/service/UserService.class -------------------------------------------------------------------------------- /book-mate-wechat/pages/register/register.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarBackgroundColor": "#eeeeee", 3 | "navigationBarTextStyle": "black", 4 | "backgroundColor": "#eeeeee", 5 | "navigationBarTitleText": "用户注册" 6 | } -------------------------------------------------------------------------------- /book-mate-wechat/pages/scan-index/scan-index.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarBackgroundColor": "#eeeeee", 3 | "navigationBarTextStyle": "black", 4 | "backgroundColor": "#eeeeee", 5 | "navigationBarTitleText": "借阅伴侣扫码端" 6 | } -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/WebContent/WEB-INF/lib/spring-aspects-4.0.0.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/WebContent/WEB-INF/lib/spring-aspects-4.0.0.RELEASE.jar -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/WebContent/WEB-INF/lib/spring-context-4.0.0.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/WebContent/WEB-INF/lib/spring-context-4.0.0.RELEASE.jar -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/WebContent/WEB-INF/lib/spring-webmvc-4.0.0.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/WebContent/WEB-INF/lib/spring-webmvc-4.0.0.RELEASE.jar -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/build/classes/org/bookmate/dao/impl/AdminDaoImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/build/classes/org/bookmate/dao/impl/AdminDaoImpl.class -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/build/classes/org/bookmate/dao/impl/BorrowDaoImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/build/classes/org/bookmate/dao/impl/BorrowDaoImpl.class -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/build/classes/org/bookmate/dao/impl/ForumDaoImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/build/classes/org/bookmate/dao/impl/ForumDaoImpl.class -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/build/classes/org/bookmate/dao/impl/RecordDaoImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/build/classes/org/bookmate/dao/impl/RecordDaoImpl.class -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/build/classes/org/bookmate/entities/AdminMessage.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/build/classes/org/bookmate/entities/AdminMessage.class -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/build/classes/org/bookmate/entities/BorrowRecord.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/build/classes/org/bookmate/entities/BorrowRecord.class -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/build/classes/org/bookmate/entities/BrowseRecord.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/build/classes/org/bookmate/entities/BrowseRecord.class -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/build/classes/org/bookmate/entities/ForumComment.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/build/classes/org/bookmate/entities/ForumComment.class -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/build/classes/org/bookmate/handler/api/MainHandler.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/build/classes/org/bookmate/handler/api/MainHandler.class -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/build/classes/org/bookmate/service/BorrowService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/build/classes/org/bookmate/service/BorrowService.class -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/build/classes/org/bookmate/service/RecordService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/build/classes/org/bookmate/service/RecordService.class -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/WebContent/WEB-INF/lib/mysql-connector-java-5.1.10-bin.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/WebContent/WEB-INF/lib/mysql-connector-java-5.1.10-bin.jar -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/WebContent/WEB-INF/lib/spring-expression-4.0.0.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/WebContent/WEB-INF/lib/spring-expression-4.0.0.RELEASE.jar -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/build/classes/org/bookmate/entities/BookClassifyTwo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/build/classes/org/bookmate/entities/BookClassifyTwo.class -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/build/classes/org/bookmate/entities/ForumAndComment.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/build/classes/org/bookmate/entities/ForumAndComment.class -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/build/classes/org/bookmate/handler/admin/BookHandler.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/build/classes/org/bookmate/handler/admin/BookHandler.class -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/build/classes/org/bookmate/handler/admin/UserHandler.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/build/classes/org/bookmate/handler/admin/UserHandler.class -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/build/classes/org/bookmate/entities/BookRecommendResult.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/build/classes/org/bookmate/entities/BookRecommendResult.class -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/build/classes/org/bookmate/entities/UserRecommendResult.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/build/classes/org/bookmate/entities/UserRecommendResult.class -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/build/classes/org/bookmate/handler/admin/AdminHandler.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/build/classes/org/bookmate/handler/admin/AdminHandler.class -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/build/classes/org/bookmate/handler/admin/BorrowHandler.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/build/classes/org/bookmate/handler/admin/BorrowHandler.class -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/build/classes/org/bookmate/handler/admin/IndexHandler.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/build/classes/org/bookmate/handler/admin/IndexHandler.class -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/build/classes/org/bookmate/handler/api/BookAPIHandler.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/build/classes/org/bookmate/handler/api/BookAPIHandler.class -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/build/classes/org/bookmate/handler/api/ForumAPIHandler.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/build/classes/org/bookmate/handler/api/ForumAPIHandler.class -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/build/classes/org/bookmate/handler/api/ScanAPIHandler.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/build/classes/org/bookmate/handler/api/ScanAPIHandler.class -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/build/classes/org/bookmate/handler/api/UserAPIHandler.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/build/classes/org/bookmate/handler/api/UserAPIHandler.class -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/build/classes/org/bookmate/service/impl/BookServiceImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/build/classes/org/bookmate/service/impl/BookServiceImpl.class -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/build/classes/org/bookmate/service/impl/UserServiceImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/build/classes/org/bookmate/service/impl/UserServiceImpl.class -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/WebContent/WEB-INF/lib/com.springsource.net.sf.cglib-2.2.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/WebContent/WEB-INF/lib/com.springsource.net.sf.cglib-2.2.0.jar -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/build/classes/org/bookmate/service/impl/AdminServiceImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/build/classes/org/bookmate/service/impl/AdminServiceImpl.class -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/build/classes/org/bookmate/service/impl/BorrowServiceImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/build/classes/org/bookmate/service/impl/BorrowServiceImpl.class -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/build/classes/org/bookmate/service/impl/ForumServiceImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/build/classes/org/bookmate/service/impl/ForumServiceImpl.class -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/build/classes/org/bookmate/service/impl/RecordServiceImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/build/classes/org/bookmate/service/impl/RecordServiceImpl.class -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/WebContent/WEB-INF/lib/com.springsource.org.aopalliance-1.0.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/WebContent/WEB-INF/lib/com.springsource.org.aopalliance-1.0.0.jar -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/build/classes/org/bookmate/interceptor/AdminLoginInterceptor.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/build/classes/org/bookmate/interceptor/AdminLoginInterceptor.class -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/build/classes/org/bookmate/util/BufferedImageLuminanceSource.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/build/classes/org/bookmate/util/BufferedImageLuminanceSource.class -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/WebContent/WEB-INF/lib/com.springsource.org.aspectj.weaver-1.6.8.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/WebContent/WEB-INF/lib/com.springsource.org.aspectj.weaver-1.6.8.RELEASE.jar -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/build/classes/org/bookmate/interceptor/AdvancedOperationsInterceptor.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isyangyuhao/book-mate/HEAD/book-mate-server/bookMateServer/build/classes/org/bookmate/interceptor/AdvancedOperationsInterceptor.class -------------------------------------------------------------------------------- /book-mate-wechat/pages/scan-admin/scan-admin.js: -------------------------------------------------------------------------------- 1 | // pages/scan-admin/scan-admin.js 2 | Page({ 3 | data: { 4 | admin: {} 5 | }, 6 | onLoad: function() { 7 | var admin = getApp().globalData.admin; 8 | this.setData({admin: admin}); 9 | console.log(admin); 10 | } 11 | }) -------------------------------------------------------------------------------- /book-mate-wechat/pages/scan-index/scan-index.js: -------------------------------------------------------------------------------- 1 | // pages/scan-index/scan-index.js 2 | Page({ 3 | data: { 4 | }, 5 | loginBtnOnClick: () => { 6 | wx.redirectTo({ 7 | url: '/pages/scan-login/scan-login' 8 | }) 9 | }, 10 | returnIndexBtn: () => { 11 | wx.redirectTo({ 12 | url: '/pages/index/index' 13 | }) 14 | } 15 | }) 16 | -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 3 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8 4 | org.eclipse.jdt.core.compiler.compliance=1.8 5 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 6 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 7 | org.eclipse.jdt.core.compiler.source=1.8 8 | -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/WebContent/index.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" contentType="text/html; charset=UTF-8" 2 | pageEncoding="UTF-8"%> 3 | 4 | 5 | 6 | 7 | 8 | 9 | 借阅伴侣后台管理 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /book-mate-wechat/pages/index/index.js: -------------------------------------------------------------------------------- 1 | //index.js 2 | Page({ 3 | data: { 4 | }, 5 | loginBtnOnClick: () => { 6 | wx.navigateTo({ 7 | url: '/pages/login/login' 8 | }) 9 | }, 10 | registerBtnOnClick: () => { 11 | wx.navigateTo({ 12 | url: '/pages/register/register' 13 | }) 14 | }, 15 | scanEnterBtn: function() { 16 | wx.redirectTo({ 17 | url: '/pages/scan-index/scan-index', 18 | }) 19 | } 20 | }) 21 | -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /book-mate-wechat/pages/scan-main/scan-main.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /book-mate-wechat/pages/scan-index/scan-index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 管理员登录 9 | 返回客户端 10 | 11 | 12 | -------------------------------------------------------------------------------- /book-mate-wechat/pages/index/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 登录 9 | 注册 10 | 11 | 扫码端 12 | 13 | -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/.springBeans: -------------------------------------------------------------------------------- 1 | 2 | 3 | 1 4 | 5 | 6 | 7 | 8 | 9 | 10 | src/springmvc.xml 11 | src/applicationContext.xml 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/.settings/org.eclipse.wst.common.component: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /book-mate-wechat/utils/util.js: -------------------------------------------------------------------------------- 1 | function formatTime(date) { 2 | var year = date.getFullYear() 3 | var month = date.getMonth() + 1 4 | var day = date.getDate() 5 | 6 | var hour = date.getHours() 7 | var minute = date.getMinutes() 8 | var second = date.getSeconds() 9 | 10 | 11 | return [year, month, day].map(formatNumber).join('/') + ' ' + [hour, minute, second].map(formatNumber).join(':') 12 | } 13 | 14 | function formatNumber(n) { 15 | n = n.toString() 16 | return n[1] ? n : '0' + n 17 | } 18 | 19 | module.exports = { 20 | formatTime: formatTime 21 | } 22 | -------------------------------------------------------------------------------- /book-mate-wechat/pages/scan-admin/scan-admin.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 工作证 5 | 6 | 7 | 8 | {{admin.adminUsername}} 9 | 10 | 11 | 12 | 管理员编号:{{admin.adminId}} 13 | 负责职能:{{admin.adminWork}} 14 | 联系邮箱:{{admin.adminEmail}} 15 | 16 | -------------------------------------------------------------------------------- /book-mate-wechat/pages/scan-main/scan-main.wxss: -------------------------------------------------------------------------------- 1 | /* pages/scan-main/scan-main.wxss */ 2 | 3 | button::after { 4 | border: 0; 5 | } 6 | 7 | .btn { 8 | width: 90%; 9 | height: 80rpx; 10 | background-color: #7986cb; 11 | border-radius: 5px; 12 | color: #fff; 13 | text-align: center; 14 | line-height: 80rpx; 15 | font-size: 32rpx; 16 | margin-top: 75rpx; 17 | margin-left: auto; 18 | margin-right: auto; 19 | border: 1px solid #7986cb; 20 | } 21 | 22 | .exitBtn { 23 | background: #fff; 24 | border: 1px solid #7986cb; 25 | color: #7986cb; 26 | } -------------------------------------------------------------------------------- /book-mate-wechat/pages/books-list/books-list.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | {{book.bookName}} 9 | 作者:{{book.bookAuthor}}; 出版社:{{book.bookPress}} 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /book-mate-wechat/pages/user-history/user-history.wxss: -------------------------------------------------------------------------------- 1 | /* pages/user-history/user-history.wxss */ 2 | page { 3 | background-color: rgb(243, 243, 243); 4 | } 5 | 6 | .main-container { 7 | width: 100%; 8 | } 9 | 10 | .card { 11 | width: 100%; 12 | height: 130px; 13 | background: #fff; 14 | box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1); 15 | font-size: 14px; 16 | line-height: 30px; 17 | float: left; 18 | } 19 | 20 | .card view { 21 | margin: 10px; 22 | } 23 | 24 | 25 | image { 26 | width: 10px; 27 | height: 10px; 28 | margin-top: 0; 29 | } 30 | 31 | .grade view { 32 | display: inline; 33 | } -------------------------------------------------------------------------------- /book-mate-server/bookMateServer/.settings/.jsdtscope: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /book-mate-wechat/pages/book-grade/book-grade.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 还书成功,赶紧评个分吧! 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /book-mate-wechat/pages/forum-add/forum-add.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 文章标题 5 | 6 | 7 | 8 | 书评内容 9 | 10 |