├── LICENSE ├── LibrarySystem ├── .classpath ├── .mymetadata ├── .project ├── .settings │ ├── .jsdtscope │ ├── org.eclipse.jdt.core.prefs │ ├── org.eclipse.wst.common.component │ ├── org.eclipse.wst.common.project.facet.core.xml │ ├── org.eclipse.wst.jsdt.ui.superType.container │ └── org.eclipse.wst.jsdt.ui.superType.name ├── WebRoot │ ├── META-INF │ │ └── MANIFEST.MF │ ├── WEB-INF │ │ ├── admin │ │ │ ├── adminManage.jsp │ │ │ ├── backManage.jsp │ │ │ ├── bookManage.jsp │ │ │ ├── bookTypeManage.jsp │ │ │ ├── borrowManage.jsp │ │ │ ├── borrowSearch.jsp │ │ │ ├── forfeitManage.jsp │ │ │ ├── readerManage.jsp │ │ │ └── readerTypeManage.jsp │ │ ├── classes │ │ │ ├── com │ │ │ │ └── cc │ │ │ │ │ └── library │ │ │ │ │ ├── action │ │ │ │ │ ├── AdminInfoAction.class │ │ │ │ │ ├── AdminLoginAction.class │ │ │ │ │ ├── AdminManageAction$1.class │ │ │ │ │ ├── AdminManageAction.class │ │ │ │ │ ├── AuthorizationAction$1.class │ │ │ │ │ ├── AuthorizationAction.class │ │ │ │ │ ├── BackManageAction$1.class │ │ │ │ │ ├── BackManageAction.class │ │ │ │ │ ├── BookAction$1.class │ │ │ │ │ ├── BookAction.class │ │ │ │ │ ├── BookManageAction$1.class │ │ │ │ │ ├── BookManageAction.class │ │ │ │ │ ├── BookTypeManageAction$1.class │ │ │ │ │ ├── BookTypeManageAction.class │ │ │ │ │ ├── BorrowAction$1.class │ │ │ │ │ ├── BorrowAction.class │ │ │ │ │ ├── BorrowManageAction$1.class │ │ │ │ │ ├── BorrowManageAction.class │ │ │ │ │ ├── BorrowSearchAction.class │ │ │ │ │ ├── FileDownloadAction.class │ │ │ │ │ ├── FileUploadAction.class │ │ │ │ │ ├── ForfeitAction$1.class │ │ │ │ │ ├── ForfeitAction.class │ │ │ │ │ ├── ForfeitManageAction$1.class │ │ │ │ │ ├── ForfeitManageAction.class │ │ │ │ │ ├── ReaderInfoAction.class │ │ │ │ │ ├── ReaderLoginAction.class │ │ │ │ │ ├── ReaderManageAction$1.class │ │ │ │ │ ├── ReaderManageAction.class │ │ │ │ │ ├── ReaderTypeManageAction.class │ │ │ │ │ ├── fileuploadmessage.properties │ │ │ │ │ └── interceptor │ │ │ │ │ │ ├── AdminInterceptor.class │ │ │ │ │ │ ├── BackInterceptor.class │ │ │ │ │ │ ├── BookInterceptor.class │ │ │ │ │ │ ├── BookTypeInterceptor.class │ │ │ │ │ │ ├── BorrowInterceptor.class │ │ │ │ │ │ ├── ForfeitInterceptor.class │ │ │ │ │ │ ├── ReaderInterceptor.class │ │ │ │ │ │ └── ReaderTypeInterceptor.class │ │ │ │ │ ├── dao │ │ │ │ │ ├── AdminDao.class │ │ │ │ │ ├── AuthorizationDao.class │ │ │ │ │ ├── BackDao.class │ │ │ │ │ ├── BookDao.class │ │ │ │ │ ├── BookTypeDao.class │ │ │ │ │ ├── BorrowDao.class │ │ │ │ │ ├── ForfeitDao.class │ │ │ │ │ ├── ReaderDao.class │ │ │ │ │ ├── ReaderTypeDao.class │ │ │ │ │ └── impl │ │ │ │ │ │ ├── AdminDaoImpl$1.class │ │ │ │ │ │ ├── AdminDaoImpl.class │ │ │ │ │ │ ├── AuthorizationDaoImpl.class │ │ │ │ │ │ ├── BackDaoImpl$1.class │ │ │ │ │ │ ├── BackDaoImpl$2.class │ │ │ │ │ │ ├── BackDaoImpl.class │ │ │ │ │ │ ├── BookDaoImpl$1.class │ │ │ │ │ │ ├── BookDaoImpl.class │ │ │ │ │ │ ├── BookTypeDaoImpl$1.class │ │ │ │ │ │ ├── BookTypeDaoImpl.class │ │ │ │ │ │ ├── BorrowDaoImpl$1.class │ │ │ │ │ │ ├── BorrowDaoImpl.class │ │ │ │ │ │ ├── ForfeitDaoImpl$1.class │ │ │ │ │ │ ├── ForfeitDaoImpl.class │ │ │ │ │ │ ├── ReaderDaoImpl$1.class │ │ │ │ │ │ ├── ReaderDaoImpl.class │ │ │ │ │ │ └── ReaderTypeDaoImpl.class │ │ │ │ │ ├── domain │ │ │ │ │ ├── Admin.class │ │ │ │ │ ├── Admin.hbm.xml │ │ │ │ │ ├── Authorization.class │ │ │ │ │ ├── Authorization.hbm.xml │ │ │ │ │ ├── BackInfo.class │ │ │ │ │ ├── BackInfo.hbm.xml │ │ │ │ │ ├── Book.class │ │ │ │ │ ├── Book.hbm.xml │ │ │ │ │ ├── BookType.class │ │ │ │ │ ├── BookType.hbm.xml │ │ │ │ │ ├── BorrowInfo.class │ │ │ │ │ ├── BorrowInfo.hbm.xml │ │ │ │ │ ├── ForfeitInfo.class │ │ │ │ │ ├── ForfeitInfo.hbm.xml │ │ │ │ │ ├── PageBean.class │ │ │ │ │ ├── Reader.class │ │ │ │ │ ├── Reader.hbm.xml │ │ │ │ │ ├── ReaderType.class │ │ │ │ │ └── ReaderType.hbm.xml │ │ │ │ │ ├── quartz │ │ │ │ │ └── CheckBorrowInfo.class │ │ │ │ │ ├── service │ │ │ │ │ ├── AdminService.class │ │ │ │ │ ├── AuthorizationService.class │ │ │ │ │ ├── BackService.class │ │ │ │ │ ├── BookService.class │ │ │ │ │ ├── BookTypeService.class │ │ │ │ │ ├── BorrowService.class │ │ │ │ │ ├── ForfeitService.class │ │ │ │ │ ├── ReaderService.class │ │ │ │ │ ├── ReaderTypeService.class │ │ │ │ │ └── impl │ │ │ │ │ │ ├── AdminServiceImpl.class │ │ │ │ │ │ ├── AuthorizationServiceImpl.class │ │ │ │ │ │ ├── BackServiceImpl.class │ │ │ │ │ │ ├── BookServiceImpl.class │ │ │ │ │ │ ├── BookTypeServiceImpl.class │ │ │ │ │ │ ├── BorrowServiceImpl.class │ │ │ │ │ │ ├── ForfeitServiceImpl.class │ │ │ │ │ │ ├── ReaderServiceImpl.class │ │ │ │ │ │ └── ReaderTypeServiceImpl.class │ │ │ │ │ ├── test │ │ │ │ │ ├── BaseSpring.class │ │ │ │ │ ├── TestAdmin.class │ │ │ │ │ ├── TestBack.class │ │ │ │ │ ├── TestBook.class │ │ │ │ │ ├── TestBookType$1.class │ │ │ │ │ ├── TestBookType.class │ │ │ │ │ ├── TestBorrow.class │ │ │ │ │ ├── TestBorrowInfo.class │ │ │ │ │ ├── TestReader.class │ │ │ │ │ └── TestSessionFactory.class │ │ │ │ │ ├── util │ │ │ │ │ ├── CheckUtils.class │ │ │ │ │ └── Md5Utils.class │ │ │ │ │ └── web │ │ │ │ │ └── filter │ │ │ │ │ ├── AdminFilter.class │ │ │ │ │ └── ReaderFilter.class │ │ │ ├── hibernate │ │ │ │ └── hibernate.cfg.xml │ │ │ ├── spring │ │ │ │ ├── applicationContext-admin-info.xml │ │ │ │ ├── applicationContext-admin-login.xml │ │ │ │ ├── applicationContext-admin-manage.xml │ │ │ │ ├── applicationContext-authorization.xml │ │ │ │ ├── applicationContext-back-manage.xml │ │ │ │ ├── applicationContext-book-manage.xml │ │ │ │ ├── applicationContext-book.xml │ │ │ │ ├── applicationContext-bookType-manage.xml │ │ │ │ ├── applicationContext-borrow-manage.xml │ │ │ │ ├── applicationContext-borrow-search.xml │ │ │ │ ├── applicationContext-borrow.xml │ │ │ │ ├── applicationContext-db.xml │ │ │ │ ├── applicationContext-download.xml │ │ │ │ ├── applicationContext-forfeit-manage.xml │ │ │ │ ├── applicationContext-forfeit.xml │ │ │ │ ├── applicationContext-quartz.xml │ │ │ │ ├── applicationContext-reader-info.xml │ │ │ │ ├── applicationContext-reader-login.xml │ │ │ │ ├── applicationContext-reader-manage.xml │ │ │ │ ├── applicationContext-readerType-manage.xml │ │ │ │ ├── applicationContext-upload.xml │ │ │ │ └── applicationContext.xml │ │ │ ├── struts.xml │ │ │ └── struts2 │ │ │ │ ├── struts-admin-info.xml │ │ │ │ ├── struts-admin-login.xml │ │ │ │ ├── struts-admin-manage.xml │ │ │ │ ├── struts-authorization.xml │ │ │ │ ├── struts-back-manage.xml │ │ │ │ ├── struts-book-manage.xml │ │ │ │ ├── struts-book.xml │ │ │ │ ├── struts-bookType-manage.xml │ │ │ │ ├── struts-borrow-manage.xml │ │ │ │ ├── struts-borrow-search.xml │ │ │ │ ├── struts-borrow.xml │ │ │ │ ├── struts-download.xml │ │ │ │ ├── struts-forfeit-manage.xml │ │ │ │ ├── struts-forfeit.xml │ │ │ │ ├── struts-reader-info.xml │ │ │ │ ├── struts-reader-login.xml │ │ │ │ ├── struts-reader-manage.xml │ │ │ │ ├── struts-readerType-manage.xml │ │ │ │ └── struts-upload.xml │ │ ├── error.jsp │ │ ├── lib │ │ │ ├── JXL │ │ │ │ └── jxl.jar │ │ │ ├── db │ │ │ │ └── mysql-connector-java-5.1.10-bin.jar │ │ │ ├── hibernate3.5.6 │ │ │ │ ├── antlr-2.7.6.jar │ │ │ │ ├── commons-collections-3.1.jar │ │ │ │ ├── dom4j-1.6.1.jar │ │ │ │ ├── hibernate-annotations.jar │ │ │ │ ├── hibernate-commons-annotations.jar │ │ │ │ ├── hibernate3.jar │ │ │ │ ├── javassist-3.9.0.GA.jar │ │ │ │ ├── jta-1.1.jar │ │ │ │ ├── slf4j-api-1.5.8.jar │ │ │ │ └── slf4j-log4j12.jar │ │ │ ├── json │ │ │ │ ├── commons-beanutils-1.8.0.jar │ │ │ │ ├── commons-collections-3.2.1.jar │ │ │ │ ├── commons-lang-2.5.jar │ │ │ │ ├── commons-logging-1.1.1.jar │ │ │ │ ├── ezmorph-1.0.6.jar │ │ │ │ └── json-lib-2.4-jdk15.jar │ │ │ ├── junit │ │ │ │ └── junit.jar │ │ │ ├── quartz1.7.3 │ │ │ │ └── quartz-1.7.3.jar │ │ │ ├── spring2.5.5 │ │ │ │ ├── aspectjrt.jar │ │ │ │ ├── aspectjweaver.jar │ │ │ │ ├── c3p0-0.9.1.2.jar │ │ │ │ ├── cglib-nodep-2.1_3.jar │ │ │ │ ├── common-annotations.jar │ │ │ │ ├── commons-lang.jar │ │ │ │ ├── commons-logging.jar │ │ │ │ ├── log4j-1.2.15.jar │ │ │ │ └── spring.jar │ │ │ └── struts2 │ │ │ │ ├── commons-fileupload-1.2.1.jar │ │ │ │ ├── commons-io-1.3.2.jar │ │ │ │ ├── commons-logging.jar │ │ │ │ ├── freemarker-2.3.15.jar │ │ │ │ ├── ognl-2.7.3.jar │ │ │ │ ├── struts2-core-2.1.8.1.jar │ │ │ │ ├── struts2-spring-plugin-2.1.8.1.jar │ │ │ │ └── xwork-core-2.1.6.jar │ │ ├── reader │ │ │ ├── book.jsp │ │ │ ├── borrow.jsp │ │ │ └── forfeit.jsp │ │ └── web.xml │ ├── admin │ │ └── admin.jsp │ ├── adminLogin.jsp │ ├── ajax-lib │ │ └── ajaxutils.js │ ├── css │ │ ├── bootstrap-admin-theme.css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap-theme.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ └── dataTables.bootstrap.css │ ├── download │ │ ├── book.xls │ │ └── reader.xls │ ├── error │ │ ├── 400.jsp │ │ ├── 500.jsp │ │ └── nopass.jsp │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ ├── img │ │ ├── 404.png │ │ ├── 404view.png │ │ ├── 500.png │ │ ├── 500view.jpg │ │ └── nopass.png │ ├── index.jsp │ ├── jQuery │ │ ├── ajaxfileupload.js │ │ └── jquery-3.1.1.min.js │ ├── js │ │ ├── addAdmin.js │ │ ├── addBook.js │ │ ├── addBookNum.js │ │ ├── addBookType.js │ │ ├── addReader.js │ │ ├── addReaderType.js │ │ ├── adminLogin.js │ │ ├── adminUpdateInfo.js │ │ ├── adminUpdatePwd.js │ │ ├── ajax_upload.js │ │ ├── backBook.js │ │ ├── batchAddBook.js │ │ ├── batchAddReader.js │ │ ├── bootstrap-dropdown.min.js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ ├── borrowBook.js │ │ ├── dataTables.bootstrap.js │ │ ├── deleteAdmin.js │ │ ├── deleteBook.js │ │ ├── deleteBookType.js │ │ ├── deleteReader.js │ │ ├── exportBook.js │ │ ├── exportReader.js │ │ ├── getAllBookTypes.js │ │ ├── getAllReaderTypes.js │ │ ├── getBackInfo.js │ │ ├── getBookInfo.js │ │ ├── getBookTypes.js │ │ ├── getBorrowInfo.js │ │ ├── getForfeitInfo.js │ │ ├── getReader.js │ │ ├── getReaderBackInfo.js │ │ ├── getReaderBookInfo.js │ │ ├── getReaderForfeitInfo.js │ │ ├── jquery.dataTables.zh_CN.js │ │ ├── login.js │ │ ├── npm.js │ │ ├── pay.js │ │ ├── reader.js │ │ ├── readerUpdateInfo.js │ │ ├── readerUpdatePwd.js │ │ ├── renewBook.js │ │ ├── updateAdmin.js │ │ ├── updateAuthorization.js │ │ ├── updateBook.js │ │ ├── updateBookType.js │ │ ├── updateReader.js │ │ └── updateReaderType.js │ ├── login.jsp │ └── reader.jsp ├── config │ ├── hibernate │ │ └── hibernate.cfg.xml │ ├── spring │ │ ├── applicationContext-admin-info.xml │ │ ├── applicationContext-admin-login.xml │ │ ├── applicationContext-admin-manage.xml │ │ ├── applicationContext-authorization.xml │ │ ├── applicationContext-back-manage.xml │ │ ├── applicationContext-book-manage.xml │ │ ├── applicationContext-book.xml │ │ ├── applicationContext-bookType-manage.xml │ │ ├── applicationContext-borrow-manage.xml │ │ ├── applicationContext-borrow-search.xml │ │ ├── applicationContext-borrow.xml │ │ ├── applicationContext-db.xml │ │ ├── applicationContext-download.xml │ │ ├── applicationContext-forfeit-manage.xml │ │ ├── applicationContext-forfeit.xml │ │ ├── applicationContext-quartz.xml │ │ ├── applicationContext-reader-info.xml │ │ ├── applicationContext-reader-login.xml │ │ ├── applicationContext-reader-manage.xml │ │ ├── applicationContext-readerType-manage.xml │ │ ├── applicationContext-upload.xml │ │ └── applicationContext.xml │ ├── struts.xml │ └── struts2 │ │ ├── struts-admin-info.xml │ │ ├── struts-admin-login.xml │ │ ├── struts-admin-manage.xml │ │ ├── struts-authorization.xml │ │ ├── struts-back-manage.xml │ │ ├── struts-book-manage.xml │ │ ├── struts-book.xml │ │ ├── struts-bookType-manage.xml │ │ ├── struts-borrow-manage.xml │ │ ├── struts-borrow-search.xml │ │ ├── struts-borrow.xml │ │ ├── struts-download.xml │ │ ├── struts-forfeit-manage.xml │ │ ├── struts-forfeit.xml │ │ ├── struts-reader-info.xml │ │ ├── struts-reader-login.xml │ │ ├── struts-reader-manage.xml │ │ ├── struts-readerType-manage.xml │ │ └── struts-upload.xml ├── src │ └── com │ │ └── cc │ │ └── library │ │ ├── action │ │ ├── AdminInfoAction.java │ │ ├── AdminLoginAction.java │ │ ├── AdminManageAction.java │ │ ├── AuthorizationAction.java │ │ ├── BackManageAction.java │ │ ├── BookAction.java │ │ ├── BookManageAction.java │ │ ├── BookTypeManageAction.java │ │ ├── BorrowAction.java │ │ ├── BorrowManageAction.java │ │ ├── BorrowSearchAction.java │ │ ├── FileDownloadAction.java │ │ ├── FileUploadAction.java │ │ ├── ForfeitAction.java │ │ ├── ForfeitManageAction.java │ │ ├── ReaderInfoAction.java │ │ ├── ReaderLoginAction.java │ │ ├── ReaderManageAction.java │ │ ├── ReaderTypeManageAction.java │ │ ├── fileuploadmessage.properties │ │ └── interceptor │ │ │ ├── AdminInterceptor.java │ │ │ ├── BackInterceptor.java │ │ │ ├── BookInterceptor.java │ │ │ ├── BookTypeInterceptor.java │ │ │ ├── BorrowInterceptor.java │ │ │ ├── ForfeitInterceptor.java │ │ │ ├── ReaderInterceptor.java │ │ │ └── ReaderTypeInterceptor.java │ │ ├── dao │ │ ├── AdminDao.java │ │ ├── AuthorizationDao.java │ │ ├── BackDao.java │ │ ├── BookDao.java │ │ ├── BookTypeDao.java │ │ ├── BorrowDao.java │ │ ├── ForfeitDao.java │ │ ├── ReaderDao.java │ │ ├── ReaderTypeDao.java │ │ └── impl │ │ │ ├── AdminDaoImpl.java │ │ │ ├── AuthorizationDaoImpl.java │ │ │ ├── BackDaoImpl.java │ │ │ ├── BookDaoImpl.java │ │ │ ├── BookTypeDaoImpl.java │ │ │ ├── BorrowDaoImpl.java │ │ │ ├── ForfeitDaoImpl.java │ │ │ ├── ReaderDaoImpl.java │ │ │ └── ReaderTypeDaoImpl.java │ │ ├── domain │ │ ├── Admin.hbm.xml │ │ ├── Admin.java │ │ ├── Authorization.hbm.xml │ │ ├── Authorization.java │ │ ├── BackInfo.hbm.xml │ │ ├── BackInfo.java │ │ ├── Book.hbm.xml │ │ ├── Book.java │ │ ├── BookType.hbm.xml │ │ ├── BookType.java │ │ ├── BorrowInfo.hbm.xml │ │ ├── BorrowInfo.java │ │ ├── ForfeitInfo.hbm.xml │ │ ├── ForfeitInfo.java │ │ ├── PageBean.java │ │ ├── Reader.hbm.xml │ │ ├── Reader.java │ │ ├── ReaderType.hbm.xml │ │ └── ReaderType.java │ │ ├── quartz │ │ └── CheckBorrowInfo.java │ │ ├── service │ │ ├── AdminService.java │ │ ├── AuthorizationService.java │ │ ├── BackService.java │ │ ├── BookService.java │ │ ├── BookTypeService.java │ │ ├── BorrowService.java │ │ ├── ForfeitService.java │ │ ├── ReaderService.java │ │ ├── ReaderTypeService.java │ │ └── impl │ │ │ ├── AdminServiceImpl.java │ │ │ ├── AuthorizationServiceImpl.java │ │ │ ├── BackServiceImpl.java │ │ │ ├── BookServiceImpl.java │ │ │ ├── BookTypeServiceImpl.java │ │ │ ├── BorrowServiceImpl.java │ │ │ ├── ForfeitServiceImpl.java │ │ │ ├── ReaderServiceImpl.java │ │ │ └── ReaderTypeServiceImpl.java │ │ ├── util │ │ ├── CheckUtils.java │ │ └── Md5Utils.java │ │ └── web │ │ └── filter │ │ ├── AdminFilter.java │ │ └── ReaderFilter.java └── test │ └── com │ └── cc │ └── library │ └── test │ ├── BaseSpring.java │ ├── TestAdmin.java │ ├── TestBack.java │ ├── TestBook.java │ ├── TestBookType.java │ ├── TestBorrow.java │ ├── TestBorrowInfo.java │ ├── TestReader.java │ └── TestSessionFactory.java ├── README.md ├── database └── 图书馆管理系统.sql └── img ├── 0.png ├── 1.png ├── 10.png ├── 11.png ├── 12.png ├── 13.png ├── 14.png ├── 15.png ├── 16.png ├── 17.png ├── 18.png ├── 19.png ├── 2.png ├── 20.png ├── 21.png ├── 22.png ├── 23.png ├── 24.png ├── 25.png ├── 26.png ├── 27.png ├── 28.png ├── 29.png ├── 3.png ├── 30.png ├── 31.png ├── 4.png ├── 5.png ├── 6.png ├── 7.png ├── 8.png └── 9.png /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LICENSE -------------------------------------------------------------------------------- /LibrarySystem/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/.classpath -------------------------------------------------------------------------------- /LibrarySystem/.mymetadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/.mymetadata -------------------------------------------------------------------------------- /LibrarySystem/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/.project -------------------------------------------------------------------------------- /LibrarySystem/.settings/.jsdtscope: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/.settings/.jsdtscope -------------------------------------------------------------------------------- /LibrarySystem/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /LibrarySystem/.settings/org.eclipse.wst.common.component: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/.settings/org.eclipse.wst.common.component -------------------------------------------------------------------------------- /LibrarySystem/.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/.settings/org.eclipse.wst.common.project.facet.core.xml -------------------------------------------------------------------------------- /LibrarySystem/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /LibrarySystem/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/admin/adminManage.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/admin/adminManage.jsp -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/admin/backManage.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/admin/backManage.jsp -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/admin/bookManage.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/admin/bookManage.jsp -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/admin/bookTypeManage.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/admin/bookTypeManage.jsp -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/admin/borrowManage.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/admin/borrowManage.jsp -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/admin/borrowSearch.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/admin/borrowSearch.jsp -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/admin/forfeitManage.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/admin/forfeitManage.jsp -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/admin/readerManage.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/admin/readerManage.jsp -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/admin/readerTypeManage.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/admin/readerTypeManage.jsp -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/AdminInfoAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/AdminInfoAction.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/AdminLoginAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/AdminLoginAction.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/AdminManageAction$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/AdminManageAction$1.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/AdminManageAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/AdminManageAction.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/AuthorizationAction$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/AuthorizationAction$1.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/AuthorizationAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/AuthorizationAction.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/BackManageAction$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/BackManageAction$1.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/BackManageAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/BackManageAction.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/BookAction$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/BookAction$1.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/BookAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/BookAction.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/BookManageAction$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/BookManageAction$1.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/BookManageAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/BookManageAction.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/BookTypeManageAction$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/BookTypeManageAction$1.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/BookTypeManageAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/BookTypeManageAction.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/BorrowAction$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/BorrowAction$1.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/BorrowAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/BorrowAction.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/BorrowManageAction$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/BorrowManageAction$1.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/BorrowManageAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/BorrowManageAction.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/BorrowSearchAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/BorrowSearchAction.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/FileDownloadAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/FileDownloadAction.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/FileUploadAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/FileUploadAction.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/ForfeitAction$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/ForfeitAction$1.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/ForfeitAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/ForfeitAction.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/ForfeitManageAction$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/ForfeitManageAction$1.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/ForfeitManageAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/ForfeitManageAction.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/ReaderInfoAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/ReaderInfoAction.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/ReaderLoginAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/ReaderLoginAction.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/ReaderManageAction$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/ReaderManageAction$1.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/ReaderManageAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/ReaderManageAction.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/ReaderTypeManageAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/ReaderTypeManageAction.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/fileuploadmessage.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/fileuploadmessage.properties -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/interceptor/AdminInterceptor.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/interceptor/AdminInterceptor.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/interceptor/BackInterceptor.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/interceptor/BackInterceptor.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/interceptor/BookInterceptor.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/interceptor/BookInterceptor.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/interceptor/BookTypeInterceptor.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/interceptor/BookTypeInterceptor.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/interceptor/BorrowInterceptor.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/interceptor/BorrowInterceptor.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/interceptor/ForfeitInterceptor.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/interceptor/ForfeitInterceptor.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/interceptor/ReaderInterceptor.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/interceptor/ReaderInterceptor.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/interceptor/ReaderTypeInterceptor.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/action/interceptor/ReaderTypeInterceptor.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/AdminDao.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/AdminDao.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/AuthorizationDao.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/AuthorizationDao.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/BackDao.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/BackDao.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/BookDao.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/BookDao.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/BookTypeDao.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/BookTypeDao.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/BorrowDao.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/BorrowDao.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/ForfeitDao.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/ForfeitDao.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/ReaderDao.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/ReaderDao.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/ReaderTypeDao.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/ReaderTypeDao.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/impl/AdminDaoImpl$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/impl/AdminDaoImpl$1.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/impl/AdminDaoImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/impl/AdminDaoImpl.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/impl/AuthorizationDaoImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/impl/AuthorizationDaoImpl.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/impl/BackDaoImpl$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/impl/BackDaoImpl$1.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/impl/BackDaoImpl$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/impl/BackDaoImpl$2.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/impl/BackDaoImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/impl/BackDaoImpl.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/impl/BookDaoImpl$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/impl/BookDaoImpl$1.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/impl/BookDaoImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/impl/BookDaoImpl.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/impl/BookTypeDaoImpl$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/impl/BookTypeDaoImpl$1.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/impl/BookTypeDaoImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/impl/BookTypeDaoImpl.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/impl/BorrowDaoImpl$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/impl/BorrowDaoImpl$1.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/impl/BorrowDaoImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/impl/BorrowDaoImpl.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/impl/ForfeitDaoImpl$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/impl/ForfeitDaoImpl$1.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/impl/ForfeitDaoImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/impl/ForfeitDaoImpl.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/impl/ReaderDaoImpl$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/impl/ReaderDaoImpl$1.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/impl/ReaderDaoImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/impl/ReaderDaoImpl.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/impl/ReaderTypeDaoImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/dao/impl/ReaderTypeDaoImpl.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/domain/Admin.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/domain/Admin.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/domain/Admin.hbm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/domain/Admin.hbm.xml -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/domain/Authorization.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/domain/Authorization.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/domain/Authorization.hbm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/domain/Authorization.hbm.xml -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/domain/BackInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/domain/BackInfo.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/domain/BackInfo.hbm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/domain/BackInfo.hbm.xml -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/domain/Book.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/domain/Book.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/domain/Book.hbm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/domain/Book.hbm.xml -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/domain/BookType.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/domain/BookType.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/domain/BookType.hbm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/domain/BookType.hbm.xml -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/domain/BorrowInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/domain/BorrowInfo.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/domain/BorrowInfo.hbm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/domain/BorrowInfo.hbm.xml -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/domain/ForfeitInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/domain/ForfeitInfo.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/domain/ForfeitInfo.hbm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/domain/ForfeitInfo.hbm.xml -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/domain/PageBean.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/domain/PageBean.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/domain/Reader.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/domain/Reader.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/domain/Reader.hbm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/domain/Reader.hbm.xml -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/domain/ReaderType.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/domain/ReaderType.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/domain/ReaderType.hbm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/domain/ReaderType.hbm.xml -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/quartz/CheckBorrowInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/quartz/CheckBorrowInfo.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/service/AdminService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/service/AdminService.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/service/AuthorizationService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/service/AuthorizationService.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/service/BackService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/service/BackService.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/service/BookService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/service/BookService.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/service/BookTypeService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/service/BookTypeService.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/service/BorrowService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/service/BorrowService.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/service/ForfeitService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/service/ForfeitService.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/service/ReaderService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/service/ReaderService.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/service/ReaderTypeService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/service/ReaderTypeService.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/service/impl/AdminServiceImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/service/impl/AdminServiceImpl.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/service/impl/AuthorizationServiceImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/service/impl/AuthorizationServiceImpl.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/service/impl/BackServiceImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/service/impl/BackServiceImpl.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/service/impl/BookServiceImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/service/impl/BookServiceImpl.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/service/impl/BookTypeServiceImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/service/impl/BookTypeServiceImpl.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/service/impl/BorrowServiceImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/service/impl/BorrowServiceImpl.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/service/impl/ForfeitServiceImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/service/impl/ForfeitServiceImpl.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/service/impl/ReaderServiceImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/service/impl/ReaderServiceImpl.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/service/impl/ReaderTypeServiceImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/service/impl/ReaderTypeServiceImpl.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/test/BaseSpring.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/test/BaseSpring.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/test/TestAdmin.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/test/TestAdmin.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/test/TestBack.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/test/TestBack.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/test/TestBook.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/test/TestBook.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/test/TestBookType$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/test/TestBookType$1.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/test/TestBookType.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/test/TestBookType.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/test/TestBorrow.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/test/TestBorrow.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/test/TestBorrowInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/test/TestBorrowInfo.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/test/TestReader.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/test/TestReader.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/test/TestSessionFactory.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/test/TestSessionFactory.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/util/CheckUtils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/util/CheckUtils.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/util/Md5Utils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/util/Md5Utils.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/web/filter/AdminFilter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/web/filter/AdminFilter.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/web/filter/ReaderFilter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/com/cc/library/web/filter/ReaderFilter.class -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/hibernate/hibernate.cfg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/hibernate/hibernate.cfg.xml -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/spring/applicationContext-admin-info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/spring/applicationContext-admin-info.xml -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/spring/applicationContext-admin-login.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/spring/applicationContext-admin-login.xml -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/spring/applicationContext-admin-manage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/spring/applicationContext-admin-manage.xml -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/spring/applicationContext-authorization.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/spring/applicationContext-authorization.xml -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/spring/applicationContext-back-manage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/spring/applicationContext-back-manage.xml -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/spring/applicationContext-book-manage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/spring/applicationContext-book-manage.xml -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/spring/applicationContext-book.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/spring/applicationContext-book.xml -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/spring/applicationContext-bookType-manage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/spring/applicationContext-bookType-manage.xml -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/spring/applicationContext-borrow-manage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/spring/applicationContext-borrow-manage.xml -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/spring/applicationContext-borrow-search.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/spring/applicationContext-borrow-search.xml -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/spring/applicationContext-borrow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/spring/applicationContext-borrow.xml -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/spring/applicationContext-db.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/spring/applicationContext-db.xml -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/spring/applicationContext-download.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/spring/applicationContext-download.xml -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/spring/applicationContext-forfeit-manage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/spring/applicationContext-forfeit-manage.xml -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/spring/applicationContext-forfeit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/spring/applicationContext-forfeit.xml -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/spring/applicationContext-quartz.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/spring/applicationContext-quartz.xml -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/spring/applicationContext-reader-info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/spring/applicationContext-reader-info.xml -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/spring/applicationContext-reader-login.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/spring/applicationContext-reader-login.xml -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/spring/applicationContext-reader-manage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/spring/applicationContext-reader-manage.xml -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/spring/applicationContext-readerType-manage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/spring/applicationContext-readerType-manage.xml -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/spring/applicationContext-upload.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/spring/applicationContext-upload.xml -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/spring/applicationContext.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/spring/applicationContext.xml -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/struts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/struts.xml -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/struts2/struts-admin-info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/struts2/struts-admin-info.xml -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/struts2/struts-admin-login.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/struts2/struts-admin-login.xml -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/struts2/struts-admin-manage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/struts2/struts-admin-manage.xml -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/struts2/struts-authorization.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/struts2/struts-authorization.xml -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/struts2/struts-back-manage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/struts2/struts-back-manage.xml -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/struts2/struts-book-manage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/struts2/struts-book-manage.xml -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/struts2/struts-book.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/struts2/struts-book.xml -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/struts2/struts-bookType-manage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/struts2/struts-bookType-manage.xml -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/struts2/struts-borrow-manage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/struts2/struts-borrow-manage.xml -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/struts2/struts-borrow-search.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/struts2/struts-borrow-search.xml -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/struts2/struts-borrow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/struts2/struts-borrow.xml -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/struts2/struts-download.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/struts2/struts-download.xml -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/struts2/struts-forfeit-manage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/struts2/struts-forfeit-manage.xml -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/struts2/struts-forfeit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/struts2/struts-forfeit.xml -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/struts2/struts-reader-info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/struts2/struts-reader-info.xml -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/struts2/struts-reader-login.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/struts2/struts-reader-login.xml -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/struts2/struts-reader-manage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/struts2/struts-reader-manage.xml -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/struts2/struts-readerType-manage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/struts2/struts-readerType-manage.xml -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/classes/struts2/struts-upload.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/classes/struts2/struts-upload.xml -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/error.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/error.jsp -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/lib/JXL/jxl.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/lib/JXL/jxl.jar -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/lib/db/mysql-connector-java-5.1.10-bin.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/lib/db/mysql-connector-java-5.1.10-bin.jar -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/lib/hibernate3.5.6/antlr-2.7.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/lib/hibernate3.5.6/antlr-2.7.6.jar -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/lib/hibernate3.5.6/commons-collections-3.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/lib/hibernate3.5.6/commons-collections-3.1.jar -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/lib/hibernate3.5.6/dom4j-1.6.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/lib/hibernate3.5.6/dom4j-1.6.1.jar -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/lib/hibernate3.5.6/hibernate-annotations.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/lib/hibernate3.5.6/hibernate-annotations.jar -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/lib/hibernate3.5.6/hibernate-commons-annotations.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/lib/hibernate3.5.6/hibernate-commons-annotations.jar -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/lib/hibernate3.5.6/hibernate3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/lib/hibernate3.5.6/hibernate3.jar -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/lib/hibernate3.5.6/javassist-3.9.0.GA.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/lib/hibernate3.5.6/javassist-3.9.0.GA.jar -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/lib/hibernate3.5.6/jta-1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/lib/hibernate3.5.6/jta-1.1.jar -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/lib/hibernate3.5.6/slf4j-api-1.5.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/lib/hibernate3.5.6/slf4j-api-1.5.8.jar -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/lib/hibernate3.5.6/slf4j-log4j12.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/lib/hibernate3.5.6/slf4j-log4j12.jar -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/lib/json/commons-beanutils-1.8.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/lib/json/commons-beanutils-1.8.0.jar -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/lib/json/commons-collections-3.2.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/lib/json/commons-collections-3.2.1.jar -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/lib/json/commons-lang-2.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/lib/json/commons-lang-2.5.jar -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/lib/json/commons-logging-1.1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/lib/json/commons-logging-1.1.1.jar -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/lib/json/ezmorph-1.0.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/lib/json/ezmorph-1.0.6.jar -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/lib/json/json-lib-2.4-jdk15.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/lib/json/json-lib-2.4-jdk15.jar -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/lib/junit/junit.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/lib/junit/junit.jar -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/lib/quartz1.7.3/quartz-1.7.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/lib/quartz1.7.3/quartz-1.7.3.jar -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/lib/spring2.5.5/aspectjrt.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/lib/spring2.5.5/aspectjrt.jar -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/lib/spring2.5.5/aspectjweaver.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/lib/spring2.5.5/aspectjweaver.jar -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/lib/spring2.5.5/c3p0-0.9.1.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/lib/spring2.5.5/c3p0-0.9.1.2.jar -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/lib/spring2.5.5/cglib-nodep-2.1_3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/lib/spring2.5.5/cglib-nodep-2.1_3.jar -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/lib/spring2.5.5/common-annotations.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/lib/spring2.5.5/common-annotations.jar -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/lib/spring2.5.5/commons-lang.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/lib/spring2.5.5/commons-lang.jar -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/lib/spring2.5.5/commons-logging.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/lib/spring2.5.5/commons-logging.jar -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/lib/spring2.5.5/log4j-1.2.15.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/lib/spring2.5.5/log4j-1.2.15.jar -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/lib/spring2.5.5/spring.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/lib/spring2.5.5/spring.jar -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/lib/struts2/commons-fileupload-1.2.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/lib/struts2/commons-fileupload-1.2.1.jar -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/lib/struts2/commons-io-1.3.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/lib/struts2/commons-io-1.3.2.jar -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/lib/struts2/commons-logging.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/lib/struts2/commons-logging.jar -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/lib/struts2/freemarker-2.3.15.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/lib/struts2/freemarker-2.3.15.jar -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/lib/struts2/ognl-2.7.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/lib/struts2/ognl-2.7.3.jar -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/lib/struts2/struts2-core-2.1.8.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/lib/struts2/struts2-core-2.1.8.1.jar -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/lib/struts2/struts2-spring-plugin-2.1.8.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/lib/struts2/struts2-spring-plugin-2.1.8.1.jar -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/lib/struts2/xwork-core-2.1.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/lib/struts2/xwork-core-2.1.6.jar -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/reader/book.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/reader/book.jsp -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/reader/borrow.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/reader/borrow.jsp -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/reader/forfeit.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/reader/forfeit.jsp -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/WEB-INF/web.xml -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/admin/admin.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/admin/admin.jsp -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/adminLogin.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/adminLogin.jsp -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/ajax-lib/ajaxutils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/ajax-lib/ajaxutils.js -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/css/bootstrap-admin-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/css/bootstrap-admin-theme.css -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/css/bootstrap-theme.css -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/css/bootstrap.css -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/css/bootstrap.css.map -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/css/bootstrap.min.css -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/css/dataTables.bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/css/dataTables.bootstrap.css -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/download/book.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/download/book.xls -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/download/reader.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/download/reader.xls -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/error/400.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/error/400.jsp -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/error/500.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/error/500.jsp -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/error/nopass.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/error/nopass.jsp -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/img/404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/img/404.png -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/img/404view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/img/404view.png -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/img/500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/img/500.png -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/img/500view.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/img/500view.jpg -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/img/nopass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/img/nopass.png -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/index.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/index.jsp -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/jQuery/ajaxfileupload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/jQuery/ajaxfileupload.js -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/jQuery/jquery-3.1.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/jQuery/jquery-3.1.1.min.js -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/js/addAdmin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/js/addAdmin.js -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/js/addBook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/js/addBook.js -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/js/addBookNum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/js/addBookNum.js -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/js/addBookType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/js/addBookType.js -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/js/addReader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/js/addReader.js -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/js/addReaderType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/js/addReaderType.js -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/js/adminLogin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/js/adminLogin.js -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/js/adminUpdateInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/js/adminUpdateInfo.js -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/js/adminUpdatePwd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/js/adminUpdatePwd.js -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/js/ajax_upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/js/ajax_upload.js -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/js/backBook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/js/backBook.js -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/js/batchAddBook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/js/batchAddBook.js -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/js/batchAddReader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/js/batchAddReader.js -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/js/bootstrap-dropdown.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/js/bootstrap-dropdown.min.js -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/js/bootstrap.js -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/js/bootstrap.min.js -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/js/borrowBook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/js/borrowBook.js -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/js/dataTables.bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/js/dataTables.bootstrap.js -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/js/deleteAdmin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/js/deleteAdmin.js -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/js/deleteBook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/js/deleteBook.js -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/js/deleteBookType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/js/deleteBookType.js -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/js/deleteReader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/js/deleteReader.js -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/js/exportBook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/js/exportBook.js -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/js/exportReader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/js/exportReader.js -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/js/getAllBookTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/js/getAllBookTypes.js -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/js/getAllReaderTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/js/getAllReaderTypes.js -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/js/getBackInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/js/getBackInfo.js -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/js/getBookInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/js/getBookInfo.js -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/js/getBookTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/js/getBookTypes.js -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/js/getBorrowInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/js/getBorrowInfo.js -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/js/getForfeitInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/js/getForfeitInfo.js -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/js/getReader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/js/getReader.js -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/js/getReaderBackInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/js/getReaderBackInfo.js -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/js/getReaderBookInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/js/getReaderBookInfo.js -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/js/getReaderForfeitInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/js/getReaderForfeitInfo.js -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/js/jquery.dataTables.zh_CN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/js/jquery.dataTables.zh_CN.js -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/js/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/js/login.js -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/js/npm.js -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/js/pay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/js/pay.js -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/js/reader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/js/reader.js -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/js/readerUpdateInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/js/readerUpdateInfo.js -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/js/readerUpdatePwd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/js/readerUpdatePwd.js -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/js/renewBook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/js/renewBook.js -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/js/updateAdmin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/js/updateAdmin.js -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/js/updateAuthorization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/js/updateAuthorization.js -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/js/updateBook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/js/updateBook.js -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/js/updateBookType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/js/updateBookType.js -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/js/updateReader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/js/updateReader.js -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/js/updateReaderType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/js/updateReaderType.js -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/login.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/login.jsp -------------------------------------------------------------------------------- /LibrarySystem/WebRoot/reader.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/WebRoot/reader.jsp -------------------------------------------------------------------------------- /LibrarySystem/config/hibernate/hibernate.cfg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/config/hibernate/hibernate.cfg.xml -------------------------------------------------------------------------------- /LibrarySystem/config/spring/applicationContext-admin-info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/config/spring/applicationContext-admin-info.xml -------------------------------------------------------------------------------- /LibrarySystem/config/spring/applicationContext-admin-login.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/config/spring/applicationContext-admin-login.xml -------------------------------------------------------------------------------- /LibrarySystem/config/spring/applicationContext-admin-manage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/config/spring/applicationContext-admin-manage.xml -------------------------------------------------------------------------------- /LibrarySystem/config/spring/applicationContext-authorization.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/config/spring/applicationContext-authorization.xml -------------------------------------------------------------------------------- /LibrarySystem/config/spring/applicationContext-back-manage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/config/spring/applicationContext-back-manage.xml -------------------------------------------------------------------------------- /LibrarySystem/config/spring/applicationContext-book-manage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/config/spring/applicationContext-book-manage.xml -------------------------------------------------------------------------------- /LibrarySystem/config/spring/applicationContext-book.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/config/spring/applicationContext-book.xml -------------------------------------------------------------------------------- /LibrarySystem/config/spring/applicationContext-bookType-manage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/config/spring/applicationContext-bookType-manage.xml -------------------------------------------------------------------------------- /LibrarySystem/config/spring/applicationContext-borrow-manage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/config/spring/applicationContext-borrow-manage.xml -------------------------------------------------------------------------------- /LibrarySystem/config/spring/applicationContext-borrow-search.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/config/spring/applicationContext-borrow-search.xml -------------------------------------------------------------------------------- /LibrarySystem/config/spring/applicationContext-borrow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/config/spring/applicationContext-borrow.xml -------------------------------------------------------------------------------- /LibrarySystem/config/spring/applicationContext-db.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/config/spring/applicationContext-db.xml -------------------------------------------------------------------------------- /LibrarySystem/config/spring/applicationContext-download.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/config/spring/applicationContext-download.xml -------------------------------------------------------------------------------- /LibrarySystem/config/spring/applicationContext-forfeit-manage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/config/spring/applicationContext-forfeit-manage.xml -------------------------------------------------------------------------------- /LibrarySystem/config/spring/applicationContext-forfeit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/config/spring/applicationContext-forfeit.xml -------------------------------------------------------------------------------- /LibrarySystem/config/spring/applicationContext-quartz.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/config/spring/applicationContext-quartz.xml -------------------------------------------------------------------------------- /LibrarySystem/config/spring/applicationContext-reader-info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/config/spring/applicationContext-reader-info.xml -------------------------------------------------------------------------------- /LibrarySystem/config/spring/applicationContext-reader-login.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/config/spring/applicationContext-reader-login.xml -------------------------------------------------------------------------------- /LibrarySystem/config/spring/applicationContext-reader-manage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/config/spring/applicationContext-reader-manage.xml -------------------------------------------------------------------------------- /LibrarySystem/config/spring/applicationContext-readerType-manage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/config/spring/applicationContext-readerType-manage.xml -------------------------------------------------------------------------------- /LibrarySystem/config/spring/applicationContext-upload.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/config/spring/applicationContext-upload.xml -------------------------------------------------------------------------------- /LibrarySystem/config/spring/applicationContext.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/config/spring/applicationContext.xml -------------------------------------------------------------------------------- /LibrarySystem/config/struts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/config/struts.xml -------------------------------------------------------------------------------- /LibrarySystem/config/struts2/struts-admin-info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/config/struts2/struts-admin-info.xml -------------------------------------------------------------------------------- /LibrarySystem/config/struts2/struts-admin-login.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/config/struts2/struts-admin-login.xml -------------------------------------------------------------------------------- /LibrarySystem/config/struts2/struts-admin-manage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/config/struts2/struts-admin-manage.xml -------------------------------------------------------------------------------- /LibrarySystem/config/struts2/struts-authorization.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/config/struts2/struts-authorization.xml -------------------------------------------------------------------------------- /LibrarySystem/config/struts2/struts-back-manage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/config/struts2/struts-back-manage.xml -------------------------------------------------------------------------------- /LibrarySystem/config/struts2/struts-book-manage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/config/struts2/struts-book-manage.xml -------------------------------------------------------------------------------- /LibrarySystem/config/struts2/struts-book.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/config/struts2/struts-book.xml -------------------------------------------------------------------------------- /LibrarySystem/config/struts2/struts-bookType-manage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/config/struts2/struts-bookType-manage.xml -------------------------------------------------------------------------------- /LibrarySystem/config/struts2/struts-borrow-manage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/config/struts2/struts-borrow-manage.xml -------------------------------------------------------------------------------- /LibrarySystem/config/struts2/struts-borrow-search.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/config/struts2/struts-borrow-search.xml -------------------------------------------------------------------------------- /LibrarySystem/config/struts2/struts-borrow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/config/struts2/struts-borrow.xml -------------------------------------------------------------------------------- /LibrarySystem/config/struts2/struts-download.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/config/struts2/struts-download.xml -------------------------------------------------------------------------------- /LibrarySystem/config/struts2/struts-forfeit-manage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/config/struts2/struts-forfeit-manage.xml -------------------------------------------------------------------------------- /LibrarySystem/config/struts2/struts-forfeit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/config/struts2/struts-forfeit.xml -------------------------------------------------------------------------------- /LibrarySystem/config/struts2/struts-reader-info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/config/struts2/struts-reader-info.xml -------------------------------------------------------------------------------- /LibrarySystem/config/struts2/struts-reader-login.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/config/struts2/struts-reader-login.xml -------------------------------------------------------------------------------- /LibrarySystem/config/struts2/struts-reader-manage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/config/struts2/struts-reader-manage.xml -------------------------------------------------------------------------------- /LibrarySystem/config/struts2/struts-readerType-manage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/config/struts2/struts-readerType-manage.xml -------------------------------------------------------------------------------- /LibrarySystem/config/struts2/struts-upload.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/config/struts2/struts-upload.xml -------------------------------------------------------------------------------- /LibrarySystem/src/com/cc/library/action/AdminInfoAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/src/com/cc/library/action/AdminInfoAction.java -------------------------------------------------------------------------------- /LibrarySystem/src/com/cc/library/action/AdminLoginAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/src/com/cc/library/action/AdminLoginAction.java -------------------------------------------------------------------------------- /LibrarySystem/src/com/cc/library/action/AdminManageAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/src/com/cc/library/action/AdminManageAction.java -------------------------------------------------------------------------------- /LibrarySystem/src/com/cc/library/action/AuthorizationAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/src/com/cc/library/action/AuthorizationAction.java -------------------------------------------------------------------------------- /LibrarySystem/src/com/cc/library/action/BackManageAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/src/com/cc/library/action/BackManageAction.java -------------------------------------------------------------------------------- /LibrarySystem/src/com/cc/library/action/BookAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/src/com/cc/library/action/BookAction.java -------------------------------------------------------------------------------- /LibrarySystem/src/com/cc/library/action/BookManageAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/src/com/cc/library/action/BookManageAction.java -------------------------------------------------------------------------------- /LibrarySystem/src/com/cc/library/action/BookTypeManageAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/src/com/cc/library/action/BookTypeManageAction.java -------------------------------------------------------------------------------- /LibrarySystem/src/com/cc/library/action/BorrowAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/src/com/cc/library/action/BorrowAction.java -------------------------------------------------------------------------------- /LibrarySystem/src/com/cc/library/action/BorrowManageAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/src/com/cc/library/action/BorrowManageAction.java -------------------------------------------------------------------------------- /LibrarySystem/src/com/cc/library/action/BorrowSearchAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/src/com/cc/library/action/BorrowSearchAction.java -------------------------------------------------------------------------------- /LibrarySystem/src/com/cc/library/action/FileDownloadAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/src/com/cc/library/action/FileDownloadAction.java -------------------------------------------------------------------------------- /LibrarySystem/src/com/cc/library/action/FileUploadAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/src/com/cc/library/action/FileUploadAction.java -------------------------------------------------------------------------------- /LibrarySystem/src/com/cc/library/action/ForfeitAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/src/com/cc/library/action/ForfeitAction.java -------------------------------------------------------------------------------- /LibrarySystem/src/com/cc/library/action/ForfeitManageAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/src/com/cc/library/action/ForfeitManageAction.java -------------------------------------------------------------------------------- /LibrarySystem/src/com/cc/library/action/ReaderInfoAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/src/com/cc/library/action/ReaderInfoAction.java -------------------------------------------------------------------------------- /LibrarySystem/src/com/cc/library/action/ReaderLoginAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/src/com/cc/library/action/ReaderLoginAction.java -------------------------------------------------------------------------------- /LibrarySystem/src/com/cc/library/action/ReaderManageAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/src/com/cc/library/action/ReaderManageAction.java -------------------------------------------------------------------------------- /LibrarySystem/src/com/cc/library/action/ReaderTypeManageAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/src/com/cc/library/action/ReaderTypeManageAction.java -------------------------------------------------------------------------------- /LibrarySystem/src/com/cc/library/action/fileuploadmessage.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/src/com/cc/library/action/fileuploadmessage.properties -------------------------------------------------------------------------------- /LibrarySystem/src/com/cc/library/action/interceptor/AdminInterceptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/src/com/cc/library/action/interceptor/AdminInterceptor.java -------------------------------------------------------------------------------- /LibrarySystem/src/com/cc/library/action/interceptor/BackInterceptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/src/com/cc/library/action/interceptor/BackInterceptor.java -------------------------------------------------------------------------------- /LibrarySystem/src/com/cc/library/action/interceptor/BookInterceptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/src/com/cc/library/action/interceptor/BookInterceptor.java -------------------------------------------------------------------------------- /LibrarySystem/src/com/cc/library/action/interceptor/BookTypeInterceptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/src/com/cc/library/action/interceptor/BookTypeInterceptor.java -------------------------------------------------------------------------------- /LibrarySystem/src/com/cc/library/action/interceptor/BorrowInterceptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/src/com/cc/library/action/interceptor/BorrowInterceptor.java -------------------------------------------------------------------------------- /LibrarySystem/src/com/cc/library/action/interceptor/ForfeitInterceptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/src/com/cc/library/action/interceptor/ForfeitInterceptor.java -------------------------------------------------------------------------------- /LibrarySystem/src/com/cc/library/action/interceptor/ReaderInterceptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/src/com/cc/library/action/interceptor/ReaderInterceptor.java -------------------------------------------------------------------------------- /LibrarySystem/src/com/cc/library/action/interceptor/ReaderTypeInterceptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/src/com/cc/library/action/interceptor/ReaderTypeInterceptor.java -------------------------------------------------------------------------------- /LibrarySystem/src/com/cc/library/dao/AdminDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/src/com/cc/library/dao/AdminDao.java -------------------------------------------------------------------------------- /LibrarySystem/src/com/cc/library/dao/AuthorizationDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/src/com/cc/library/dao/AuthorizationDao.java -------------------------------------------------------------------------------- /LibrarySystem/src/com/cc/library/dao/BackDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/src/com/cc/library/dao/BackDao.java -------------------------------------------------------------------------------- /LibrarySystem/src/com/cc/library/dao/BookDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/src/com/cc/library/dao/BookDao.java -------------------------------------------------------------------------------- /LibrarySystem/src/com/cc/library/dao/BookTypeDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/src/com/cc/library/dao/BookTypeDao.java -------------------------------------------------------------------------------- /LibrarySystem/src/com/cc/library/dao/BorrowDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/src/com/cc/library/dao/BorrowDao.java -------------------------------------------------------------------------------- /LibrarySystem/src/com/cc/library/dao/ForfeitDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/src/com/cc/library/dao/ForfeitDao.java -------------------------------------------------------------------------------- /LibrarySystem/src/com/cc/library/dao/ReaderDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/src/com/cc/library/dao/ReaderDao.java -------------------------------------------------------------------------------- /LibrarySystem/src/com/cc/library/dao/ReaderTypeDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/src/com/cc/library/dao/ReaderTypeDao.java -------------------------------------------------------------------------------- /LibrarySystem/src/com/cc/library/dao/impl/AdminDaoImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/src/com/cc/library/dao/impl/AdminDaoImpl.java -------------------------------------------------------------------------------- /LibrarySystem/src/com/cc/library/dao/impl/AuthorizationDaoImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/src/com/cc/library/dao/impl/AuthorizationDaoImpl.java -------------------------------------------------------------------------------- /LibrarySystem/src/com/cc/library/dao/impl/BackDaoImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/src/com/cc/library/dao/impl/BackDaoImpl.java -------------------------------------------------------------------------------- /LibrarySystem/src/com/cc/library/dao/impl/BookDaoImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/src/com/cc/library/dao/impl/BookDaoImpl.java -------------------------------------------------------------------------------- /LibrarySystem/src/com/cc/library/dao/impl/BookTypeDaoImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/src/com/cc/library/dao/impl/BookTypeDaoImpl.java -------------------------------------------------------------------------------- /LibrarySystem/src/com/cc/library/dao/impl/BorrowDaoImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/src/com/cc/library/dao/impl/BorrowDaoImpl.java -------------------------------------------------------------------------------- /LibrarySystem/src/com/cc/library/dao/impl/ForfeitDaoImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/src/com/cc/library/dao/impl/ForfeitDaoImpl.java -------------------------------------------------------------------------------- /LibrarySystem/src/com/cc/library/dao/impl/ReaderDaoImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/src/com/cc/library/dao/impl/ReaderDaoImpl.java -------------------------------------------------------------------------------- /LibrarySystem/src/com/cc/library/dao/impl/ReaderTypeDaoImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/src/com/cc/library/dao/impl/ReaderTypeDaoImpl.java -------------------------------------------------------------------------------- /LibrarySystem/src/com/cc/library/domain/Admin.hbm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/src/com/cc/library/domain/Admin.hbm.xml -------------------------------------------------------------------------------- /LibrarySystem/src/com/cc/library/domain/Admin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/src/com/cc/library/domain/Admin.java -------------------------------------------------------------------------------- /LibrarySystem/src/com/cc/library/domain/Authorization.hbm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/src/com/cc/library/domain/Authorization.hbm.xml -------------------------------------------------------------------------------- /LibrarySystem/src/com/cc/library/domain/Authorization.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/src/com/cc/library/domain/Authorization.java -------------------------------------------------------------------------------- /LibrarySystem/src/com/cc/library/domain/BackInfo.hbm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/src/com/cc/library/domain/BackInfo.hbm.xml -------------------------------------------------------------------------------- /LibrarySystem/src/com/cc/library/domain/BackInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/src/com/cc/library/domain/BackInfo.java -------------------------------------------------------------------------------- /LibrarySystem/src/com/cc/library/domain/Book.hbm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/src/com/cc/library/domain/Book.hbm.xml -------------------------------------------------------------------------------- /LibrarySystem/src/com/cc/library/domain/Book.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/src/com/cc/library/domain/Book.java -------------------------------------------------------------------------------- /LibrarySystem/src/com/cc/library/domain/BookType.hbm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/src/com/cc/library/domain/BookType.hbm.xml -------------------------------------------------------------------------------- /LibrarySystem/src/com/cc/library/domain/BookType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/src/com/cc/library/domain/BookType.java -------------------------------------------------------------------------------- /LibrarySystem/src/com/cc/library/domain/BorrowInfo.hbm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/src/com/cc/library/domain/BorrowInfo.hbm.xml -------------------------------------------------------------------------------- /LibrarySystem/src/com/cc/library/domain/BorrowInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/src/com/cc/library/domain/BorrowInfo.java -------------------------------------------------------------------------------- /LibrarySystem/src/com/cc/library/domain/ForfeitInfo.hbm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/src/com/cc/library/domain/ForfeitInfo.hbm.xml -------------------------------------------------------------------------------- /LibrarySystem/src/com/cc/library/domain/ForfeitInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/src/com/cc/library/domain/ForfeitInfo.java -------------------------------------------------------------------------------- /LibrarySystem/src/com/cc/library/domain/PageBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/src/com/cc/library/domain/PageBean.java -------------------------------------------------------------------------------- /LibrarySystem/src/com/cc/library/domain/Reader.hbm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/src/com/cc/library/domain/Reader.hbm.xml -------------------------------------------------------------------------------- /LibrarySystem/src/com/cc/library/domain/Reader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/src/com/cc/library/domain/Reader.java -------------------------------------------------------------------------------- /LibrarySystem/src/com/cc/library/domain/ReaderType.hbm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/src/com/cc/library/domain/ReaderType.hbm.xml -------------------------------------------------------------------------------- /LibrarySystem/src/com/cc/library/domain/ReaderType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/src/com/cc/library/domain/ReaderType.java -------------------------------------------------------------------------------- /LibrarySystem/src/com/cc/library/quartz/CheckBorrowInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/src/com/cc/library/quartz/CheckBorrowInfo.java -------------------------------------------------------------------------------- /LibrarySystem/src/com/cc/library/service/AdminService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/src/com/cc/library/service/AdminService.java -------------------------------------------------------------------------------- /LibrarySystem/src/com/cc/library/service/AuthorizationService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/src/com/cc/library/service/AuthorizationService.java -------------------------------------------------------------------------------- /LibrarySystem/src/com/cc/library/service/BackService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/src/com/cc/library/service/BackService.java -------------------------------------------------------------------------------- /LibrarySystem/src/com/cc/library/service/BookService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/src/com/cc/library/service/BookService.java -------------------------------------------------------------------------------- /LibrarySystem/src/com/cc/library/service/BookTypeService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/src/com/cc/library/service/BookTypeService.java -------------------------------------------------------------------------------- /LibrarySystem/src/com/cc/library/service/BorrowService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/src/com/cc/library/service/BorrowService.java -------------------------------------------------------------------------------- /LibrarySystem/src/com/cc/library/service/ForfeitService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/src/com/cc/library/service/ForfeitService.java -------------------------------------------------------------------------------- /LibrarySystem/src/com/cc/library/service/ReaderService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/src/com/cc/library/service/ReaderService.java -------------------------------------------------------------------------------- /LibrarySystem/src/com/cc/library/service/ReaderTypeService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/src/com/cc/library/service/ReaderTypeService.java -------------------------------------------------------------------------------- /LibrarySystem/src/com/cc/library/service/impl/AdminServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/src/com/cc/library/service/impl/AdminServiceImpl.java -------------------------------------------------------------------------------- /LibrarySystem/src/com/cc/library/service/impl/AuthorizationServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/src/com/cc/library/service/impl/AuthorizationServiceImpl.java -------------------------------------------------------------------------------- /LibrarySystem/src/com/cc/library/service/impl/BackServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/src/com/cc/library/service/impl/BackServiceImpl.java -------------------------------------------------------------------------------- /LibrarySystem/src/com/cc/library/service/impl/BookServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/src/com/cc/library/service/impl/BookServiceImpl.java -------------------------------------------------------------------------------- /LibrarySystem/src/com/cc/library/service/impl/BookTypeServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/src/com/cc/library/service/impl/BookTypeServiceImpl.java -------------------------------------------------------------------------------- /LibrarySystem/src/com/cc/library/service/impl/BorrowServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/src/com/cc/library/service/impl/BorrowServiceImpl.java -------------------------------------------------------------------------------- /LibrarySystem/src/com/cc/library/service/impl/ForfeitServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/src/com/cc/library/service/impl/ForfeitServiceImpl.java -------------------------------------------------------------------------------- /LibrarySystem/src/com/cc/library/service/impl/ReaderServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/src/com/cc/library/service/impl/ReaderServiceImpl.java -------------------------------------------------------------------------------- /LibrarySystem/src/com/cc/library/service/impl/ReaderTypeServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/src/com/cc/library/service/impl/ReaderTypeServiceImpl.java -------------------------------------------------------------------------------- /LibrarySystem/src/com/cc/library/util/CheckUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/src/com/cc/library/util/CheckUtils.java -------------------------------------------------------------------------------- /LibrarySystem/src/com/cc/library/util/Md5Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/src/com/cc/library/util/Md5Utils.java -------------------------------------------------------------------------------- /LibrarySystem/src/com/cc/library/web/filter/AdminFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/src/com/cc/library/web/filter/AdminFilter.java -------------------------------------------------------------------------------- /LibrarySystem/src/com/cc/library/web/filter/ReaderFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/src/com/cc/library/web/filter/ReaderFilter.java -------------------------------------------------------------------------------- /LibrarySystem/test/com/cc/library/test/BaseSpring.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/test/com/cc/library/test/BaseSpring.java -------------------------------------------------------------------------------- /LibrarySystem/test/com/cc/library/test/TestAdmin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/test/com/cc/library/test/TestAdmin.java -------------------------------------------------------------------------------- /LibrarySystem/test/com/cc/library/test/TestBack.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/test/com/cc/library/test/TestBack.java -------------------------------------------------------------------------------- /LibrarySystem/test/com/cc/library/test/TestBook.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/test/com/cc/library/test/TestBook.java -------------------------------------------------------------------------------- /LibrarySystem/test/com/cc/library/test/TestBookType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/test/com/cc/library/test/TestBookType.java -------------------------------------------------------------------------------- /LibrarySystem/test/com/cc/library/test/TestBorrow.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/test/com/cc/library/test/TestBorrow.java -------------------------------------------------------------------------------- /LibrarySystem/test/com/cc/library/test/TestBorrowInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/test/com/cc/library/test/TestBorrowInfo.java -------------------------------------------------------------------------------- /LibrarySystem/test/com/cc/library/test/TestReader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/test/com/cc/library/test/TestReader.java -------------------------------------------------------------------------------- /LibrarySystem/test/com/cc/library/test/TestSessionFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/LibrarySystem/test/com/cc/library/test/TestSessionFactory.java -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/README.md -------------------------------------------------------------------------------- /database/图书馆管理系统.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/database/图书馆管理系统.sql -------------------------------------------------------------------------------- /img/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/img/0.png -------------------------------------------------------------------------------- /img/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/img/1.png -------------------------------------------------------------------------------- /img/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/img/10.png -------------------------------------------------------------------------------- /img/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/img/11.png -------------------------------------------------------------------------------- /img/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/img/12.png -------------------------------------------------------------------------------- /img/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/img/13.png -------------------------------------------------------------------------------- /img/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/img/14.png -------------------------------------------------------------------------------- /img/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/img/15.png -------------------------------------------------------------------------------- /img/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/img/16.png -------------------------------------------------------------------------------- /img/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/img/17.png -------------------------------------------------------------------------------- /img/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/img/18.png -------------------------------------------------------------------------------- /img/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/img/19.png -------------------------------------------------------------------------------- /img/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/img/2.png -------------------------------------------------------------------------------- /img/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/img/20.png -------------------------------------------------------------------------------- /img/21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/img/21.png -------------------------------------------------------------------------------- /img/22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/img/22.png -------------------------------------------------------------------------------- /img/23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/img/23.png -------------------------------------------------------------------------------- /img/24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/img/24.png -------------------------------------------------------------------------------- /img/25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/img/25.png -------------------------------------------------------------------------------- /img/26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/img/26.png -------------------------------------------------------------------------------- /img/27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/img/27.png -------------------------------------------------------------------------------- /img/28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/img/28.png -------------------------------------------------------------------------------- /img/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/img/29.png -------------------------------------------------------------------------------- /img/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/img/3.png -------------------------------------------------------------------------------- /img/30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/img/30.png -------------------------------------------------------------------------------- /img/31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/img/31.png -------------------------------------------------------------------------------- /img/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/img/4.png -------------------------------------------------------------------------------- /img/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/img/5.png -------------------------------------------------------------------------------- /img/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/img/6.png -------------------------------------------------------------------------------- /img/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/img/7.png -------------------------------------------------------------------------------- /img/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/img/8.png -------------------------------------------------------------------------------- /img/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cckevincyh/LibrarySystem/HEAD/img/9.png --------------------------------------------------------------------------------