├── .gitignore ├── MovieHunterApp ├── README.md └── tt │ ├── .hbuilderx │ └── launch.json │ ├── App.vue │ ├── api.js │ ├── index.html │ ├── main.js │ ├── manifest.json │ ├── package-lock.json │ ├── package.json │ ├── pages.json │ ├── pages │ ├── Login │ │ └── Login.vue │ ├── LoginByEmaiL │ │ └── LoginByEmaiL.vue │ ├── MovieInfo │ │ └── MovieInfo.vue │ ├── UserInfo │ │ └── UserInfo.vue │ ├── comments │ │ ├── comments.vue │ │ ├── myComments.vue │ │ └── myLikes.vue │ ├── favorite │ │ └── favorite.vue │ ├── findPassword │ │ └── findPassword.vue │ ├── index │ │ └── index.vue │ └── recommendations │ │ └── recommendations.vue │ ├── static │ ├── 980.jpg │ ├── bg.jpg │ ├── like.png │ ├── liked.png │ ├── logo.png │ ├── movieTag.png │ ├── movieTag1.png │ ├── user.png │ └── user1.png │ ├── uni.promisify.adaptor.js │ └── uni.scss ├── MovieHunterBackend ├── .gitignore ├── .mvn │ └── wrapper │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── mvnw ├── mvnw.cmd ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── example │ │ │ ├── SpringbootDemoApplication.java │ │ │ ├── config │ │ │ ├── CorsConfig.java │ │ │ ├── MybatisPlusConfig.java │ │ │ ├── RedisConfig.java │ │ │ ├── SecurityConfig.java │ │ │ └── SwaggerConfig.java │ │ │ ├── controller │ │ │ ├── CommentController.java │ │ │ ├── FavoriteController.java │ │ │ ├── LikesController.java │ │ │ ├── LoginController.java │ │ │ ├── MovieController.java │ │ │ ├── PermissionController.java │ │ │ └── UserController.java │ │ │ ├── entity │ │ │ ├── Comment.java │ │ │ ├── Favorite.java │ │ │ ├── FavoriteMovie.java │ │ │ ├── Likes.java │ │ │ ├── LoginUser.java │ │ │ ├── LoginUserWithCode.java │ │ │ ├── LoginUserWithCodePwd.java │ │ │ ├── LoginUserWithPwd.java │ │ │ ├── Menu.java │ │ │ ├── Movie.java │ │ │ ├── MovieGenre.java │ │ │ ├── Regions.java │ │ │ ├── ResponseResult.java │ │ │ ├── Role.java │ │ │ ├── RoleMenu.java │ │ │ ├── User.java │ │ │ ├── UserInfo.java │ │ │ └── UserRole.java │ │ │ ├── filter │ │ │ └── JwtAuthenticationFilter.java │ │ │ ├── handler │ │ │ ├── AccessDeniedHandlerImpl.java │ │ │ ├── AuthenticationEntryPointImpl.java │ │ │ ├── GlobalExceptionHandler.java │ │ │ └── MyMetaObjectHandler.java │ │ │ ├── jsr303 │ │ │ ├── InsertOperation.java │ │ │ ├── LoginOperation.java │ │ │ └── SetOperation.java │ │ │ ├── mapper │ │ │ ├── CommentMapper.java │ │ │ ├── FavoriteMapper.java │ │ │ ├── FavoriteMovieMapper.java │ │ │ ├── LikesMapper.java │ │ │ ├── MenuMapper.java │ │ │ ├── MovieMapper.java │ │ │ ├── RoleMapper.java │ │ │ ├── RoleMenuMapper.java │ │ │ ├── UserInfoMapper.java │ │ │ ├── UserMapper.java │ │ │ └── UserRoleMapper.java │ │ │ ├── service │ │ │ ├── CommentService.java │ │ │ ├── FavoriteService.java │ │ │ ├── LikesService.java │ │ │ ├── LoginService.java │ │ │ ├── MenuService.java │ │ │ ├── MovieService.java │ │ │ ├── RoleService.java │ │ │ ├── UserService.java │ │ │ └── impl │ │ │ │ ├── CommentServiceImpl.java │ │ │ │ ├── FavoriteServiceImpl.java │ │ │ │ ├── LikesServiceImpl.java │ │ │ │ ├── LoginServiceImpl.java │ │ │ │ ├── MenuServiceImpl.java │ │ │ │ ├── MovieServiceImpl.java │ │ │ │ ├── RoleServiceImpl.java │ │ │ │ ├── UserDetailsServiceImpl.java │ │ │ │ └── UserServiceImpl.java │ │ │ └── util │ │ │ ├── FastJsonRedisSerializer.java │ │ │ ├── JexlUtil.java │ │ │ ├── JwtUtil.java │ │ │ ├── PwdAuthenticationProvider.java │ │ │ ├── RedisCache.java │ │ │ ├── SMTPAuthenticationProvider.java │ │ │ ├── SMTPAuthenticationToken.java │ │ │ ├── SendEmailUtils.java │ │ │ ├── ValidateCodeUtils.java │ │ │ └── WebUtils.java │ └── resources │ │ ├── application.yml │ │ └── templates │ │ ├── error │ │ ├── 404.html │ │ └── 500.html │ │ └── index.html │ └── test │ └── java │ └── com │ └── example │ ├── BeanUtil.java │ └── SpringbootDemoApplicationTests.java ├── MovieHunterManager ├── .editorconfig ├── .env.development ├── .env.production ├── .env.staging ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .travis.yml ├── LICENSE ├── README-zh.md ├── README.md ├── babel.config.js ├── build │ └── index.js ├── jest.config.js ├── jsconfig.json ├── mock │ ├── index.js │ ├── mock-server.js │ ├── table.js │ ├── user.js │ └── utils.js ├── package.json ├── postcss.config.js ├── public │ ├── favicon.ico │ └── index.html ├── src │ ├── App.vue │ ├── api │ │ ├── permission.js │ │ ├── table.js │ │ └── user.js │ ├── assets │ │ └── 404_images │ │ │ ├── 404.png │ │ │ └── 404_cloud.png │ ├── components │ │ ├── Breadcrumb │ │ │ └── index.vue │ │ ├── Hamburger │ │ │ └── index.vue │ │ └── SvgIcon │ │ │ └── index.vue │ ├── icons │ │ ├── index.js │ │ ├── svg │ │ │ ├── dashboard.svg │ │ │ ├── example.svg │ │ │ ├── eye-open.svg │ │ │ ├── eye.svg │ │ │ ├── form.svg │ │ │ ├── link.svg │ │ │ ├── lock.svg │ │ │ ├── nested.svg │ │ │ ├── password.svg │ │ │ ├── table.svg │ │ │ ├── tree.svg │ │ │ └── user.svg │ │ └── svgo.yml │ ├── layout │ │ ├── components │ │ │ ├── AppMain.vue │ │ │ ├── Navbar.vue │ │ │ ├── Sidebar │ │ │ │ ├── FixiOSBug.js │ │ │ │ ├── Item.vue │ │ │ │ ├── Link.vue │ │ │ │ ├── Logo.vue │ │ │ │ ├── SidebarItem.vue │ │ │ │ └── index.vue │ │ │ └── index.js │ │ ├── index.vue │ │ └── mixin │ │ │ └── ResizeHandler.js │ ├── main.js │ ├── permission.js │ ├── router │ │ └── index.js │ ├── settings.js │ ├── store │ │ ├── getters.js │ │ ├── index.js │ │ └── modules │ │ │ ├── app.js │ │ │ ├── settings.js │ │ │ └── user.js │ ├── styles │ │ ├── element-ui.scss │ │ ├── index.scss │ │ ├── mixin.scss │ │ ├── sidebar.scss │ │ ├── transition.scss │ │ └── variables.scss │ ├── utils │ │ ├── auth.js │ │ ├── get-page-title.js │ │ ├── index.js │ │ ├── request.js │ │ └── validate.js │ └── views │ │ ├── 404.vue │ │ ├── dashboard │ │ └── index.vue │ │ ├── login │ │ └── index.vue │ │ ├── permission │ │ ├── permissionMenu.vue │ │ ├── rolePermission.vue │ │ └── userRoleList.vue │ │ └── table │ │ ├── commentList.vue │ │ ├── index.vue │ │ ├── likeList.vue │ │ └── movieList.vue ├── tests │ └── unit │ │ ├── .eslintrc.js │ │ ├── components │ │ ├── Breadcrumb.spec.js │ │ ├── Hamburger.spec.js │ │ └── SvgIcon.spec.js │ │ └── utils │ │ ├── formatTime.spec.js │ │ ├── param2Obj.spec.js │ │ ├── parseTime.spec.js │ │ └── validate.spec.js └── vue.config.js ├── MovieHunterWeb ├── README.md └── myWeb │ ├── .gitignore │ ├── App.vue │ ├── api.js │ ├── index.html │ ├── main.js │ ├── manifest.json │ ├── pages.json │ ├── pages │ ├── Login │ │ ├── LoginByEmail.vue │ │ ├── findPassword.vue │ │ └── login.vue │ ├── MovieInfo │ │ └── MovieInfo.vue │ ├── UserInfo │ │ ├── UserInfo.vue │ │ ├── comment.vue │ │ └── like.vue │ ├── favorite │ │ └── favorite.vue │ ├── index │ │ └── index.vue │ └── recommendations │ │ └── recommendations.vue │ ├── static │ ├── exit.jpg │ ├── exit.png │ ├── home.png │ ├── login.jpg │ ├── logo.png │ ├── movie.jpeg │ ├── movie.webp │ ├── movieTag.png │ ├── movieTag1.png │ ├── star.png │ ├── title.png │ ├── user.png │ └── user1.png │ ├── uni.promisify.adaptor.js │ ├── uni.scss │ ├── unpackage.zip │ └── unpackage │ └── dist │ └── build │ ├── .automator │ └── h5 │ │ └── .automator.json │ └── h5 │ ├── index.html │ └── static │ ├── exit.jpg │ ├── exit.png │ ├── home.png │ ├── img │ ├── exit.faacf3cc.png │ ├── home.005ac1ba.png │ ├── login.b2dcc10e.jpg │ ├── movieTag.a60c112a.png │ ├── title.66356021.png │ └── user.e83768c3.png │ ├── index.97465e7b.css │ ├── js │ ├── chunk-vendors.6a73e7f9.js │ ├── index.64668068.js │ ├── pages-Login-LoginByEmail.d0d6f0a3.js │ ├── pages-Login-LoginByEmail~pages-Login-findPassword~pages-Login-login.db07206b.js │ ├── pages-Login-LoginByEmail~pages-Login-findPassword~pages-Login-login~pages-MovieInfo-MovieInfo~pages-~168b95e5.f54e2552.js │ ├── pages-Login-LoginByEmail~pages-Login-findPassword~pages-Login-login~pages-MovieInfo-MovieInfo~pages-~343e1f6c.a30ad831.js │ ├── pages-Login-LoginByEmail~pages-Login-findPassword~pages-Login-login~pages-MovieInfo-MovieInfo~pages-~9569d137.87e25c8f.js │ ├── pages-Login-findPassword.98f8e6a1.js │ ├── pages-Login-login.4b84c095.js │ ├── pages-MovieInfo-MovieInfo.53e10e0c.js │ ├── pages-MovieInfo-MovieInfo~pages-UserInfo-UserInfo~pages-recommendations-recommendations.2be4e39b.js │ ├── pages-UserInfo-UserInfo.7a2a1ba3.js │ ├── pages-UserInfo-comment.df2a4e8f.js │ ├── pages-UserInfo-like.1138c3f6.js │ ├── pages-favorite-favorite.64f2f927.js │ └── pages-recommendations-recommendations.f5a63b8a.js │ ├── login.jpg │ ├── logo.png │ ├── movie.jpeg │ ├── movie.webp │ ├── movieTag.png │ ├── movieTag1.png │ ├── star.png │ ├── title.png │ ├── user.png │ └── user1.png ├── docs ├── 101 A 电影推荐系统 数据库设计报告.doc ├── 101 A 电影推荐系统 系统设计报告.doc ├── 101 A 电影推荐系统 需求分析报告.doc ├── 101 A 电影推荐系统 需求获取报告.doc └── 101 A 电影推荐系统 项目计划.doc └── sql └── movie_hunter.sql /.gitignore: -------------------------------------------------------------------------------- 1 | .idea -------------------------------------------------------------------------------- /MovieHunterApp/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MovieHunterApp/tt/.hbuilderx/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterApp/tt/.hbuilderx/launch.json -------------------------------------------------------------------------------- /MovieHunterApp/tt/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterApp/tt/App.vue -------------------------------------------------------------------------------- /MovieHunterApp/tt/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterApp/tt/api.js -------------------------------------------------------------------------------- /MovieHunterApp/tt/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterApp/tt/index.html -------------------------------------------------------------------------------- /MovieHunterApp/tt/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterApp/tt/main.js -------------------------------------------------------------------------------- /MovieHunterApp/tt/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterApp/tt/manifest.json -------------------------------------------------------------------------------- /MovieHunterApp/tt/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterApp/tt/package-lock.json -------------------------------------------------------------------------------- /MovieHunterApp/tt/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterApp/tt/package.json -------------------------------------------------------------------------------- /MovieHunterApp/tt/pages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterApp/tt/pages.json -------------------------------------------------------------------------------- /MovieHunterApp/tt/pages/Login/Login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterApp/tt/pages/Login/Login.vue -------------------------------------------------------------------------------- /MovieHunterApp/tt/pages/LoginByEmaiL/LoginByEmaiL.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterApp/tt/pages/LoginByEmaiL/LoginByEmaiL.vue -------------------------------------------------------------------------------- /MovieHunterApp/tt/pages/MovieInfo/MovieInfo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterApp/tt/pages/MovieInfo/MovieInfo.vue -------------------------------------------------------------------------------- /MovieHunterApp/tt/pages/UserInfo/UserInfo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterApp/tt/pages/UserInfo/UserInfo.vue -------------------------------------------------------------------------------- /MovieHunterApp/tt/pages/comments/comments.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterApp/tt/pages/comments/comments.vue -------------------------------------------------------------------------------- /MovieHunterApp/tt/pages/comments/myComments.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterApp/tt/pages/comments/myComments.vue -------------------------------------------------------------------------------- /MovieHunterApp/tt/pages/comments/myLikes.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterApp/tt/pages/comments/myLikes.vue -------------------------------------------------------------------------------- /MovieHunterApp/tt/pages/favorite/favorite.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterApp/tt/pages/favorite/favorite.vue -------------------------------------------------------------------------------- /MovieHunterApp/tt/pages/findPassword/findPassword.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterApp/tt/pages/findPassword/findPassword.vue -------------------------------------------------------------------------------- /MovieHunterApp/tt/pages/index/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterApp/tt/pages/index/index.vue -------------------------------------------------------------------------------- /MovieHunterApp/tt/pages/recommendations/recommendations.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterApp/tt/pages/recommendations/recommendations.vue -------------------------------------------------------------------------------- /MovieHunterApp/tt/static/980.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterApp/tt/static/980.jpg -------------------------------------------------------------------------------- /MovieHunterApp/tt/static/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterApp/tt/static/bg.jpg -------------------------------------------------------------------------------- /MovieHunterApp/tt/static/like.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterApp/tt/static/like.png -------------------------------------------------------------------------------- /MovieHunterApp/tt/static/liked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterApp/tt/static/liked.png -------------------------------------------------------------------------------- /MovieHunterApp/tt/static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterApp/tt/static/logo.png -------------------------------------------------------------------------------- /MovieHunterApp/tt/static/movieTag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterApp/tt/static/movieTag.png -------------------------------------------------------------------------------- /MovieHunterApp/tt/static/movieTag1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterApp/tt/static/movieTag1.png -------------------------------------------------------------------------------- /MovieHunterApp/tt/static/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterApp/tt/static/user.png -------------------------------------------------------------------------------- /MovieHunterApp/tt/static/user1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterApp/tt/static/user1.png -------------------------------------------------------------------------------- /MovieHunterApp/tt/uni.promisify.adaptor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterApp/tt/uni.promisify.adaptor.js -------------------------------------------------------------------------------- /MovieHunterApp/tt/uni.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterApp/tt/uni.scss -------------------------------------------------------------------------------- /MovieHunterBackend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterBackend/.gitignore -------------------------------------------------------------------------------- /MovieHunterBackend/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterBackend/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /MovieHunterBackend/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterBackend/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /MovieHunterBackend/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterBackend/mvnw -------------------------------------------------------------------------------- /MovieHunterBackend/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterBackend/mvnw.cmd -------------------------------------------------------------------------------- /MovieHunterBackend/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterBackend/pom.xml -------------------------------------------------------------------------------- /MovieHunterBackend/src/main/java/com/example/SpringbootDemoApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterBackend/src/main/java/com/example/SpringbootDemoApplication.java -------------------------------------------------------------------------------- /MovieHunterBackend/src/main/java/com/example/config/CorsConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterBackend/src/main/java/com/example/config/CorsConfig.java -------------------------------------------------------------------------------- /MovieHunterBackend/src/main/java/com/example/config/MybatisPlusConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterBackend/src/main/java/com/example/config/MybatisPlusConfig.java -------------------------------------------------------------------------------- /MovieHunterBackend/src/main/java/com/example/config/RedisConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterBackend/src/main/java/com/example/config/RedisConfig.java -------------------------------------------------------------------------------- /MovieHunterBackend/src/main/java/com/example/config/SecurityConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterBackend/src/main/java/com/example/config/SecurityConfig.java -------------------------------------------------------------------------------- /MovieHunterBackend/src/main/java/com/example/config/SwaggerConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterBackend/src/main/java/com/example/config/SwaggerConfig.java -------------------------------------------------------------------------------- /MovieHunterBackend/src/main/java/com/example/controller/CommentController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterBackend/src/main/java/com/example/controller/CommentController.java -------------------------------------------------------------------------------- /MovieHunterBackend/src/main/java/com/example/controller/FavoriteController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterBackend/src/main/java/com/example/controller/FavoriteController.java -------------------------------------------------------------------------------- /MovieHunterBackend/src/main/java/com/example/controller/LikesController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterBackend/src/main/java/com/example/controller/LikesController.java -------------------------------------------------------------------------------- /MovieHunterBackend/src/main/java/com/example/controller/LoginController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterBackend/src/main/java/com/example/controller/LoginController.java -------------------------------------------------------------------------------- /MovieHunterBackend/src/main/java/com/example/controller/MovieController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterBackend/src/main/java/com/example/controller/MovieController.java -------------------------------------------------------------------------------- /MovieHunterBackend/src/main/java/com/example/controller/PermissionController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterBackend/src/main/java/com/example/controller/PermissionController.java -------------------------------------------------------------------------------- /MovieHunterBackend/src/main/java/com/example/controller/UserController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterBackend/src/main/java/com/example/controller/UserController.java -------------------------------------------------------------------------------- /MovieHunterBackend/src/main/java/com/example/entity/Comment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterBackend/src/main/java/com/example/entity/Comment.java -------------------------------------------------------------------------------- /MovieHunterBackend/src/main/java/com/example/entity/Favorite.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterBackend/src/main/java/com/example/entity/Favorite.java -------------------------------------------------------------------------------- /MovieHunterBackend/src/main/java/com/example/entity/FavoriteMovie.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterBackend/src/main/java/com/example/entity/FavoriteMovie.java -------------------------------------------------------------------------------- /MovieHunterBackend/src/main/java/com/example/entity/Likes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterBackend/src/main/java/com/example/entity/Likes.java -------------------------------------------------------------------------------- /MovieHunterBackend/src/main/java/com/example/entity/LoginUser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterBackend/src/main/java/com/example/entity/LoginUser.java -------------------------------------------------------------------------------- /MovieHunterBackend/src/main/java/com/example/entity/LoginUserWithCode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterBackend/src/main/java/com/example/entity/LoginUserWithCode.java -------------------------------------------------------------------------------- /MovieHunterBackend/src/main/java/com/example/entity/LoginUserWithCodePwd.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterBackend/src/main/java/com/example/entity/LoginUserWithCodePwd.java -------------------------------------------------------------------------------- /MovieHunterBackend/src/main/java/com/example/entity/LoginUserWithPwd.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterBackend/src/main/java/com/example/entity/LoginUserWithPwd.java -------------------------------------------------------------------------------- /MovieHunterBackend/src/main/java/com/example/entity/Menu.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterBackend/src/main/java/com/example/entity/Menu.java -------------------------------------------------------------------------------- /MovieHunterBackend/src/main/java/com/example/entity/Movie.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterBackend/src/main/java/com/example/entity/Movie.java -------------------------------------------------------------------------------- /MovieHunterBackend/src/main/java/com/example/entity/MovieGenre.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterBackend/src/main/java/com/example/entity/MovieGenre.java -------------------------------------------------------------------------------- /MovieHunterBackend/src/main/java/com/example/entity/Regions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterBackend/src/main/java/com/example/entity/Regions.java -------------------------------------------------------------------------------- /MovieHunterBackend/src/main/java/com/example/entity/ResponseResult.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterBackend/src/main/java/com/example/entity/ResponseResult.java -------------------------------------------------------------------------------- /MovieHunterBackend/src/main/java/com/example/entity/Role.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterBackend/src/main/java/com/example/entity/Role.java -------------------------------------------------------------------------------- /MovieHunterBackend/src/main/java/com/example/entity/RoleMenu.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterBackend/src/main/java/com/example/entity/RoleMenu.java -------------------------------------------------------------------------------- /MovieHunterBackend/src/main/java/com/example/entity/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterBackend/src/main/java/com/example/entity/User.java -------------------------------------------------------------------------------- /MovieHunterBackend/src/main/java/com/example/entity/UserInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterBackend/src/main/java/com/example/entity/UserInfo.java -------------------------------------------------------------------------------- /MovieHunterBackend/src/main/java/com/example/entity/UserRole.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterBackend/src/main/java/com/example/entity/UserRole.java -------------------------------------------------------------------------------- /MovieHunterBackend/src/main/java/com/example/filter/JwtAuthenticationFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterBackend/src/main/java/com/example/filter/JwtAuthenticationFilter.java -------------------------------------------------------------------------------- /MovieHunterBackend/src/main/java/com/example/handler/AccessDeniedHandlerImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterBackend/src/main/java/com/example/handler/AccessDeniedHandlerImpl.java -------------------------------------------------------------------------------- /MovieHunterBackend/src/main/java/com/example/handler/AuthenticationEntryPointImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterBackend/src/main/java/com/example/handler/AuthenticationEntryPointImpl.java -------------------------------------------------------------------------------- /MovieHunterBackend/src/main/java/com/example/handler/GlobalExceptionHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterBackend/src/main/java/com/example/handler/GlobalExceptionHandler.java -------------------------------------------------------------------------------- /MovieHunterBackend/src/main/java/com/example/handler/MyMetaObjectHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterBackend/src/main/java/com/example/handler/MyMetaObjectHandler.java -------------------------------------------------------------------------------- /MovieHunterBackend/src/main/java/com/example/jsr303/InsertOperation.java: -------------------------------------------------------------------------------- 1 | package com.example.jsr303; 2 | 3 | public interface InsertOperation { 4 | } 5 | -------------------------------------------------------------------------------- /MovieHunterBackend/src/main/java/com/example/jsr303/LoginOperation.java: -------------------------------------------------------------------------------- 1 | package com.example.jsr303; 2 | 3 | public interface LoginOperation { 4 | } 5 | -------------------------------------------------------------------------------- /MovieHunterBackend/src/main/java/com/example/jsr303/SetOperation.java: -------------------------------------------------------------------------------- 1 | package com.example.jsr303; 2 | 3 | public interface SetOperation { 4 | } 5 | -------------------------------------------------------------------------------- /MovieHunterBackend/src/main/java/com/example/mapper/CommentMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterBackend/src/main/java/com/example/mapper/CommentMapper.java -------------------------------------------------------------------------------- /MovieHunterBackend/src/main/java/com/example/mapper/FavoriteMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterBackend/src/main/java/com/example/mapper/FavoriteMapper.java -------------------------------------------------------------------------------- /MovieHunterBackend/src/main/java/com/example/mapper/FavoriteMovieMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterBackend/src/main/java/com/example/mapper/FavoriteMovieMapper.java -------------------------------------------------------------------------------- /MovieHunterBackend/src/main/java/com/example/mapper/LikesMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterBackend/src/main/java/com/example/mapper/LikesMapper.java -------------------------------------------------------------------------------- /MovieHunterBackend/src/main/java/com/example/mapper/MenuMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterBackend/src/main/java/com/example/mapper/MenuMapper.java -------------------------------------------------------------------------------- /MovieHunterBackend/src/main/java/com/example/mapper/MovieMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterBackend/src/main/java/com/example/mapper/MovieMapper.java -------------------------------------------------------------------------------- /MovieHunterBackend/src/main/java/com/example/mapper/RoleMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterBackend/src/main/java/com/example/mapper/RoleMapper.java -------------------------------------------------------------------------------- /MovieHunterBackend/src/main/java/com/example/mapper/RoleMenuMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterBackend/src/main/java/com/example/mapper/RoleMenuMapper.java -------------------------------------------------------------------------------- /MovieHunterBackend/src/main/java/com/example/mapper/UserInfoMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterBackend/src/main/java/com/example/mapper/UserInfoMapper.java -------------------------------------------------------------------------------- /MovieHunterBackend/src/main/java/com/example/mapper/UserMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterBackend/src/main/java/com/example/mapper/UserMapper.java -------------------------------------------------------------------------------- /MovieHunterBackend/src/main/java/com/example/mapper/UserRoleMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterBackend/src/main/java/com/example/mapper/UserRoleMapper.java -------------------------------------------------------------------------------- /MovieHunterBackend/src/main/java/com/example/service/CommentService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterBackend/src/main/java/com/example/service/CommentService.java -------------------------------------------------------------------------------- /MovieHunterBackend/src/main/java/com/example/service/FavoriteService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterBackend/src/main/java/com/example/service/FavoriteService.java -------------------------------------------------------------------------------- /MovieHunterBackend/src/main/java/com/example/service/LikesService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterBackend/src/main/java/com/example/service/LikesService.java -------------------------------------------------------------------------------- /MovieHunterBackend/src/main/java/com/example/service/LoginService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterBackend/src/main/java/com/example/service/LoginService.java -------------------------------------------------------------------------------- /MovieHunterBackend/src/main/java/com/example/service/MenuService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterBackend/src/main/java/com/example/service/MenuService.java -------------------------------------------------------------------------------- /MovieHunterBackend/src/main/java/com/example/service/MovieService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterBackend/src/main/java/com/example/service/MovieService.java -------------------------------------------------------------------------------- /MovieHunterBackend/src/main/java/com/example/service/RoleService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterBackend/src/main/java/com/example/service/RoleService.java -------------------------------------------------------------------------------- /MovieHunterBackend/src/main/java/com/example/service/UserService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterBackend/src/main/java/com/example/service/UserService.java -------------------------------------------------------------------------------- /MovieHunterBackend/src/main/java/com/example/service/impl/CommentServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterBackend/src/main/java/com/example/service/impl/CommentServiceImpl.java -------------------------------------------------------------------------------- /MovieHunterBackend/src/main/java/com/example/service/impl/FavoriteServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterBackend/src/main/java/com/example/service/impl/FavoriteServiceImpl.java -------------------------------------------------------------------------------- /MovieHunterBackend/src/main/java/com/example/service/impl/LikesServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterBackend/src/main/java/com/example/service/impl/LikesServiceImpl.java -------------------------------------------------------------------------------- /MovieHunterBackend/src/main/java/com/example/service/impl/LoginServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterBackend/src/main/java/com/example/service/impl/LoginServiceImpl.java -------------------------------------------------------------------------------- /MovieHunterBackend/src/main/java/com/example/service/impl/MenuServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterBackend/src/main/java/com/example/service/impl/MenuServiceImpl.java -------------------------------------------------------------------------------- /MovieHunterBackend/src/main/java/com/example/service/impl/MovieServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterBackend/src/main/java/com/example/service/impl/MovieServiceImpl.java -------------------------------------------------------------------------------- /MovieHunterBackend/src/main/java/com/example/service/impl/RoleServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterBackend/src/main/java/com/example/service/impl/RoleServiceImpl.java -------------------------------------------------------------------------------- /MovieHunterBackend/src/main/java/com/example/service/impl/UserDetailsServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterBackend/src/main/java/com/example/service/impl/UserDetailsServiceImpl.java -------------------------------------------------------------------------------- /MovieHunterBackend/src/main/java/com/example/service/impl/UserServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterBackend/src/main/java/com/example/service/impl/UserServiceImpl.java -------------------------------------------------------------------------------- /MovieHunterBackend/src/main/java/com/example/util/FastJsonRedisSerializer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterBackend/src/main/java/com/example/util/FastJsonRedisSerializer.java -------------------------------------------------------------------------------- /MovieHunterBackend/src/main/java/com/example/util/JexlUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterBackend/src/main/java/com/example/util/JexlUtil.java -------------------------------------------------------------------------------- /MovieHunterBackend/src/main/java/com/example/util/JwtUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterBackend/src/main/java/com/example/util/JwtUtil.java -------------------------------------------------------------------------------- /MovieHunterBackend/src/main/java/com/example/util/PwdAuthenticationProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterBackend/src/main/java/com/example/util/PwdAuthenticationProvider.java -------------------------------------------------------------------------------- /MovieHunterBackend/src/main/java/com/example/util/RedisCache.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterBackend/src/main/java/com/example/util/RedisCache.java -------------------------------------------------------------------------------- /MovieHunterBackend/src/main/java/com/example/util/SMTPAuthenticationProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterBackend/src/main/java/com/example/util/SMTPAuthenticationProvider.java -------------------------------------------------------------------------------- /MovieHunterBackend/src/main/java/com/example/util/SMTPAuthenticationToken.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterBackend/src/main/java/com/example/util/SMTPAuthenticationToken.java -------------------------------------------------------------------------------- /MovieHunterBackend/src/main/java/com/example/util/SendEmailUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterBackend/src/main/java/com/example/util/SendEmailUtils.java -------------------------------------------------------------------------------- /MovieHunterBackend/src/main/java/com/example/util/ValidateCodeUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterBackend/src/main/java/com/example/util/ValidateCodeUtils.java -------------------------------------------------------------------------------- /MovieHunterBackend/src/main/java/com/example/util/WebUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterBackend/src/main/java/com/example/util/WebUtils.java -------------------------------------------------------------------------------- /MovieHunterBackend/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterBackend/src/main/resources/application.yml -------------------------------------------------------------------------------- /MovieHunterBackend/src/main/resources/templates/error/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterBackend/src/main/resources/templates/error/404.html -------------------------------------------------------------------------------- /MovieHunterBackend/src/main/resources/templates/error/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterBackend/src/main/resources/templates/error/500.html -------------------------------------------------------------------------------- /MovieHunterBackend/src/main/resources/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterBackend/src/main/resources/templates/index.html -------------------------------------------------------------------------------- /MovieHunterBackend/src/test/java/com/example/BeanUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterBackend/src/test/java/com/example/BeanUtil.java -------------------------------------------------------------------------------- /MovieHunterBackend/src/test/java/com/example/SpringbootDemoApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterBackend/src/test/java/com/example/SpringbootDemoApplicationTests.java -------------------------------------------------------------------------------- /MovieHunterManager/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/.editorconfig -------------------------------------------------------------------------------- /MovieHunterManager/.env.development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/.env.development -------------------------------------------------------------------------------- /MovieHunterManager/.env.production: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/.env.production -------------------------------------------------------------------------------- /MovieHunterManager/.env.staging: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/.env.staging -------------------------------------------------------------------------------- /MovieHunterManager/.eslintignore: -------------------------------------------------------------------------------- 1 | build/*.js 2 | src/assets 3 | public 4 | dist 5 | -------------------------------------------------------------------------------- /MovieHunterManager/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/.eslintrc.js -------------------------------------------------------------------------------- /MovieHunterManager/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/.gitignore -------------------------------------------------------------------------------- /MovieHunterManager/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/.travis.yml -------------------------------------------------------------------------------- /MovieHunterManager/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/LICENSE -------------------------------------------------------------------------------- /MovieHunterManager/README-zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/README-zh.md -------------------------------------------------------------------------------- /MovieHunterManager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/README.md -------------------------------------------------------------------------------- /MovieHunterManager/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/babel.config.js -------------------------------------------------------------------------------- /MovieHunterManager/build/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/build/index.js -------------------------------------------------------------------------------- /MovieHunterManager/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/jest.config.js -------------------------------------------------------------------------------- /MovieHunterManager/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/jsconfig.json -------------------------------------------------------------------------------- /MovieHunterManager/mock/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/mock/index.js -------------------------------------------------------------------------------- /MovieHunterManager/mock/mock-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/mock/mock-server.js -------------------------------------------------------------------------------- /MovieHunterManager/mock/table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/mock/table.js -------------------------------------------------------------------------------- /MovieHunterManager/mock/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/mock/user.js -------------------------------------------------------------------------------- /MovieHunterManager/mock/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/mock/utils.js -------------------------------------------------------------------------------- /MovieHunterManager/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/package.json -------------------------------------------------------------------------------- /MovieHunterManager/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/postcss.config.js -------------------------------------------------------------------------------- /MovieHunterManager/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/public/favicon.ico -------------------------------------------------------------------------------- /MovieHunterManager/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/public/index.html -------------------------------------------------------------------------------- /MovieHunterManager/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/src/App.vue -------------------------------------------------------------------------------- /MovieHunterManager/src/api/permission.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/src/api/permission.js -------------------------------------------------------------------------------- /MovieHunterManager/src/api/table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/src/api/table.js -------------------------------------------------------------------------------- /MovieHunterManager/src/api/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/src/api/user.js -------------------------------------------------------------------------------- /MovieHunterManager/src/assets/404_images/404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/src/assets/404_images/404.png -------------------------------------------------------------------------------- /MovieHunterManager/src/assets/404_images/404_cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/src/assets/404_images/404_cloud.png -------------------------------------------------------------------------------- /MovieHunterManager/src/components/Breadcrumb/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/src/components/Breadcrumb/index.vue -------------------------------------------------------------------------------- /MovieHunterManager/src/components/Hamburger/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/src/components/Hamburger/index.vue -------------------------------------------------------------------------------- /MovieHunterManager/src/components/SvgIcon/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/src/components/SvgIcon/index.vue -------------------------------------------------------------------------------- /MovieHunterManager/src/icons/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/src/icons/index.js -------------------------------------------------------------------------------- /MovieHunterManager/src/icons/svg/dashboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/src/icons/svg/dashboard.svg -------------------------------------------------------------------------------- /MovieHunterManager/src/icons/svg/example.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/src/icons/svg/example.svg -------------------------------------------------------------------------------- /MovieHunterManager/src/icons/svg/eye-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/src/icons/svg/eye-open.svg -------------------------------------------------------------------------------- /MovieHunterManager/src/icons/svg/eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/src/icons/svg/eye.svg -------------------------------------------------------------------------------- /MovieHunterManager/src/icons/svg/form.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/src/icons/svg/form.svg -------------------------------------------------------------------------------- /MovieHunterManager/src/icons/svg/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/src/icons/svg/link.svg -------------------------------------------------------------------------------- /MovieHunterManager/src/icons/svg/lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/src/icons/svg/lock.svg -------------------------------------------------------------------------------- /MovieHunterManager/src/icons/svg/nested.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/src/icons/svg/nested.svg -------------------------------------------------------------------------------- /MovieHunterManager/src/icons/svg/password.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/src/icons/svg/password.svg -------------------------------------------------------------------------------- /MovieHunterManager/src/icons/svg/table.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/src/icons/svg/table.svg -------------------------------------------------------------------------------- /MovieHunterManager/src/icons/svg/tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/src/icons/svg/tree.svg -------------------------------------------------------------------------------- /MovieHunterManager/src/icons/svg/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/src/icons/svg/user.svg -------------------------------------------------------------------------------- /MovieHunterManager/src/icons/svgo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/src/icons/svgo.yml -------------------------------------------------------------------------------- /MovieHunterManager/src/layout/components/AppMain.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/src/layout/components/AppMain.vue -------------------------------------------------------------------------------- /MovieHunterManager/src/layout/components/Navbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/src/layout/components/Navbar.vue -------------------------------------------------------------------------------- /MovieHunterManager/src/layout/components/Sidebar/FixiOSBug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/src/layout/components/Sidebar/FixiOSBug.js -------------------------------------------------------------------------------- /MovieHunterManager/src/layout/components/Sidebar/Item.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/src/layout/components/Sidebar/Item.vue -------------------------------------------------------------------------------- /MovieHunterManager/src/layout/components/Sidebar/Link.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/src/layout/components/Sidebar/Link.vue -------------------------------------------------------------------------------- /MovieHunterManager/src/layout/components/Sidebar/Logo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/src/layout/components/Sidebar/Logo.vue -------------------------------------------------------------------------------- /MovieHunterManager/src/layout/components/Sidebar/SidebarItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/src/layout/components/Sidebar/SidebarItem.vue -------------------------------------------------------------------------------- /MovieHunterManager/src/layout/components/Sidebar/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/src/layout/components/Sidebar/index.vue -------------------------------------------------------------------------------- /MovieHunterManager/src/layout/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/src/layout/components/index.js -------------------------------------------------------------------------------- /MovieHunterManager/src/layout/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/src/layout/index.vue -------------------------------------------------------------------------------- /MovieHunterManager/src/layout/mixin/ResizeHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/src/layout/mixin/ResizeHandler.js -------------------------------------------------------------------------------- /MovieHunterManager/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/src/main.js -------------------------------------------------------------------------------- /MovieHunterManager/src/permission.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/src/permission.js -------------------------------------------------------------------------------- /MovieHunterManager/src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/src/router/index.js -------------------------------------------------------------------------------- /MovieHunterManager/src/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/src/settings.js -------------------------------------------------------------------------------- /MovieHunterManager/src/store/getters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/src/store/getters.js -------------------------------------------------------------------------------- /MovieHunterManager/src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/src/store/index.js -------------------------------------------------------------------------------- /MovieHunterManager/src/store/modules/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/src/store/modules/app.js -------------------------------------------------------------------------------- /MovieHunterManager/src/store/modules/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/src/store/modules/settings.js -------------------------------------------------------------------------------- /MovieHunterManager/src/store/modules/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/src/store/modules/user.js -------------------------------------------------------------------------------- /MovieHunterManager/src/styles/element-ui.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/src/styles/element-ui.scss -------------------------------------------------------------------------------- /MovieHunterManager/src/styles/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/src/styles/index.scss -------------------------------------------------------------------------------- /MovieHunterManager/src/styles/mixin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/src/styles/mixin.scss -------------------------------------------------------------------------------- /MovieHunterManager/src/styles/sidebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/src/styles/sidebar.scss -------------------------------------------------------------------------------- /MovieHunterManager/src/styles/transition.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/src/styles/transition.scss -------------------------------------------------------------------------------- /MovieHunterManager/src/styles/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/src/styles/variables.scss -------------------------------------------------------------------------------- /MovieHunterManager/src/utils/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/src/utils/auth.js -------------------------------------------------------------------------------- /MovieHunterManager/src/utils/get-page-title.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/src/utils/get-page-title.js -------------------------------------------------------------------------------- /MovieHunterManager/src/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/src/utils/index.js -------------------------------------------------------------------------------- /MovieHunterManager/src/utils/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/src/utils/request.js -------------------------------------------------------------------------------- /MovieHunterManager/src/utils/validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/src/utils/validate.js -------------------------------------------------------------------------------- /MovieHunterManager/src/views/404.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/src/views/404.vue -------------------------------------------------------------------------------- /MovieHunterManager/src/views/dashboard/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/src/views/dashboard/index.vue -------------------------------------------------------------------------------- /MovieHunterManager/src/views/login/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/src/views/login/index.vue -------------------------------------------------------------------------------- /MovieHunterManager/src/views/permission/permissionMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/src/views/permission/permissionMenu.vue -------------------------------------------------------------------------------- /MovieHunterManager/src/views/permission/rolePermission.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/src/views/permission/rolePermission.vue -------------------------------------------------------------------------------- /MovieHunterManager/src/views/permission/userRoleList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/src/views/permission/userRoleList.vue -------------------------------------------------------------------------------- /MovieHunterManager/src/views/table/commentList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/src/views/table/commentList.vue -------------------------------------------------------------------------------- /MovieHunterManager/src/views/table/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/src/views/table/index.vue -------------------------------------------------------------------------------- /MovieHunterManager/src/views/table/likeList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/src/views/table/likeList.vue -------------------------------------------------------------------------------- /MovieHunterManager/src/views/table/movieList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/src/views/table/movieList.vue -------------------------------------------------------------------------------- /MovieHunterManager/tests/unit/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/tests/unit/.eslintrc.js -------------------------------------------------------------------------------- /MovieHunterManager/tests/unit/components/Breadcrumb.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/tests/unit/components/Breadcrumb.spec.js -------------------------------------------------------------------------------- /MovieHunterManager/tests/unit/components/Hamburger.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/tests/unit/components/Hamburger.spec.js -------------------------------------------------------------------------------- /MovieHunterManager/tests/unit/components/SvgIcon.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/tests/unit/components/SvgIcon.spec.js -------------------------------------------------------------------------------- /MovieHunterManager/tests/unit/utils/formatTime.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/tests/unit/utils/formatTime.spec.js -------------------------------------------------------------------------------- /MovieHunterManager/tests/unit/utils/param2Obj.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/tests/unit/utils/param2Obj.spec.js -------------------------------------------------------------------------------- /MovieHunterManager/tests/unit/utils/parseTime.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/tests/unit/utils/parseTime.spec.js -------------------------------------------------------------------------------- /MovieHunterManager/tests/unit/utils/validate.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/tests/unit/utils/validate.spec.js -------------------------------------------------------------------------------- /MovieHunterManager/vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterManager/vue.config.js -------------------------------------------------------------------------------- /MovieHunterWeb/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MovieHunterWeb/myWeb/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules -------------------------------------------------------------------------------- /MovieHunterWeb/myWeb/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterWeb/myWeb/App.vue -------------------------------------------------------------------------------- /MovieHunterWeb/myWeb/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterWeb/myWeb/api.js -------------------------------------------------------------------------------- /MovieHunterWeb/myWeb/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterWeb/myWeb/index.html -------------------------------------------------------------------------------- /MovieHunterWeb/myWeb/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterWeb/myWeb/main.js -------------------------------------------------------------------------------- /MovieHunterWeb/myWeb/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterWeb/myWeb/manifest.json -------------------------------------------------------------------------------- /MovieHunterWeb/myWeb/pages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterWeb/myWeb/pages.json -------------------------------------------------------------------------------- /MovieHunterWeb/myWeb/pages/Login/LoginByEmail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterWeb/myWeb/pages/Login/LoginByEmail.vue -------------------------------------------------------------------------------- /MovieHunterWeb/myWeb/pages/Login/findPassword.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterWeb/myWeb/pages/Login/findPassword.vue -------------------------------------------------------------------------------- /MovieHunterWeb/myWeb/pages/Login/login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterWeb/myWeb/pages/Login/login.vue -------------------------------------------------------------------------------- /MovieHunterWeb/myWeb/pages/MovieInfo/MovieInfo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterWeb/myWeb/pages/MovieInfo/MovieInfo.vue -------------------------------------------------------------------------------- /MovieHunterWeb/myWeb/pages/UserInfo/UserInfo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterWeb/myWeb/pages/UserInfo/UserInfo.vue -------------------------------------------------------------------------------- /MovieHunterWeb/myWeb/pages/UserInfo/comment.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterWeb/myWeb/pages/UserInfo/comment.vue -------------------------------------------------------------------------------- /MovieHunterWeb/myWeb/pages/UserInfo/like.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterWeb/myWeb/pages/UserInfo/like.vue -------------------------------------------------------------------------------- /MovieHunterWeb/myWeb/pages/favorite/favorite.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterWeb/myWeb/pages/favorite/favorite.vue -------------------------------------------------------------------------------- /MovieHunterWeb/myWeb/pages/index/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterWeb/myWeb/pages/index/index.vue -------------------------------------------------------------------------------- /MovieHunterWeb/myWeb/pages/recommendations/recommendations.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterWeb/myWeb/pages/recommendations/recommendations.vue -------------------------------------------------------------------------------- /MovieHunterWeb/myWeb/static/exit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterWeb/myWeb/static/exit.jpg -------------------------------------------------------------------------------- /MovieHunterWeb/myWeb/static/exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterWeb/myWeb/static/exit.png -------------------------------------------------------------------------------- /MovieHunterWeb/myWeb/static/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterWeb/myWeb/static/home.png -------------------------------------------------------------------------------- /MovieHunterWeb/myWeb/static/login.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterWeb/myWeb/static/login.jpg -------------------------------------------------------------------------------- /MovieHunterWeb/myWeb/static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterWeb/myWeb/static/logo.png -------------------------------------------------------------------------------- /MovieHunterWeb/myWeb/static/movie.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterWeb/myWeb/static/movie.jpeg -------------------------------------------------------------------------------- /MovieHunterWeb/myWeb/static/movie.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterWeb/myWeb/static/movie.webp -------------------------------------------------------------------------------- /MovieHunterWeb/myWeb/static/movieTag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterWeb/myWeb/static/movieTag.png -------------------------------------------------------------------------------- /MovieHunterWeb/myWeb/static/movieTag1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterWeb/myWeb/static/movieTag1.png -------------------------------------------------------------------------------- /MovieHunterWeb/myWeb/static/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterWeb/myWeb/static/star.png -------------------------------------------------------------------------------- /MovieHunterWeb/myWeb/static/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterWeb/myWeb/static/title.png -------------------------------------------------------------------------------- /MovieHunterWeb/myWeb/static/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterWeb/myWeb/static/user.png -------------------------------------------------------------------------------- /MovieHunterWeb/myWeb/static/user1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterWeb/myWeb/static/user1.png -------------------------------------------------------------------------------- /MovieHunterWeb/myWeb/uni.promisify.adaptor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterWeb/myWeb/uni.promisify.adaptor.js -------------------------------------------------------------------------------- /MovieHunterWeb/myWeb/uni.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterWeb/myWeb/uni.scss -------------------------------------------------------------------------------- /MovieHunterWeb/myWeb/unpackage.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterWeb/myWeb/unpackage.zip -------------------------------------------------------------------------------- /MovieHunterWeb/myWeb/unpackage/dist/build/.automator/h5/.automator.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MovieHunterWeb/myWeb/unpackage/dist/build/h5/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterWeb/myWeb/unpackage/dist/build/h5/index.html -------------------------------------------------------------------------------- /MovieHunterWeb/myWeb/unpackage/dist/build/h5/static/exit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterWeb/myWeb/unpackage/dist/build/h5/static/exit.jpg -------------------------------------------------------------------------------- /MovieHunterWeb/myWeb/unpackage/dist/build/h5/static/exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterWeb/myWeb/unpackage/dist/build/h5/static/exit.png -------------------------------------------------------------------------------- /MovieHunterWeb/myWeb/unpackage/dist/build/h5/static/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterWeb/myWeb/unpackage/dist/build/h5/static/home.png -------------------------------------------------------------------------------- /MovieHunterWeb/myWeb/unpackage/dist/build/h5/static/img/exit.faacf3cc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterWeb/myWeb/unpackage/dist/build/h5/static/img/exit.faacf3cc.png -------------------------------------------------------------------------------- /MovieHunterWeb/myWeb/unpackage/dist/build/h5/static/img/home.005ac1ba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterWeb/myWeb/unpackage/dist/build/h5/static/img/home.005ac1ba.png -------------------------------------------------------------------------------- /MovieHunterWeb/myWeb/unpackage/dist/build/h5/static/img/login.b2dcc10e.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterWeb/myWeb/unpackage/dist/build/h5/static/img/login.b2dcc10e.jpg -------------------------------------------------------------------------------- /MovieHunterWeb/myWeb/unpackage/dist/build/h5/static/img/movieTag.a60c112a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterWeb/myWeb/unpackage/dist/build/h5/static/img/movieTag.a60c112a.png -------------------------------------------------------------------------------- /MovieHunterWeb/myWeb/unpackage/dist/build/h5/static/img/title.66356021.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterWeb/myWeb/unpackage/dist/build/h5/static/img/title.66356021.png -------------------------------------------------------------------------------- /MovieHunterWeb/myWeb/unpackage/dist/build/h5/static/img/user.e83768c3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterWeb/myWeb/unpackage/dist/build/h5/static/img/user.e83768c3.png -------------------------------------------------------------------------------- /MovieHunterWeb/myWeb/unpackage/dist/build/h5/static/index.97465e7b.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterWeb/myWeb/unpackage/dist/build/h5/static/index.97465e7b.css -------------------------------------------------------------------------------- /MovieHunterWeb/myWeb/unpackage/dist/build/h5/static/js/chunk-vendors.6a73e7f9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterWeb/myWeb/unpackage/dist/build/h5/static/js/chunk-vendors.6a73e7f9.js -------------------------------------------------------------------------------- /MovieHunterWeb/myWeb/unpackage/dist/build/h5/static/js/index.64668068.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterWeb/myWeb/unpackage/dist/build/h5/static/js/index.64668068.js -------------------------------------------------------------------------------- /MovieHunterWeb/myWeb/unpackage/dist/build/h5/static/js/pages-Login-LoginByEmail.d0d6f0a3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterWeb/myWeb/unpackage/dist/build/h5/static/js/pages-Login-LoginByEmail.d0d6f0a3.js -------------------------------------------------------------------------------- /MovieHunterWeb/myWeb/unpackage/dist/build/h5/static/js/pages-Login-LoginByEmail~pages-Login-findPassword~pages-Login-login.db07206b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterWeb/myWeb/unpackage/dist/build/h5/static/js/pages-Login-LoginByEmail~pages-Login-findPassword~pages-Login-login.db07206b.js -------------------------------------------------------------------------------- /MovieHunterWeb/myWeb/unpackage/dist/build/h5/static/js/pages-Login-LoginByEmail~pages-Login-findPassword~pages-Login-login~pages-MovieInfo-MovieInfo~pages-~168b95e5.f54e2552.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterWeb/myWeb/unpackage/dist/build/h5/static/js/pages-Login-LoginByEmail~pages-Login-findPassword~pages-Login-login~pages-MovieInfo-MovieInfo~pages-~168b95e5.f54e2552.js -------------------------------------------------------------------------------- /MovieHunterWeb/myWeb/unpackage/dist/build/h5/static/js/pages-Login-LoginByEmail~pages-Login-findPassword~pages-Login-login~pages-MovieInfo-MovieInfo~pages-~343e1f6c.a30ad831.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterWeb/myWeb/unpackage/dist/build/h5/static/js/pages-Login-LoginByEmail~pages-Login-findPassword~pages-Login-login~pages-MovieInfo-MovieInfo~pages-~343e1f6c.a30ad831.js -------------------------------------------------------------------------------- /MovieHunterWeb/myWeb/unpackage/dist/build/h5/static/js/pages-Login-LoginByEmail~pages-Login-findPassword~pages-Login-login~pages-MovieInfo-MovieInfo~pages-~9569d137.87e25c8f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterWeb/myWeb/unpackage/dist/build/h5/static/js/pages-Login-LoginByEmail~pages-Login-findPassword~pages-Login-login~pages-MovieInfo-MovieInfo~pages-~9569d137.87e25c8f.js -------------------------------------------------------------------------------- /MovieHunterWeb/myWeb/unpackage/dist/build/h5/static/js/pages-Login-findPassword.98f8e6a1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterWeb/myWeb/unpackage/dist/build/h5/static/js/pages-Login-findPassword.98f8e6a1.js -------------------------------------------------------------------------------- /MovieHunterWeb/myWeb/unpackage/dist/build/h5/static/js/pages-Login-login.4b84c095.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterWeb/myWeb/unpackage/dist/build/h5/static/js/pages-Login-login.4b84c095.js -------------------------------------------------------------------------------- /MovieHunterWeb/myWeb/unpackage/dist/build/h5/static/js/pages-MovieInfo-MovieInfo.53e10e0c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterWeb/myWeb/unpackage/dist/build/h5/static/js/pages-MovieInfo-MovieInfo.53e10e0c.js -------------------------------------------------------------------------------- /MovieHunterWeb/myWeb/unpackage/dist/build/h5/static/js/pages-MovieInfo-MovieInfo~pages-UserInfo-UserInfo~pages-recommendations-recommendations.2be4e39b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterWeb/myWeb/unpackage/dist/build/h5/static/js/pages-MovieInfo-MovieInfo~pages-UserInfo-UserInfo~pages-recommendations-recommendations.2be4e39b.js -------------------------------------------------------------------------------- /MovieHunterWeb/myWeb/unpackage/dist/build/h5/static/js/pages-UserInfo-UserInfo.7a2a1ba3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterWeb/myWeb/unpackage/dist/build/h5/static/js/pages-UserInfo-UserInfo.7a2a1ba3.js -------------------------------------------------------------------------------- /MovieHunterWeb/myWeb/unpackage/dist/build/h5/static/js/pages-UserInfo-comment.df2a4e8f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterWeb/myWeb/unpackage/dist/build/h5/static/js/pages-UserInfo-comment.df2a4e8f.js -------------------------------------------------------------------------------- /MovieHunterWeb/myWeb/unpackage/dist/build/h5/static/js/pages-UserInfo-like.1138c3f6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterWeb/myWeb/unpackage/dist/build/h5/static/js/pages-UserInfo-like.1138c3f6.js -------------------------------------------------------------------------------- /MovieHunterWeb/myWeb/unpackage/dist/build/h5/static/js/pages-favorite-favorite.64f2f927.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterWeb/myWeb/unpackage/dist/build/h5/static/js/pages-favorite-favorite.64f2f927.js -------------------------------------------------------------------------------- /MovieHunterWeb/myWeb/unpackage/dist/build/h5/static/js/pages-recommendations-recommendations.f5a63b8a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterWeb/myWeb/unpackage/dist/build/h5/static/js/pages-recommendations-recommendations.f5a63b8a.js -------------------------------------------------------------------------------- /MovieHunterWeb/myWeb/unpackage/dist/build/h5/static/login.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterWeb/myWeb/unpackage/dist/build/h5/static/login.jpg -------------------------------------------------------------------------------- /MovieHunterWeb/myWeb/unpackage/dist/build/h5/static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterWeb/myWeb/unpackage/dist/build/h5/static/logo.png -------------------------------------------------------------------------------- /MovieHunterWeb/myWeb/unpackage/dist/build/h5/static/movie.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterWeb/myWeb/unpackage/dist/build/h5/static/movie.jpeg -------------------------------------------------------------------------------- /MovieHunterWeb/myWeb/unpackage/dist/build/h5/static/movie.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterWeb/myWeb/unpackage/dist/build/h5/static/movie.webp -------------------------------------------------------------------------------- /MovieHunterWeb/myWeb/unpackage/dist/build/h5/static/movieTag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterWeb/myWeb/unpackage/dist/build/h5/static/movieTag.png -------------------------------------------------------------------------------- /MovieHunterWeb/myWeb/unpackage/dist/build/h5/static/movieTag1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterWeb/myWeb/unpackage/dist/build/h5/static/movieTag1.png -------------------------------------------------------------------------------- /MovieHunterWeb/myWeb/unpackage/dist/build/h5/static/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterWeb/myWeb/unpackage/dist/build/h5/static/star.png -------------------------------------------------------------------------------- /MovieHunterWeb/myWeb/unpackage/dist/build/h5/static/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterWeb/myWeb/unpackage/dist/build/h5/static/title.png -------------------------------------------------------------------------------- /MovieHunterWeb/myWeb/unpackage/dist/build/h5/static/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterWeb/myWeb/unpackage/dist/build/h5/static/user.png -------------------------------------------------------------------------------- /MovieHunterWeb/myWeb/unpackage/dist/build/h5/static/user1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/MovieHunterWeb/myWeb/unpackage/dist/build/h5/static/user1.png -------------------------------------------------------------------------------- /docs/101 A 电影推荐系统 数据库设计报告.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/docs/101 A 电影推荐系统 数据库设计报告.doc -------------------------------------------------------------------------------- /docs/101 A 电影推荐系统 系统设计报告.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/docs/101 A 电影推荐系统 系统设计报告.doc -------------------------------------------------------------------------------- /docs/101 A 电影推荐系统 需求分析报告.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/docs/101 A 电影推荐系统 需求分析报告.doc -------------------------------------------------------------------------------- /docs/101 A 电影推荐系统 需求获取报告.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/docs/101 A 电影推荐系统 需求获取报告.doc -------------------------------------------------------------------------------- /docs/101 A 电影推荐系统 项目计划.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/docs/101 A 电影推荐系统 项目计划.doc -------------------------------------------------------------------------------- /sql/movie_hunter.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stringl1l1l1l/MovieHunter/HEAD/sql/movie_hunter.sql --------------------------------------------------------------------------------