Repository: Alex-LiSun/vibe-music-server Branch: main Commit: d2dfe3843bf5 Files: 148 Total size: 585.0 KB Directory structure: gitextract_iwruxmra/ ├── .gitattributes ├── .gitignore ├── .mvn/ │ └── wrapper/ │ └── maven-wrapper.properties ├── LICENSE ├── README.md ├── mvnw ├── mvnw.cmd ├── pom.xml ├── sql/ │ └── vibe_music.sql └── src/ ├── main/ │ ├── java/ │ │ └── cn/ │ │ └── edu/ │ │ └── seig/ │ │ └── vibemusic/ │ │ ├── VibeMusicServerApplication.java │ │ ├── config/ │ │ │ ├── CorsConfig.java │ │ │ ├── MinioConfig.java │ │ │ ├── MyBatisPlusConfig.java │ │ │ ├── RedisConfig.java │ │ │ ├── RolePathPermissionsConfig.java │ │ │ ├── RolePermissionManager.java │ │ │ └── WebConfig.java │ │ ├── constant/ │ │ │ ├── JwtClaimsConstant.java │ │ │ ├── MessageConstant.java │ │ │ └── PathConstant.java │ │ ├── controller/ │ │ │ ├── AdminController.java │ │ │ ├── ArtistController.java │ │ │ ├── BannerController.java │ │ │ ├── CommentController.java │ │ │ ├── FeedbackController.java │ │ │ ├── GenreController.java │ │ │ ├── PlaylistBindingController.java │ │ │ ├── PlaylistController.java │ │ │ ├── SongController.java │ │ │ ├── StyleController.java │ │ │ ├── UserController.java │ │ │ └── UserFavoriteController.java │ │ ├── enumeration/ │ │ │ ├── BannerStatusEnum.java │ │ │ ├── CommentTypeEnum.java │ │ │ ├── FavoriteTypeEnum.java │ │ │ ├── LikeStatusEnum.java │ │ │ ├── RoleEnum.java │ │ │ └── UserStatusEnum.java │ │ ├── handler/ │ │ │ └── GlobalExceptionHandler.java │ │ ├── interceptor/ │ │ │ └── LoginInterceptor.java │ │ ├── mapper/ │ │ │ ├── AdminMapper.java │ │ │ ├── ArtistMapper.java │ │ │ ├── BannerMapper.java │ │ │ ├── CommentMapper.java │ │ │ ├── FeedbackMapper.java │ │ │ ├── GenreMapper.java │ │ │ ├── PlaylistBindingMapper.java │ │ │ ├── PlaylistMapper.java │ │ │ ├── SongMapper.java │ │ │ ├── StyleMapper.java │ │ │ ├── UserFavoriteMapper.java │ │ │ └── UserMapper.java │ │ ├── model/ │ │ │ ├── dto/ │ │ │ │ ├── AdminDTO.java │ │ │ │ ├── ArtistAddDTO.java │ │ │ │ ├── ArtistDTO.java │ │ │ │ ├── ArtistUpdateDTO.java │ │ │ │ ├── BannerDTO.java │ │ │ │ ├── CommentPlaylistDTO.java │ │ │ │ ├── CommentSongDTO.java │ │ │ │ ├── FeedbackDTO.java │ │ │ │ ├── PlaylistAddDTO.java │ │ │ │ ├── PlaylistDTO.java │ │ │ │ ├── PlaylistUpdateDTO.java │ │ │ │ ├── SongAddDTO.java │ │ │ │ ├── SongAndArtistDTO.java │ │ │ │ ├── SongDTO.java │ │ │ │ ├── SongUpdateDTO.java │ │ │ │ ├── UserAddDTO.java │ │ │ │ ├── UserDTO.java │ │ │ │ ├── UserLoginDTO.java │ │ │ │ ├── UserPasswordDTO.java │ │ │ │ ├── UserRegisterDTO.java │ │ │ │ ├── UserResetPasswordDTO.java │ │ │ │ └── UserSearchDTO.java │ │ │ ├── entity/ │ │ │ │ ├── Admin.java │ │ │ │ ├── Artist.java │ │ │ │ ├── Banner.java │ │ │ │ ├── Comment.java │ │ │ │ ├── Feedback.java │ │ │ │ ├── Genre.java │ │ │ │ ├── Playlist.java │ │ │ │ ├── PlaylistBinding.java │ │ │ │ ├── Song.java │ │ │ │ ├── Style.java │ │ │ │ ├── User.java │ │ │ │ └── UserFavorite.java │ │ │ └── vo/ │ │ │ ├── ArtistDetailVO.java │ │ │ ├── ArtistNameVO.java │ │ │ ├── ArtistVO.java │ │ │ ├── BannerVO.java │ │ │ ├── CommentVO.java │ │ │ ├── PlaylistDetailVO.java │ │ │ ├── PlaylistVO.java │ │ │ ├── SongAdminVO.java │ │ │ ├── SongDetailVO.java │ │ │ ├── SongVO.java │ │ │ ├── UserManagementVO.java │ │ │ └── UserVO.java │ │ ├── result/ │ │ │ ├── PageResult.java │ │ │ └── Result.java │ │ ├── service/ │ │ │ ├── EmailService.java │ │ │ ├── IAdminService.java │ │ │ ├── IArtistService.java │ │ │ ├── IBannerService.java │ │ │ ├── ICommentService.java │ │ │ ├── IFeedbackService.java │ │ │ ├── IGenreService.java │ │ │ ├── IPlaylistBindingService.java │ │ │ ├── IPlaylistService.java │ │ │ ├── ISongService.java │ │ │ ├── IStyleService.java │ │ │ ├── IUserFavoriteService.java │ │ │ ├── IUserService.java │ │ │ ├── MinioService.java │ │ │ └── impl/ │ │ │ ├── AdminServiceImpl.java │ │ │ ├── ArtistServiceImpl.java │ │ │ ├── BannerServiceImpl.java │ │ │ ├── CommentServiceImpl.java │ │ │ ├── EmailServiceImpl.java │ │ │ ├── FeedbackServiceImpl.java │ │ │ ├── GenreServiceImpl.java │ │ │ ├── MinioServiceImpl.java │ │ │ ├── PlaylistBindingServiceImpl.java │ │ │ ├── PlaylistServiceImpl.java │ │ │ ├── SongServiceImpl.java │ │ │ ├── StyleServiceImpl.java │ │ │ ├── UserFavoriteServiceImpl.java │ │ │ └── UserServiceImpl.java │ │ └── util/ │ │ ├── BindingResultUtil.java │ │ ├── JwtUtil.java │ │ ├── RandomCodeUtil.java │ │ ├── ThreadLocalUtil.java │ │ └── TypeConversionUtil.java │ └── resources/ │ ├── application.yml │ └── mapper/ │ ├── AdminMapper.xml │ ├── ArtistMapper.xml │ ├── BannerMapper.xml │ ├── CommentMapper.xml │ ├── FeedbackMapper.xml │ ├── GenreMapper.xml │ ├── PlaylistBindingMapper.xml │ ├── PlaylistMapper.xml │ ├── SongMapper.xml │ ├── StyleMapper.xml │ ├── UserFavoriteMapper.xml │ └── UserMapper.xml └── test/ └── java/ └── cn/ └── edu/ └── seig/ └── vibemusic/ ├── RedisConnectionTest.java └── VibeMusicServerApplicationTests.java ================================================ FILE CONTENTS ================================================ ================================================ FILE: .gitattributes ================================================ /mvnw text eol=lf *.cmd text eol=crlf ================================================ FILE: .gitignore ================================================ HELP.md target/ !.mvn/wrapper/maven-wrapper.jar !**/src/main/**/target/ !**/src/test/**/target/ ### STS ### .apt_generated .classpath .factorypath .project .settings .springBeans .sts4-cache ### IntelliJ IDEA ### .idea *.iws *.iml *.ipr ### NetBeans ### /nbproject/private/ /nbbuild/ /dist/ /nbdist/ /.nb-gradle/ build/ !**/src/main/**/build/ !**/src/test/**/build/ ### VS Code ### .vscode/ ================================================ FILE: .mvn/wrapper/maven-wrapper.properties ================================================ # Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information # regarding copyright ownership. The ASF licenses this file # to you under the Apache License, Version 2.0 (the # "License"); you may not use this file except in compliance # with the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, # software distributed under the License is distributed on an # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. wrapperVersion=3.3.2 distributionType=only-script distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.9/apache-maven-3.9.9-bin.zip ================================================ FILE: LICENSE ================================================ MIT License Copyright (c) 2025 Alex-LiSun Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: README.md ================================================ # Vibe Music Server 🎶 ## 介绍 📖 **Vibe Music Server** 是 Vibe Music 项目的后端 API 服务。本项目基于 **Spring Boot 3** 构建,采用 **Java 17**、**Maven**、**MyBatis-Plus**、**MySQL**、**Redis** 和 **MinIO** 等技术,为 Vibe Music 的客户端和管理端提供稳定、高效的数据支持和业务逻辑处理。 ## 主要功能 ✨ 本服务提供以下核心功能 API: - **用户认证与管理**: 提供用户注册、登录、信息修改、头像上传、注销等接口,支持管理员对用户进行管理(查询、禁用/启用)。 - **内容管理**: - **歌手管理**: 添加、编辑、删除歌手信息。 - **歌曲管理**: 添加、编辑、删除歌曲信息,处理歌曲文件上传。 - **歌单管理**: 创建、编辑、删除歌单,管理歌单歌曲。 - **轮播图管理**: 添加、编辑、删除首页轮播图。 - **用户互动**: - **评论管理**: 发表、查看、删除歌曲或歌单的评论。 - **收藏管理**: 用户收藏/取消收藏歌曲、歌单。 - **反馈管理**: 提交、查看、处理用户反馈。 - **文件服务**: 使用 MinIO 存储和管理音乐文件、图片(如头像、封面)等静态资源。 - **权限控制**: 基于 JWT 和角色进行 API 访问权限控制。 - **数据缓存**: 利用 Redis 缓存热点数据,提高访问速度。 - **邮件服务**: 支持发送验证码等邮件通知。 ## 技术栈 🛠️ - **后端框架**: [Spring Boot 3](https://spring.io/projects/spring-boot) - **开发语言**: [Java 17](https://www.oracle.com/java/technologies/javase/jdk17-archive-downloads.html) - **构建工具**: [Maven](https://maven.apache.org/) - **数据库**: [MySQL](https://www.mysql.com/) (推荐 8.0+) - **ORM**: [MyBatis-Plus](https://baomidou.com/) - **缓存**: [Redis](https://redis.io/) - **对象存储**: [MinIO](https://min.io/) - **认证**: [JWT (java-jwt)](https://github.com/auth0/java-jwt) - **数据库连接池**: [Druid](https://github.com/alibaba/druid) - **工具库**: Lombok, Spring Boot Validation, Java Mail ## 系统需求 ⚙️ - **JDK**: `17` 或更高版本 - **Maven**: `3.6` 或更高版本 - **MySQL**: `8.0` 或更高版本 - **Redis**: 推荐 `6.0` 或更高版本 - **MinIO**: 最新稳定版 ## 代码仓库 ⭐ - [GitHub 代码仓库](https://github.com/Alex-LiSun/vibe-music-server.git) ## 文件下载 📥 本项目包含的所有文件,均已通过MinIO存储桶的形式进行分享,并提供百度网盘的下载链接。 - vibe-music-data: [https://pan.baidu.com/s/1IHU2EBodNmmjCeYi7_Tw5g?pwd=1234] (提取码: `1234`) ![vibe-music-data](https://github.com/Alex-LiSun/vibe-music-server/blob/main/img/vibe-music-data.png) ![vibe-music-data](https://github.com/Alex-LiSun/vibe-music-server/blob/main/img/vibe-music-data-songs.png) ## 安装与启动 🚀 1. **克隆项目** ```bash # GitHub (示例) git clone https://github.com/Alex-LiSun/vibe-music-server.git cd vibe-music-server ``` 2. **环境准备** - 确保已安装并运行 **MySQL 8.0+** 数据库服务。 - 创建名为 `vibe_music` 的数据库 (或与配置文件中名称一致),并使用 `UTF-8` 字符集。 ```sql CREATE DATABASE vibe_music CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci; ``` - 确保已安装并运行 **Redis** 服务。 - 确保已安装并运行 **MinIO** 服务。 - 在 MinIO 中创建一个名为 `vibe-music-data` 的 Bucket (或与配置文件中名称一致),并确保服务具有读写权限。 3. **配置应用** - 找到并修改 `src/main/resources/application.yml` 文件。 - **数据库配置**: 修改 `spring.datasource` 下的 `url`, `username`, `password` 以匹配你的 MySQL 环境。 - **Redis 配置**: 修改 `spring.data.redis` 下的 `host`, `port`, `password` (如果需要) 以匹配你的 Redis 环境。 - **MinIO 配置**: 修改 `minio` 下的 `endpoint`, `accessKey`, `secretKey`, `bucket` 以匹配你的 MinIO 环境。 - **邮件服务配置 (可选)**: 如果需要邮件功能(如验证码),修改 `spring.mail` 下的 `host`, `username`, `password`。 **注意:请勿将生产环境的敏感密码直接提交到代码库。** 建议使用环境变量或配置中心管理。 ```yaml # src/main/resources/application.yml (部分示例) spring: datasource: url: jdbc:mysql://YOUR_MYSQL_HOST:3306/vibe_music?useUnicode=true&characterEncoding=utf-8&useSSL=false # 修改你的 MySQL 地址和库名 username: YOUR_MYSQL_USER # 修改你的 MySQL 用户名 password: YOUR_MYSQL_PASSWORD # 修改你的 MySQL 密码 # ... data: redis: host: YOUR_REDIS_HOST # 修改你的 Redis 地址 port: 6379 password: YOUR_REDIS_PASSWORD # 如果 Redis 有密码,取消注释并修改 database: 1 # ... mail: host: smtp.example.com # 修改你的 SMTP 服务器地址 username: your-email@example.com # 修改你的邮箱账号 password: YOUR_EMAIL_APP_PASSWORD # 修改你的邮箱应用密码或授权码 # ... minio: endpoint: http://YOUR_MINIO_HOST:9000 # 修改你的 MinIO 端点 accessKey: YOUR_MINIO_ACCESS_KEY # 修改你的 MinIO Access Key secretKey: YOUR_MINIO_SECRET_KEY # 修改你的 MinIO Secret Key bucket: vibe-music-data # 确认 Bucket 名称与你创建的一致 ``` 4. **构建项目** (使用 Maven) 在项目根目录下执行: ```bash mvn clean package -DskipTests ``` 这将在 `target` 目录下生成一个可执行的 JAR 文件 (例如 `vibe-music-server-0.0.1-SNAPSHOT.jar`)。 5. **运行服务** ```bash java -jar target/vibe-music-server-*.jar ``` 服务默认启动在 `8080` 端口 (Spring Boot 默认端口,可在 `application.yml` 中通过 `server.port` 修改)。 ## 项目脚本 📜 (Maven) - `mvn clean`: 清理构建产物。 - `mvn compile`: 编译项目源代码。 - `mvn test`: 运行单元测试。 - `mvn package`: 打包项目为可执行 JAR 文件。 - `mvn spring-boot:run`: 启动 Spring Boot 应用 (用于开发)。 - `java -jar target/*.jar`: 运行打包后的 JAR 文件。 ## 项目演示 📺 视频地址:[https://www.bilibili.com/video/BV1tKJ8z8E6z/] ## API 文档 接口 本项目旨在为 [Vibe Music Client](https://github.com/Alex-LiSun/vibe-music-client) (客户端) 和 [Vibe Music Admin](https://github.com/Alex-LiSun/vibe-music-admin) (管理端) 提供后端支持。具体的 API 接口定义和使用方式,请参考项目源代码中的 Controller 层代码,或使用 API 文档工具 (如 Swagger,如果项目中集成了的话) 查看。 ## 依赖服务说明 🔗 本项目运行依赖以下外部服务,请确保它们已正确安装、配置并正在运行: - **MySQL**: 用于持久化存储核心业务数据。 - **Redis**: 用于数据缓存,提升性能。 - **MinIO**: 用于存储音乐文件、图片等静态资源。 ## 免责声明 ⚠️ **Vibe Music Server** 项目仅供学习和技术研究使用。所有由本服务管理和存储的数据(包括用户信息、音乐文件、图片等)均由您自行配置和运行的 **MySQL**, **Redis**, **MinIO** 服务承载。请在遵守相关国家和地区的法律法规以及版权政策的前提下使用。 - **请勿用于任何商业用途。** - 对于因使用本项目而可能产生的任何直接或间接问题、数据安全风险、版权纠纷或经济损失,项目作者不承担任何责任。 - 用户需自行承担所有使用风险,包括确保数据来源合法合规,以及所依赖服务的安全稳定运行。 在您部署和使用本软件前,请仔细阅读并理解本免责声明。继续使用即表示您同意本声明的所有条款。 ## 许可证 📄 本项目采用 MIT 许可证 - 查看 [LICENSE](LICENSE) 文件了解详情 ## 贡献 ❤️ 欢迎各种形式的贡献,包括提交 Issue、Pull Request 或提出建议! ## 常见问题 (FAQ) ❓ - **启动失败,提示数据库连接错误?** - 检查 `application.yml` 中的 `spring.datasource` 配置是否正确 (URL、用户名、密码)。 - 确认 MySQL 服务是否正在运行,并且网络可达。 - 确认数据库 `vibe_music` 是否已创建,并且字符集正确。 - 检查 MySQL 用户是否有权限访问该数据库。 - **启动失败,提示 Redis 连接错误?** - 检查 `application.yml` 中的 `spring.data.redis` 配置是否正确 (host, port, password)。 - 确认 Redis 服务是否正在运行,并且网络可达。 - **文件上传失败或无法访问?** - 检查 `application.yml` 中的 `minio` 配置是否正确 (endpoint, accessKey, secretKey, bucket)。 - 确认 MinIO 服务是否正在运行,并且网络可达。 - 确认 MinIO 中名为 `vibe-music-data` (或你配置的名称) 的 Bucket 是否已创建。 - 检查 MinIO 的 Bucket 策略或服务权限设置,确保应用有读写权限。 - 检查 `spring.servlet.multipart` 的 `max-file-size` 和 `max-request-size` 是否足够大。 - **端口冲突 (Port already in use)?** - 检查是否有其他程序占用了 `8080` 端口 (或其他你在 `application.yml` 中配置的 `server.port`)。 - 你可以修改 `application.yml` 中的 `server.port` 来使用其他端口。 - **如何查看 API 接口?** - 如果项目集成了 Swagger 或 SpringDoc,启动服务后通常可以通过访问 `/swagger-ui.html` 或 `/v3/api-docs` 来查看和测试 API。 - 如果没有集成文档工具,需要直接查看 `src/main/java/.../controller` 目录下的 Java 代码来了解接口定义。 ================================================ FILE: mvnw ================================================ #!/bin/sh # ---------------------------------------------------------------------------- # Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information # regarding copyright ownership. The ASF licenses this file # to you under the Apache License, Version 2.0 (the # "License"); you may not use this file except in compliance # with the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, # software distributed under the License is distributed on an # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. # ---------------------------------------------------------------------------- # ---------------------------------------------------------------------------- # Apache Maven Wrapper startup batch script, version 3.3.2 # # Optional ENV vars # ----------------- # JAVA_HOME - location of a JDK home dir, required when download maven via java source # MVNW_REPOURL - repo url base for downloading maven distribution # MVNW_USERNAME/MVNW_PASSWORD - user and password for downloading maven # MVNW_VERBOSE - true: enable verbose log; debug: trace the mvnw script; others: silence the output # ---------------------------------------------------------------------------- set -euf [ "${MVNW_VERBOSE-}" != debug ] || set -x # OS specific support. native_path() { printf %s\\n "$1"; } case "$(uname)" in CYGWIN* | MINGW*) [ -z "${JAVA_HOME-}" ] || JAVA_HOME="$(cygpath --unix "$JAVA_HOME")" native_path() { cygpath --path --windows "$1"; } ;; esac # set JAVACMD and JAVACCMD set_java_home() { # For Cygwin and MinGW, ensure paths are in Unix format before anything is touched if [ -n "${JAVA_HOME-}" ]; then if [ -x "$JAVA_HOME/jre/sh/java" ]; then # IBM's JDK on AIX uses strange locations for the executables JAVACMD="$JAVA_HOME/jre/sh/java" JAVACCMD="$JAVA_HOME/jre/sh/javac" else JAVACMD="$JAVA_HOME/bin/java" JAVACCMD="$JAVA_HOME/bin/javac" if [ ! -x "$JAVACMD" ] || [ ! -x "$JAVACCMD" ]; then echo "The JAVA_HOME environment variable is not defined correctly, so mvnw cannot run." >&2 echo "JAVA_HOME is set to \"$JAVA_HOME\", but \"\$JAVA_HOME/bin/java\" or \"\$JAVA_HOME/bin/javac\" does not exist." >&2 return 1 fi fi else JAVACMD="$( 'set' +e 'unset' -f command 2>/dev/null 'command' -v java )" || : JAVACCMD="$( 'set' +e 'unset' -f command 2>/dev/null 'command' -v javac )" || : if [ ! -x "${JAVACMD-}" ] || [ ! -x "${JAVACCMD-}" ]; then echo "The java/javac command does not exist in PATH nor is JAVA_HOME set, so mvnw cannot run." >&2 return 1 fi fi } # hash string like Java String::hashCode hash_string() { str="${1:-}" h=0 while [ -n "$str" ]; do char="${str%"${str#?}"}" h=$(((h * 31 + $(LC_CTYPE=C printf %d "'$char")) % 4294967296)) str="${str#?}" done printf %x\\n $h } verbose() { :; } [ "${MVNW_VERBOSE-}" != true ] || verbose() { printf %s\\n "${1-}"; } die() { printf %s\\n "$1" >&2 exit 1 } trim() { # MWRAPPER-139: # Trims trailing and leading whitespace, carriage returns, tabs, and linefeeds. # Needed for removing poorly interpreted newline sequences when running in more # exotic environments such as mingw bash on Windows. printf "%s" "${1}" | tr -d '[:space:]' } # parse distributionUrl and optional distributionSha256Sum, requires .mvn/wrapper/maven-wrapper.properties while IFS="=" read -r key value; do case "${key-}" in distributionUrl) distributionUrl=$(trim "${value-}") ;; distributionSha256Sum) distributionSha256Sum=$(trim "${value-}") ;; esac done <"${0%/*}/.mvn/wrapper/maven-wrapper.properties" [ -n "${distributionUrl-}" ] || die "cannot read distributionUrl property in ${0%/*}/.mvn/wrapper/maven-wrapper.properties" case "${distributionUrl##*/}" in maven-mvnd-*bin.*) MVN_CMD=mvnd.sh _MVNW_REPO_PATTERN=/maven/mvnd/ case "${PROCESSOR_ARCHITECTURE-}${PROCESSOR_ARCHITEW6432-}:$(uname -a)" in *AMD64:CYGWIN* | *AMD64:MINGW*) distributionPlatform=windows-amd64 ;; :Darwin*x86_64) distributionPlatform=darwin-amd64 ;; :Darwin*arm64) distributionPlatform=darwin-aarch64 ;; :Linux*x86_64*) distributionPlatform=linux-amd64 ;; *) echo "Cannot detect native platform for mvnd on $(uname)-$(uname -m), use pure java version" >&2 distributionPlatform=linux-amd64 ;; esac distributionUrl="${distributionUrl%-bin.*}-$distributionPlatform.zip" ;; maven-mvnd-*) MVN_CMD=mvnd.sh _MVNW_REPO_PATTERN=/maven/mvnd/ ;; *) MVN_CMD="mvn${0##*/mvnw}" _MVNW_REPO_PATTERN=/org/apache/maven/ ;; esac # apply MVNW_REPOURL and calculate MAVEN_HOME # maven home pattern: ~/.m2/wrapper/dists/{apache-maven-,maven-mvnd--}/ [ -z "${MVNW_REPOURL-}" ] || distributionUrl="$MVNW_REPOURL$_MVNW_REPO_PATTERN${distributionUrl#*"$_MVNW_REPO_PATTERN"}" distributionUrlName="${distributionUrl##*/}" distributionUrlNameMain="${distributionUrlName%.*}" distributionUrlNameMain="${distributionUrlNameMain%-bin}" MAVEN_USER_HOME="${MAVEN_USER_HOME:-${HOME}/.m2}" MAVEN_HOME="${MAVEN_USER_HOME}/wrapper/dists/${distributionUrlNameMain-}/$(hash_string "$distributionUrl")" exec_maven() { unset MVNW_VERBOSE MVNW_USERNAME MVNW_PASSWORD MVNW_REPOURL || : exec "$MAVEN_HOME/bin/$MVN_CMD" "$@" || die "cannot exec $MAVEN_HOME/bin/$MVN_CMD" } if [ -d "$MAVEN_HOME" ]; then verbose "found existing MAVEN_HOME at $MAVEN_HOME" exec_maven "$@" fi case "${distributionUrl-}" in *?-bin.zip | *?maven-mvnd-?*-?*.zip) ;; *) die "distributionUrl is not valid, must match *-bin.zip or maven-mvnd-*.zip, but found '${distributionUrl-}'" ;; esac # prepare tmp dir if TMP_DOWNLOAD_DIR="$(mktemp -d)" && [ -d "$TMP_DOWNLOAD_DIR" ]; then clean() { rm -rf -- "$TMP_DOWNLOAD_DIR"; } trap clean HUP INT TERM EXIT else die "cannot create temp dir" fi mkdir -p -- "${MAVEN_HOME%/*}" # Download and Install Apache Maven verbose "Couldn't find MAVEN_HOME, downloading and installing it ..." verbose "Downloading from: $distributionUrl" verbose "Downloading to: $TMP_DOWNLOAD_DIR/$distributionUrlName" # select .zip or .tar.gz if ! command -v unzip >/dev/null; then distributionUrl="${distributionUrl%.zip}.tar.gz" distributionUrlName="${distributionUrl##*/}" fi # verbose opt __MVNW_QUIET_WGET=--quiet __MVNW_QUIET_CURL=--silent __MVNW_QUIET_UNZIP=-q __MVNW_QUIET_TAR='' [ "${MVNW_VERBOSE-}" != true ] || __MVNW_QUIET_WGET='' __MVNW_QUIET_CURL='' __MVNW_QUIET_UNZIP='' __MVNW_QUIET_TAR=v # normalize http auth case "${MVNW_PASSWORD:+has-password}" in '') MVNW_USERNAME='' MVNW_PASSWORD='' ;; has-password) [ -n "${MVNW_USERNAME-}" ] || MVNW_USERNAME='' MVNW_PASSWORD='' ;; esac if [ -z "${MVNW_USERNAME-}" ] && command -v wget >/dev/null; then verbose "Found wget ... using wget" wget ${__MVNW_QUIET_WGET:+"$__MVNW_QUIET_WGET"} "$distributionUrl" -O "$TMP_DOWNLOAD_DIR/$distributionUrlName" || die "wget: Failed to fetch $distributionUrl" elif [ -z "${MVNW_USERNAME-}" ] && command -v curl >/dev/null; then verbose "Found curl ... using curl" curl ${__MVNW_QUIET_CURL:+"$__MVNW_QUIET_CURL"} -f -L -o "$TMP_DOWNLOAD_DIR/$distributionUrlName" "$distributionUrl" || die "curl: Failed to fetch $distributionUrl" elif set_java_home; then verbose "Falling back to use Java to download" javaSource="$TMP_DOWNLOAD_DIR/Downloader.java" targetZip="$TMP_DOWNLOAD_DIR/$distributionUrlName" cat >"$javaSource" <<-END public class Downloader extends java.net.Authenticator { protected java.net.PasswordAuthentication getPasswordAuthentication() { return new java.net.PasswordAuthentication( System.getenv( "MVNW_USERNAME" ), System.getenv( "MVNW_PASSWORD" ).toCharArray() ); } public static void main( String[] args ) throws Exception { setDefault( new Downloader() ); java.nio.file.Files.copy( java.net.URI.create( args[0] ).toURL().openStream(), java.nio.file.Paths.get( args[1] ).toAbsolutePath().normalize() ); } } END # For Cygwin/MinGW, switch paths to Windows format before running javac and java verbose " - Compiling Downloader.java ..." "$(native_path "$JAVACCMD")" "$(native_path "$javaSource")" || die "Failed to compile Downloader.java" verbose " - Running Downloader.java ..." "$(native_path "$JAVACMD")" -cp "$(native_path "$TMP_DOWNLOAD_DIR")" Downloader "$distributionUrl" "$(native_path "$targetZip")" fi # If specified, validate the SHA-256 sum of the Maven distribution zip file if [ -n "${distributionSha256Sum-}" ]; then distributionSha256Result=false if [ "$MVN_CMD" = mvnd.sh ]; then echo "Checksum validation is not supported for maven-mvnd." >&2 echo "Please disable validation by removing 'distributionSha256Sum' from your maven-wrapper.properties." >&2 exit 1 elif command -v sha256sum >/dev/null; then if echo "$distributionSha256Sum $TMP_DOWNLOAD_DIR/$distributionUrlName" | sha256sum -c >/dev/null 2>&1; then distributionSha256Result=true fi elif command -v shasum >/dev/null; then if echo "$distributionSha256Sum $TMP_DOWNLOAD_DIR/$distributionUrlName" | shasum -a 256 -c >/dev/null 2>&1; then distributionSha256Result=true fi else echo "Checksum validation was requested but neither 'sha256sum' or 'shasum' are available." >&2 echo "Please install either command, or disable validation by removing 'distributionSha256Sum' from your maven-wrapper.properties." >&2 exit 1 fi if [ $distributionSha256Result = false ]; then echo "Error: Failed to validate Maven distribution SHA-256, your Maven distribution might be compromised." >&2 echo "If you updated your Maven version, you need to update the specified distributionSha256Sum property." >&2 exit 1 fi fi # unzip and move if command -v unzip >/dev/null; then unzip ${__MVNW_QUIET_UNZIP:+"$__MVNW_QUIET_UNZIP"} "$TMP_DOWNLOAD_DIR/$distributionUrlName" -d "$TMP_DOWNLOAD_DIR" || die "failed to unzip" else tar xzf${__MVNW_QUIET_TAR:+"$__MVNW_QUIET_TAR"} "$TMP_DOWNLOAD_DIR/$distributionUrlName" -C "$TMP_DOWNLOAD_DIR" || die "failed to untar" fi printf %s\\n "$distributionUrl" >"$TMP_DOWNLOAD_DIR/$distributionUrlNameMain/mvnw.url" mv -- "$TMP_DOWNLOAD_DIR/$distributionUrlNameMain" "$MAVEN_HOME" || [ -d "$MAVEN_HOME" ] || die "fail to move MAVEN_HOME" clean || : exec_maven "$@" ================================================ FILE: mvnw.cmd ================================================ <# : batch portion @REM ---------------------------------------------------------------------------- @REM Licensed to the Apache Software Foundation (ASF) under one @REM or more contributor license agreements. See the NOTICE file @REM distributed with this work for additional information @REM regarding copyright ownership. The ASF licenses this file @REM to you under the Apache License, Version 2.0 (the @REM "License"); you may not use this file except in compliance @REM with the License. You may obtain a copy of the License at @REM @REM http://www.apache.org/licenses/LICENSE-2.0 @REM @REM Unless required by applicable law or agreed to in writing, @REM software distributed under the License is distributed on an @REM "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY @REM KIND, either express or implied. See the License for the @REM specific language governing permissions and limitations @REM under the License. @REM ---------------------------------------------------------------------------- @REM ---------------------------------------------------------------------------- @REM Apache Maven Wrapper startup batch script, version 3.3.2 @REM @REM Optional ENV vars @REM MVNW_REPOURL - repo url base for downloading maven distribution @REM MVNW_USERNAME/MVNW_PASSWORD - user and password for downloading maven @REM MVNW_VERBOSE - true: enable verbose log; others: silence the output @REM ---------------------------------------------------------------------------- @IF "%__MVNW_ARG0_NAME__%"=="" (SET __MVNW_ARG0_NAME__=%~nx0) @SET __MVNW_CMD__= @SET __MVNW_ERROR__= @SET __MVNW_PSMODULEP_SAVE=%PSModulePath% @SET PSModulePath= @FOR /F "usebackq tokens=1* delims==" %%A IN (`powershell -noprofile "& {$scriptDir='%~dp0'; $script='%__MVNW_ARG0_NAME__%'; icm -ScriptBlock ([Scriptblock]::Create((Get-Content -Raw '%~f0'))) -NoNewScope}"`) DO @( IF "%%A"=="MVN_CMD" (set __MVNW_CMD__=%%B) ELSE IF "%%B"=="" (echo %%A) ELSE (echo %%A=%%B) ) @SET PSModulePath=%__MVNW_PSMODULEP_SAVE% @SET __MVNW_PSMODULEP_SAVE= @SET __MVNW_ARG0_NAME__= @SET MVNW_USERNAME= @SET MVNW_PASSWORD= @IF NOT "%__MVNW_CMD__%"=="" (%__MVNW_CMD__% %*) @echo Cannot start maven from wrapper >&2 && exit /b 1 @GOTO :EOF : end batch / begin powershell #> $ErrorActionPreference = "Stop" if ($env:MVNW_VERBOSE -eq "true") { $VerbosePreference = "Continue" } # calculate distributionUrl, requires .mvn/wrapper/maven-wrapper.properties $distributionUrl = (Get-Content -Raw "$scriptDir/.mvn/wrapper/maven-wrapper.properties" | ConvertFrom-StringData).distributionUrl if (!$distributionUrl) { Write-Error "cannot read distributionUrl property in $scriptDir/.mvn/wrapper/maven-wrapper.properties" } switch -wildcard -casesensitive ( $($distributionUrl -replace '^.*/','') ) { "maven-mvnd-*" { $USE_MVND = $true $distributionUrl = $distributionUrl -replace '-bin\.[^.]*$',"-windows-amd64.zip" $MVN_CMD = "mvnd.cmd" break } default { $USE_MVND = $false $MVN_CMD = $script -replace '^mvnw','mvn' break } } # apply MVNW_REPOURL and calculate MAVEN_HOME # maven home pattern: ~/.m2/wrapper/dists/{apache-maven-,maven-mvnd--}/ if ($env:MVNW_REPOURL) { $MVNW_REPO_PATTERN = if ($USE_MVND) { "/org/apache/maven/" } else { "/maven/mvnd/" } $distributionUrl = "$env:MVNW_REPOURL$MVNW_REPO_PATTERN$($distributionUrl -replace '^.*'+$MVNW_REPO_PATTERN,'')" } $distributionUrlName = $distributionUrl -replace '^.*/','' $distributionUrlNameMain = $distributionUrlName -replace '\.[^.]*$','' -replace '-bin$','' $MAVEN_HOME_PARENT = "$HOME/.m2/wrapper/dists/$distributionUrlNameMain" if ($env:MAVEN_USER_HOME) { $MAVEN_HOME_PARENT = "$env:MAVEN_USER_HOME/wrapper/dists/$distributionUrlNameMain" } $MAVEN_HOME_NAME = ([System.Security.Cryptography.MD5]::Create().ComputeHash([byte[]][char[]]$distributionUrl) | ForEach-Object {$_.ToString("x2")}) -join '' $MAVEN_HOME = "$MAVEN_HOME_PARENT/$MAVEN_HOME_NAME" if (Test-Path -Path "$MAVEN_HOME" -PathType Container) { Write-Verbose "found existing MAVEN_HOME at $MAVEN_HOME" Write-Output "MVN_CMD=$MAVEN_HOME/bin/$MVN_CMD" exit $? } if (! $distributionUrlNameMain -or ($distributionUrlName -eq $distributionUrlNameMain)) { Write-Error "distributionUrl is not valid, must end with *-bin.zip, but found $distributionUrl" } # prepare tmp dir $TMP_DOWNLOAD_DIR_HOLDER = New-TemporaryFile $TMP_DOWNLOAD_DIR = New-Item -Itemtype Directory -Path "$TMP_DOWNLOAD_DIR_HOLDER.dir" $TMP_DOWNLOAD_DIR_HOLDER.Delete() | Out-Null trap { if ($TMP_DOWNLOAD_DIR.Exists) { try { Remove-Item $TMP_DOWNLOAD_DIR -Recurse -Force | Out-Null } catch { Write-Warning "Cannot remove $TMP_DOWNLOAD_DIR" } } } New-Item -Itemtype Directory -Path "$MAVEN_HOME_PARENT" -Force | Out-Null # Download and Install Apache Maven Write-Verbose "Couldn't find MAVEN_HOME, downloading and installing it ..." Write-Verbose "Downloading from: $distributionUrl" Write-Verbose "Downloading to: $TMP_DOWNLOAD_DIR/$distributionUrlName" $webclient = New-Object System.Net.WebClient if ($env:MVNW_USERNAME -and $env:MVNW_PASSWORD) { $webclient.Credentials = New-Object System.Net.NetworkCredential($env:MVNW_USERNAME, $env:MVNW_PASSWORD) } [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 $webclient.DownloadFile($distributionUrl, "$TMP_DOWNLOAD_DIR/$distributionUrlName") | Out-Null # If specified, validate the SHA-256 sum of the Maven distribution zip file $distributionSha256Sum = (Get-Content -Raw "$scriptDir/.mvn/wrapper/maven-wrapper.properties" | ConvertFrom-StringData).distributionSha256Sum if ($distributionSha256Sum) { if ($USE_MVND) { Write-Error "Checksum validation is not supported for maven-mvnd. `nPlease disable validation by removing 'distributionSha256Sum' from your maven-wrapper.properties." } Import-Module $PSHOME\Modules\Microsoft.PowerShell.Utility -Function Get-FileHash if ((Get-FileHash "$TMP_DOWNLOAD_DIR/$distributionUrlName" -Algorithm SHA256).Hash.ToLower() -ne $distributionSha256Sum) { Write-Error "Error: Failed to validate Maven distribution SHA-256, your Maven distribution might be compromised. If you updated your Maven version, you need to update the specified distributionSha256Sum property." } } # unzip and move Expand-Archive "$TMP_DOWNLOAD_DIR/$distributionUrlName" -DestinationPath "$TMP_DOWNLOAD_DIR" | Out-Null Rename-Item -Path "$TMP_DOWNLOAD_DIR/$distributionUrlNameMain" -NewName $MAVEN_HOME_NAME | Out-Null try { Move-Item -Path "$TMP_DOWNLOAD_DIR/$MAVEN_HOME_NAME" -Destination $MAVEN_HOME_PARENT | Out-Null } catch { if (! (Test-Path -Path "$MAVEN_HOME" -PathType Container)) { Write-Error "fail to move MAVEN_HOME" } } finally { try { Remove-Item $TMP_DOWNLOAD_DIR -Recurse -Force | Out-Null } catch { Write-Warning "Cannot remove $TMP_DOWNLOAD_DIR" } } Write-Output "MVN_CMD=$MAVEN_HOME/bin/$MVN_CMD" ================================================ FILE: pom.xml ================================================ 4.0.0 org.springframework.boot spring-boot-starter-parent 3.3.7 cn.edu.seig vibe-music-server 0.0.1-SNAPSHOT vibe-music-server vibe-music-server 17 org.springframework.boot spring-boot-starter-web org.springframework.boot spring-boot-configuration-processor true org.springframework.boot spring-boot-devtools true org.springframework.boot spring-boot-starter-test test com.baomidou mybatis-plus-spring-boot3-starter 3.5.9 com.baomidou mybatis-plus-jsqlparser 3.5.9 org.springframework.boot spring-boot-starter-data-redis com.mysql mysql-connector-j com.alibaba druid-spring-boot-starter 1.2.18 org.projectlombok lombok org.springframework.boot spring-boot-starter-validation com.auth0 java-jwt 4.4.0 org.eclipse.angus jakarta.mail io.minio minio 8.5.9 org.springframework.boot spring-boot-maven-plugin ================================================ FILE: sql/vibe_music.sql ================================================ /* Navicat Premium Data Transfer Source Server : MySQL80 Source Server Type : MySQL Source Server Version : 80030 Source Host : localhost:3306 Source Schema : vibe_music Target Server Type : MySQL Target Server Version : 80030 File Encoding : 65001 Date: 30/04/2025 16:06:31 */ SET NAMES utf8mb4; SET FOREIGN_KEY_CHECKS = 0; -- ---------------------------- -- Table structure for tb_admin -- ---------------------------- DROP TABLE IF EXISTS `tb_admin`; CREATE TABLE `tb_admin` ( `id` bigint(0) NOT NULL AUTO_INCREMENT COMMENT '管理员 id', `username` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '管理员用户名', `password` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '管理员密码', PRIMARY KEY (`id`) USING BTREE, UNIQUE INDEX `username`(`username`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 170 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of tb_admin -- ---------------------------- INSERT INTO `tb_admin` VALUES (58, 'admin_172', 'df10ef8509dc176d733d59549e7dbfaf'); INSERT INTO `tb_admin` VALUES (59, 'admin_888', 'df10ef8509dc176d733d59549e7dbfaf'); INSERT INTO `tb_admin` VALUES (60, 'admin_926', 'df10ef8509dc176d733d59549e7dbfaf'); INSERT INTO `tb_admin` VALUES (61, 'admin_966', 'df10ef8509dc176d733d59549e7dbfaf'); INSERT INTO `tb_admin` VALUES (62, 'admin_52', 'df10ef8509dc176d733d59549e7dbfaf'); INSERT INTO `tb_admin` VALUES (65, 'admin_1', 'df10ef8509dc176d733d59549e7dbfaf'); INSERT INTO `tb_admin` VALUES (66, 'admin_494', 'df10ef8509dc176d733d59549e7dbfaf'); INSERT INTO `tb_admin` VALUES (67, 'admin_465', 'df10ef8509dc176d733d59549e7dbfaf'); INSERT INTO `tb_admin` VALUES (68, 'admin_843', 'df10ef8509dc176d733d59549e7dbfaf'); INSERT INTO `tb_admin` VALUES (69, 'admin_820', 'df10ef8509dc176d733d59549e7dbfaf'); INSERT INTO `tb_admin` VALUES (72, 'admin_580', 'df10ef8509dc176d733d59549e7dbfaf'); INSERT INTO `tb_admin` VALUES (73, 'admin_423', 'df10ef8509dc176d733d59549e7dbfaf'); INSERT INTO `tb_admin` VALUES (74, 'admin_375', 'df10ef8509dc176d733d59549e7dbfaf'); INSERT INTO `tb_admin` VALUES (75, 'admin_607', 'df10ef8509dc176d733d59549e7dbfaf'); INSERT INTO `tb_admin` VALUES (76, 'admin_910', 'df10ef8509dc176d733d59549e7dbfaf'); INSERT INTO `tb_admin` VALUES (79, 'admin_110', 'df10ef8509dc176d733d59549e7dbfaf'); INSERT INTO `tb_admin` VALUES (80, 'admin_434', 'df10ef8509dc176d733d59549e7dbfaf'); INSERT INTO `tb_admin` VALUES (81, 'admin_841', 'df10ef8509dc176d733d59549e7dbfaf'); INSERT INTO `tb_admin` VALUES (82, 'admin_901', 'df10ef8509dc176d733d59549e7dbfaf'); INSERT INTO `tb_admin` VALUES (83, 'admin_983', 'df10ef8509dc176d733d59549e7dbfaf'); INSERT INTO `tb_admin` VALUES (86, 'admin_630', 'df10ef8509dc176d733d59549e7dbfaf'); INSERT INTO `tb_admin` VALUES (87, 'admin_865', 'df10ef8509dc176d733d59549e7dbfaf'); INSERT INTO `tb_admin` VALUES (88, 'admin_435', 'df10ef8509dc176d733d59549e7dbfaf'); INSERT INTO `tb_admin` VALUES (89, 'admin_581', 'df10ef8509dc176d733d59549e7dbfaf'); INSERT INTO `tb_admin` VALUES (90, 'admin_601', 'df10ef8509dc176d733d59549e7dbfaf'); INSERT INTO `tb_admin` VALUES (93, 'admin_8', 'df10ef8509dc176d733d59549e7dbfaf'); INSERT INTO `tb_admin` VALUES (94, 'admin_493', 'df10ef8509dc176d733d59549e7dbfaf'); INSERT INTO `tb_admin` VALUES (95, 'admin_445', 'df10ef8509dc176d733d59549e7dbfaf'); INSERT INTO `tb_admin` VALUES (96, 'admin_746', 'df10ef8509dc176d733d59549e7dbfaf'); INSERT INTO `tb_admin` VALUES (97, 'admin_395', 'df10ef8509dc176d733d59549e7dbfaf'); INSERT INTO `tb_admin` VALUES (103, 'admin_59', 'df10ef8509dc176d733d59549e7dbfaf'); INSERT INTO `tb_admin` VALUES (104, 'admin_990', 'df10ef8509dc176d733d59549e7dbfaf'); INSERT INTO `tb_admin` VALUES (105, 'admin_775', 'df10ef8509dc176d733d59549e7dbfaf'); INSERT INTO `tb_admin` VALUES (106, 'admin_905', 'df10ef8509dc176d733d59549e7dbfaf'); INSERT INTO `tb_admin` VALUES (107, 'admin_201', 'df10ef8509dc176d733d59549e7dbfaf'); INSERT INTO `tb_admin` VALUES (110, 'admin_851', 'df10ef8509dc176d733d59549e7dbfaf'); INSERT INTO `tb_admin` VALUES (111, 'admin_463', 'df10ef8509dc176d733d59549e7dbfaf'); INSERT INTO `tb_admin` VALUES (112, 'admin_765', 'df10ef8509dc176d733d59549e7dbfaf'); INSERT INTO `tb_admin` VALUES (113, 'admin_433', 'df10ef8509dc176d733d59549e7dbfaf'); INSERT INTO `tb_admin` VALUES (114, 'admin_874', 'df10ef8509dc176d733d59549e7dbfaf'); INSERT INTO `tb_admin` VALUES (117, 'admin_621', 'df10ef8509dc176d733d59549e7dbfaf'); INSERT INTO `tb_admin` VALUES (118, 'admin_32', 'df10ef8509dc176d733d59549e7dbfaf'); INSERT INTO `tb_admin` VALUES (119, 'admin_295', 'df10ef8509dc176d733d59549e7dbfaf'); INSERT INTO `tb_admin` VALUES (120, 'admin_379', 'df10ef8509dc176d733d59549e7dbfaf'); INSERT INTO `tb_admin` VALUES (121, 'admin_10', 'df10ef8509dc176d733d59549e7dbfaf'); INSERT INTO `tb_admin` VALUES (124, 'admin_572', 'df10ef8509dc176d733d59549e7dbfaf'); INSERT INTO `tb_admin` VALUES (125, 'admin_509', 'df10ef8509dc176d733d59549e7dbfaf'); INSERT INTO `tb_admin` VALUES (126, 'admin_828', 'df10ef8509dc176d733d59549e7dbfaf'); INSERT INTO `tb_admin` VALUES (127, 'admin_616', 'df10ef8509dc176d733d59549e7dbfaf'); INSERT INTO `tb_admin` VALUES (128, 'admin_593', 'df10ef8509dc176d733d59549e7dbfaf'); INSERT INTO `tb_admin` VALUES (131, 'admin_490', 'df10ef8509dc176d733d59549e7dbfaf'); INSERT INTO `tb_admin` VALUES (132, 'admin_107', 'df10ef8509dc176d733d59549e7dbfaf'); INSERT INTO `tb_admin` VALUES (133, 'admin_64', 'df10ef8509dc176d733d59549e7dbfaf'); INSERT INTO `tb_admin` VALUES (134, 'admin_999', 'df10ef8509dc176d733d59549e7dbfaf'); INSERT INTO `tb_admin` VALUES (135, 'admin_805', 'df10ef8509dc176d733d59549e7dbfaf'); INSERT INTO `tb_admin` VALUES (138, 'admin_61', 'df10ef8509dc176d733d59549e7dbfaf'); INSERT INTO `tb_admin` VALUES (139, 'admin_263', 'df10ef8509dc176d733d59549e7dbfaf'); INSERT INTO `tb_admin` VALUES (140, 'admin_132', 'df10ef8509dc176d733d59549e7dbfaf'); INSERT INTO `tb_admin` VALUES (141, 'admin_871', 'df10ef8509dc176d733d59549e7dbfaf'); INSERT INTO `tb_admin` VALUES (142, 'admin_959', 'df10ef8509dc176d733d59549e7dbfaf'); INSERT INTO `tb_admin` VALUES (145, 'admin_450', 'df10ef8509dc176d733d59549e7dbfaf'); INSERT INTO `tb_admin` VALUES (146, 'admin_684', 'df10ef8509dc176d733d59549e7dbfaf'); INSERT INTO `tb_admin` VALUES (147, 'admin_68', 'df10ef8509dc176d733d59549e7dbfaf'); INSERT INTO `tb_admin` VALUES (148, 'admin_287', 'df10ef8509dc176d733d59549e7dbfaf'); INSERT INTO `tb_admin` VALUES (149, 'admin_235', 'df10ef8509dc176d733d59549e7dbfaf'); INSERT INTO `tb_admin` VALUES (152, 'admin_886', 'df10ef8509dc176d733d59549e7dbfaf'); INSERT INTO `tb_admin` VALUES (153, 'admin_135', 'df10ef8509dc176d733d59549e7dbfaf'); INSERT INTO `tb_admin` VALUES (154, 'admin_18', 'df10ef8509dc176d733d59549e7dbfaf'); INSERT INTO `tb_admin` VALUES (155, 'admin_685', 'df10ef8509dc176d733d59549e7dbfaf'); INSERT INTO `tb_admin` VALUES (156, 'admin_371', 'df10ef8509dc176d733d59549e7dbfaf'); INSERT INTO `tb_admin` VALUES (159, 'admin_816', 'df10ef8509dc176d733d59549e7dbfaf'); INSERT INTO `tb_admin` VALUES (160, 'admin_137', 'df10ef8509dc176d733d59549e7dbfaf'); INSERT INTO `tb_admin` VALUES (161, 'admin_239', 'df10ef8509dc176d733d59549e7dbfaf'); INSERT INTO `tb_admin` VALUES (162, 'admin_782', 'df10ef8509dc176d733d59549e7dbfaf'); INSERT INTO `tb_admin` VALUES (163, 'admin_193', 'df10ef8509dc176d733d59549e7dbfaf'); INSERT INTO `tb_admin` VALUES (166, 'admin_613', 'df10ef8509dc176d733d59549e7dbfaf'); INSERT INTO `tb_admin` VALUES (167, 'admin_798', 'df10ef8509dc176d733d59549e7dbfaf'); INSERT INTO `tb_admin` VALUES (168, 'admin_152', 'df10ef8509dc176d733d59549e7dbfaf'); INSERT INTO `tb_admin` VALUES (169, 'admin_365', 'df10ef8509dc176d733d59549e7dbfaf'); INSERT INTO `tb_admin` VALUES (170, 'admin_372', 'df10ef8509dc176d733d59549e7dbfaf'); -- ---------------------------- -- Table structure for tb_artist -- ---------------------------- DROP TABLE IF EXISTS `tb_artist`; CREATE TABLE `tb_artist` ( `id` bigint(0) NOT NULL AUTO_INCREMENT COMMENT '歌手 id', `name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '歌手姓名', `gender` int(0) NULL DEFAULT NULL COMMENT '歌手性别:0-男,1-女,2-组合/乐队', `avatar` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '歌手头像', `birth` date NULL DEFAULT NULL COMMENT '歌手出生日期', `area` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '歌手国籍', `introduction` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '歌手简介', PRIMARY KEY (`id`) USING BTREE, INDEX `name`(`name`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 142 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of tb_artist -- ---------------------------- INSERT INTO `tb_artist` VALUES (2, '何真真', 1, 'http://localhost:9000/vibe-music-data/artists/98b29849-aa07-4d91-b23f-e10ff91807cc-blob', NULL, '美国', '何真真,美国Berklee音乐院“商业编曲”最高荣誉──昆西·琼斯奖(学士文凭第一名毕业)、美国Berklee音乐院“爵士作曲硕士”,更在美国西雅图歌剧院指挥演出个人创作。'); INSERT INTO `tb_artist` VALUES (3, '接个吻,开一枪', NULL, 'http://localhost:9000/vibe-music-data/artists/6ed73c09-6e2d-4630-a506-e33e8f3daf88-blob', NULL, '中国', '电子乐制作人/DJ/吉他手'); INSERT INTO `tb_artist` VALUES (4, 'LANY', 0, 'http://localhost:9000/vibe-music-data/artists/70dece9e-debc-4a3b-ba56-0742ed95ebe9-blob', NULL, '美国', 'LANY,这个蕴含着“Los Angeles,New York”深情的首字母缩写,是一支源自洛杉矶的璀璨美国流行摇滚乐队。2014年,在充满音乐氛围的纳什维尔,吉他手兼主唱Paul Jason Klein与鼓手Jake Clifford Goss携手,共同铸就了LANY的辉煌起点。'); INSERT INTO `tb_artist` VALUES (5, '孝敏 (효민)', 1, 'http://localhost:9000/vibe-music-data/artists/ee425603-fa15-454f-925e-b8fdf4a19add-blob', '1989-05-30', '韩国', '孝敏(효민),本名为朴宣映,韩国人气女歌手、演员。韩国女子组合T-ara第三任队长,在队内司职主唱、主领舞、Rapper ,是队中的时尚担当、性感担当、形象担当。'); INSERT INTO `tb_artist` VALUES (6, '智妍 (지연)', 1, 'http://localhost:9000/vibe-music-data/artists/10838e3a-5887-42bd-99e2-da8d66c76611-blob', '1993-06-07', '韩国', '芝妍(지연),本名为朴芝妍,韩国女歌手、演员、主持人、模特,女子演唱团体T-ara成员之一。'); INSERT INTO `tb_artist` VALUES (7, 'Bandari', 0, 'http://localhost:9000/vibe-music-data/artists/793eebd7-cef1-4d81-839c-dee662dcb050-blob', NULL, '瑞士', '班得瑞(Bandari),这个来自瑞士音乐公司Audio Video Communications AG的新纪元音乐项目,以其独特的音乐魅力在亚洲地区,特别是中国台湾和中国大陆,赢得了无数乐迷的喜爱。尽管常被媒体和唱片公司描绘成一个低调的音乐团体,但他们的作品却以其深邃的环境音乐和冥想音乐风格,成为了许多人寻求睡眠与减压的良伴。'); INSERT INTO `tb_artist` VALUES (8, '吕思清', 0, 'http://localhost:9000/vibe-music-data/artists/ea7d385e-645f-4f48-af0b-fc48ce0d5007-blob', '1969-11-26', '中国', '吕思清,1969年11月26日出生于中国山东省青岛市,小提琴演奏者,毕业于美国茱莉亚音乐学院。是第一位夺得意大利帕格尼尼国际小提琴大赛金奖的东方人。作为中国最具影响力的杰出小提琴家,吕思清长期受邀与全球知名乐团合作巡演、参加世界各地艺术节及音乐节活动,同时带领他于2011年创办的”美杰三重奏”举行室内乐音乐会,足迹遍布世界四十多个国家和地区。'); INSERT INTO `tb_artist` VALUES (9, 'Hedwig Bilgram', NULL, 'http://localhost:9000/vibe-music-data/artists/6cce9040-63d5-42a2-ba54-aaad77c2f7a3-blob', NULL, NULL, NULL); INSERT INTO `tb_artist` VALUES (10, 'OneRepublic', 2, 'http://localhost:9000/vibe-music-data/artists/83949fbb-23ec-49db-9c46-50cbd75ea5fa-blob', NULL, '美国', 'OneRepublic(共和时代),一支来自美国科罗拉多州的流行摇滚乐队,以其独特的pop-rock/indie/alternative曲风征服了无数乐迷。自2004年成立以来,乐队成员们在灵魂人物Ryan Tedder的引领下,共同追求音乐的极致。Ryan自幼受到音乐家父亲的熏陶,5岁便开始学习钢琴,他的音乐理念是让乐队的作品像U2一样,给人们带来宗教般的感悟。'); INSERT INTO `tb_artist` VALUES (11, 'Piggy Chu', NULL, 'http://localhost:9000/vibe-music-data/artists/0cceba90-23d6-43e7-992e-8d82b2511039-blob', NULL, NULL, 'Piggy Chu简介\r\n\r\n只是高中开始写歌,高考结束之后开始独立制作音乐啦~~~\r\n\r\n除了Pop songs也为古典重奏、合唱团和管弦乐团写作~~~\r\n\r\n没办法像乐队里的吉他手一样Cool,那就只能用旋律说说自己想说的话咯~'); INSERT INTO `tb_artist` VALUES (12, '白光', 1, 'http://localhost:9000/vibe-music-data/artists/ccd799a2-98e4-445f-be89-fff275f42def-blob', '1921-06-27', '中国', '白光,原名史永芬,河北涿县人,1921年6月27日生于北平,歌星、影星。'); INSERT INTO `tb_artist` VALUES (13, 'Daoko', 1, 'http://localhost:9000/vibe-music-data/artists/2819f722-62c2-4637-988c-f7712b41c112-blob', '1997-03-04', '日本', 'DAOKO,1997年出生于日本东京都,是一位备受瞩目的日本女性MC和歌手。她的音乐之路始于2012年,当时她发布了专辑《HYPER GIRL- 向こう侧の女の子 -》,展现了她独特的音乐才华。2013年,DAOKO与m-flo合作推出了歌曲《IRONY》,将她的音乐风格推向了一个新的高度。'); INSERT INTO `tb_artist` VALUES (14, 'Wolfgang Amadeus Mozart', 0, 'http://localhost:9000/vibe-music-data/artists/4dc2b08a-cebe-4111-982c-cb3ddc975610-blob', '1756-01-27', '奥地利', '沃尔夫冈·阿马德乌斯·莫扎特(1756年1月27日-1791年12月5日),这位诞生于神圣罗马帝国时期萨尔兹堡的音乐奇才,被誉为欧洲古典主义音乐的杰出代表之一。'); INSERT INTO `tb_artist` VALUES (15, 'Charli XCX', 1, 'http://localhost:9000/vibe-music-data/artists/99509118-6885-411d-835f-749d4d8d8209-blob', '1992-08-02', '英国', 'Charli XCX,来自英国的才华横溢的创作型女歌手,自2014年起便以其独特的音乐风格在乐坛崭露头角。2月17日,她携手合作的单曲《Fancy》一经发布便引发热议,成功获得第57届格莱美奖年度制作和最佳流行组合的提名。紧接着,她在同年12月15日发行了第二张录音室专辑《Sucker》,为乐迷带来了更多惊喜。'); INSERT INTO `tb_artist` VALUES (16, 'Vexento', 0, 'http://localhost:9000/vibe-music-data/artists/bf682fae-e656-44ec-9d4e-f75bd3411a90-blob', NULL, '挪威', 'Vexento,一位来自挪威的崭露头角电子音乐才子,本名Alexander Hansen,1997年诞生,以他独特的音乐魅力征服了无数听众的心。他的曲风多变,既正面又俏皮,总能在不经意间带给人们意想不到的惊喜。'); INSERT INTO `tb_artist` VALUES (17, 'IU (아이유)', 1, 'http://localhost:9000/vibe-music-data/artists/cd398aad-f0fa-4e31-a256-35d3b78b7391-blob', NULL, '韩国', 'IU(아이유),本名李知恩,韩国女歌手、演员、主持人。自2007年加入Loen Entertainment 成为练习生以来,她的音乐之路便一发不可收拾。15岁那年,IU发行首张迷你专辑《Lost and Found》,正式踏入歌坛。然而,真正让她崭露头角的是2010年的神曲《好日子》,那惊艳的三段高音不仅展示了她卓越的唱功,更让她在各大榜单上屡获殊荣,荣获MMA年度歌曲奖。'); INSERT INTO `tb_artist` VALUES (18, 'G.E.M.邓紫棋', 1, 'http://localhost:9000/vibe-music-data/artists/71bff6e1-e4cf-41ca-bfce-29a1c8439651-blob', '1991-08-16', '中国', '邓紫棋(Gloria Tang Tsz-Kei),又名G.E.M.,是中国香港的创作型女歌手、词曲创作人。2008年,年仅16岁的邓紫棋出道,并于同年10月发行首张EP《G.E.M.》,凭借这张作品迅速在香港乐坛崭露头角,获得各大颁奖礼新人金奖。'); INSERT INTO `tb_artist` VALUES (19, 'RADWIMPS (ラッドウィンプス)', 0, 'http://localhost:9000/vibe-music-data/artists/2f832e3e-1169-4bc5-9519-b5f7e0b743a3-blob', NULL, '日本', '乐队以其不拘泥于既存风格的音乐性,以及从恋爱观到生死观充满哲理又不乏感性的歌词,得到了以青春期人群为中心的广大受众群体的支持。'); INSERT INTO `tb_artist` VALUES (20, '凤箫和鸣', 0, 'http://localhost:9000/vibe-music-data/artists/7a9c9108-32d2-41d3-9cc9-47c29fdebf3d-blob', NULL, '中国', NULL); INSERT INTO `tb_artist` VALUES (21, 'Mr.Cali', 0, 'http://localhost:9000/vibe-music-data/artists/f7fa0587-e7c9-4325-a451-8b513cdbecf2-blob', '1995-11-20', '中国', 'Mr.Cali(郭晓楠),男,1995年11月20日出生于中国深圳。是深圳一名业余说唱、R&B歌手。'); INSERT INTO `tb_artist` VALUES (22, 'Jacques Offenbach', 0, 'http://localhost:9000/vibe-music-data/artists/18e8172e-e197-43d4-8fbc-90c2495c5f1a-blob', NULL, '法国', '雅克·奥芬巴赫(法语:Jacques Offenbach,1819年6月20日-1880年10月5日),出生于德国的法国作曲家。代表作为歌剧《霍夫曼的故事》。'); INSERT INTO `tb_artist` VALUES (23, '徐梦圆', 0, 'http://localhost:9000/vibe-music-data/artists/bf87e7aa-7ed4-4fa9-97bb-c601a03449b4-blob', '1992-10-22', '中国', '徐梦圆,音乐制作人,擅长中国风电子音乐的制作,2018年,作为首位在CCTV1官方节目中表演的90后DJ,被央视誉为“中国新时代电音领军人物”;同年,获PYRO百大DJ榜单冠军。'); INSERT INTO `tb_artist` VALUES (24, '尤大淳', 0, 'http://localhost:9000/vibe-music-data/artists/cfc5febc-e3fe-4a20-982b-13157666cd46-blob', NULL, '中国', '尤大淳,上海交响乐团的钢琴演奏家,任教于上海音乐学院。1994年发表专辑《世界钢琴名曲精选 少女的祈祷》(《A Selection of Worlds Masterpices of the Piano - The Maiden’s Prayer》)。'); INSERT INTO `tb_artist` VALUES (25, 'Various Artists', NULL, 'http://localhost:9000/vibe-music-data/artists/ac464c59-6e0f-4edd-a83f-293ac4cb265a-blob', NULL, NULL, 'Various Artists,一个简洁而富有深意的称谓,常以VA或V.A.的缩写形式出现在我们的视野中,它犹如夜空中璀璨的群星,闪耀着多元与包容的光芒,特指那些汇聚了欧美乐坛众多杰出艺术家的阵容。每当你在音乐专辑的封面上瞥见这几个字母时,心中便会涌起一股期待,因为你知道,这不仅仅是一位歌手的独白,而是一场由众多音乐才子共同演绎的音乐盛宴,就如同中文专辑里那熟悉的“群星”二字,预示着接下来将是一场耳目的盛宴。'); INSERT INTO `tb_artist` VALUES (26, 'Oregon Symphony', 2, 'http://localhost:9000/vibe-music-data/artists/3f534cf9-aff1-4a97-a3fa-f06944928bfc-blob', '1896-01-01', '美国', '俄勒冈交响乐团是美国交响乐团,总部位于美国俄勒冈州波特兰市。该乐团成立于 1896 年,原名“波特兰交响乐团”,是美国第六古老的乐团,也是美国西部最古老的乐团。该乐团的主场是波特兰市中心文化区 的阿琳·施尼策音乐厅。'); INSERT INTO `tb_artist` VALUES (27, '李荣浩', 0, 'http://localhost:9000/vibe-music-data/artists/f43cd77b-3343-4143-95cb-714606f25198-blob', '1985-07-11', '中国', '李荣浩,中国流行乐男歌手、音乐制作人、演员、吉他手。'); INSERT INTO `tb_artist` VALUES (28, 'AniFace', NULL, 'http://localhost:9000/vibe-music-data/artists/a14ce140-e6ee-47c3-8910-a59629741fcd-blob', NULL, NULL, '独立音乐人,毕业于美国西北大学计算机系,现居西雅图,故乡南京,微博@A8级的AniFace'); INSERT INTO `tb_artist` VALUES (29, 'Khalid', 0, 'http://localhost:9000/vibe-music-data/artists/598ea48e-d359-4819-9519-744826f92b92-blob', '1998-02-11', '美国', '哈立德(Khalid),原名哈立德·唐纳尔·罗宾逊(Khalid Donnel Robinson),是一位才华横溢的美国创作型歌手,隶属于Right Hand和RCA唱片公司。2016年7月,他的首支单曲《Location》一经发布便迅速崭露头角,攀升至美国公告牌百强单曲榜第16位,并荣获美国唱片业协会的四白金单曲认证。'); INSERT INTO `tb_artist` VALUES (30, '张杰', 0, 'http://localhost:9000/vibe-music-data/artists/715b1fc6-e310-4fef-91e0-5d4f029a4b6d-blob', '1982-12-20', '中国', '杰(Jason Zhang),1982年12月20日出生于四川省成都市,是中国流行男歌手。2004年,他通过歌唱类选秀节目《我型我秀》获得全国总冠军正式出道。2007年,参加《快乐男生》并获得总决赛第四名,随后发行的EP《最美的太阳》拿下亚马逊年度唱片销量冠军。'); INSERT INTO `tb_artist` VALUES (31, '郎朗', 0, 'http://localhost:9000/vibe-music-data/artists/e2f1cc12-28b3-4e91-aeae-b26b51ed7e78-blob', '1982-06-14', '中国', '郎朗,1982年6月14日出生于辽宁省沈阳市沈河区,国际著名钢琴家。他是第一位受聘于世界顶级的柏林爱乐乐团和美国五大交响乐团的中国钢琴家,获得古典音乐类多项权威奖项,包括德国古典回声大奖,全英古典音乐奖,伯恩斯坦艺术成就大奖,国际门德尔松大奖等。'); INSERT INTO `tb_artist` VALUES (32, 'Gewandhausorchester Leipzig', 2, 'http://localhost:9000/vibe-music-data/artists/855c8bb6-1e8e-4732-8bd2-e5bcb7a92dad-blob', NULL, '德国', '莱比锡布商大厦管弦乐团(德语:Gewandhausorchester Leipzig,又译莱比锡布业大厅管弦乐团或音译为莱比锡格万豪斯管弦乐团)是以德国莱比锡为基地的世界知名管弦乐团,现有175名全职乐手,是当今全世界人数最多的专业管弦乐团之一。'); INSERT INTO `tb_artist` VALUES (33, 'Dan Gibson\'s Solitudes', 0, 'http://localhost:9000/vibe-music-data/artists/0c428376-ecd0-434d-9ab3-57135bacd422-blob', '1922-01-19', '加拿大', 'Dan Gibson,这位1922年1月19日在加拿大蒙特利尔诞生的自然录音大师,他的生命轨迹如同一首悠扬的旋律,与大自然紧密相连。自幼在尼加拉瀑布附近的农庄成长,那片被自然之美环绕的土地,仿佛为他播下了一颗热爱自然的种子。'); INSERT INTO `tb_artist` VALUES (34, '张学友', 0, 'http://localhost:9000/vibe-music-data/artists/fb015187-1d97-4c6c-9398-27760d461d48-blob', '1961-07-10', '中国', '张学友(Jacky Cheung),中国香港流行乐男歌手、影视演员、作曲人,毕业于香港崇文英文书院。1984年因获得首届香港十八区业余歌唱大赛冠军而出道。1985年发行个人首张专辑《Smile》。'); INSERT INTO `tb_artist` VALUES (35, '张宇', 0, 'http://localhost:9000/vibe-music-data/artists/9cc3d593-fc69-4e64-9813-ae063bcd3af1-blob', '1967-04-30', '中国', '张宇,华语男歌手、音乐创作人、主持人。代表作为《雨一直下》、《月亮惹的祸》、《小小的太阳》、《一个人的天荒地老》等。'); INSERT INTO `tb_artist` VALUES (36, 'Ludwig van Beethoven', 0, 'http://localhost:9000/vibe-music-data/artists/b7d8e72f-5506-4761-8adb-f6c7b4fc0a3b-blob', '1770-12-16', '德国', '路德维希•凡•贝多芬(Ludwig van Beethoven,1770—1827),身兼作曲家、钢琴家、指挥家多重身份,稳稳地站在维也纳古典乐派的巅峰,成为了音乐史上一座不朽的丰碑。'); INSERT INTO `tb_artist` VALUES (37, 'Wiener Philharmoniker', 2, 'http://localhost:9000/vibe-music-data/artists/177c656f-1781-4c05-a7c4-941ae9cb4ef1-blob', '1842-01-01', '奥地利', '维也纳爱乐乐团,自1842年起便以其卓越的音乐才能和独特的维也纳音色征服了世界。这个由维也纳国家歌剧院精英组成的私人乐团,在音乐会舞台上华丽转身,展现出无与伦比的魅力。作为全球最顶尖的乐团之一,维也纳爱乐乐团不仅在国际乐坛享有盛誉,更是以其高贵的艺术气质和自主管理的经营模式独树一帜。'); INSERT INTO `tb_artist` VALUES (38, 'Beyond', 2, 'http://localhost:9000/vibe-music-data/artists/132d45db-3425-484c-97c4-ac6828d98394-blob', NULL, '中国', 'Beyond,中国香港摇滚乐队,由黄家驹、黄贯中、黄家强、叶世荣组成。'); INSERT INTO `tb_artist` VALUES (39, '林俊杰', 0, 'http://localhost:9000/vibe-music-data/artists/556a8890-3b18-455c-b222-8b615cf347c1-blob', '1981-03-27', '新加坡', '林俊杰(JJ Lin),1981年3月27日出生于新加坡,祖籍中国福建省厦门市同安区,是华语流行乐男歌手、音乐人及潮牌主理人。2003年,他发行首张创作专辑《乐行者》,凭借该专辑获得第15届台湾金曲奖最佳新人奖。2004年,凭借专辑《第二天堂》中的主打歌《江南》获得广泛关注,正式开启音乐事业新篇章。'); INSERT INTO `tb_artist` VALUES (40, '王菲', 1, 'http://localhost:9000/vibe-music-data/artists/94acfdf9-ab0c-4ea6-b788-dc1301207fca-blob', '1969-08-08', '中国', '王菲(Faye Wong),1969年8月8日出生于北京,中国流行乐女歌手、影视演员,中国国家一级演员。'); INSERT INTO `tb_artist` VALUES (41, 'Lauv', 0, 'http://localhost:9000/vibe-music-data/artists/3f433f89-767e-4937-b958-da46d190b711-blob', '1994-08-08', '美国', '莱奥夫(Lauv),原名阿里·史塔布兰斯·莱夫,1994年8月8日出生于美国加州旧金山,是一位才华横溢的美国创作歌手。他的艺名Lauv源自拉脱维亚语的“雄狮”,与他的希伯来语名字Ari(意为狮子)相呼应。2015年,莱奥夫凭借在Sound Cloud上发布的单曲《The Other》一举成名,随后签约唱片公司并发行个人首张EP《Lost in the Light》。'); INSERT INTO `tb_artist` VALUES (43, '许嵩', 0, 'http://localhost:9000/vibe-music-data/artists/c9a32b99-7ffa-4ce3-b5cf-3fd5bc665fe5-blob', '1986-05-14', '中国', '许嵩(Vae),1986年5月14日出生于安徽省合肥市,是中国内地创作型男歌手,毕业于安徽医科大学。2006年,许嵩开始发表音乐作品,正式出道。此后,他陆续发行了多张词曲全创作专辑,展现了其深厚的音乐才华。'); INSERT INTO `tb_artist` VALUES (44, '花儿乐队', 2, 'http://localhost:9000/vibe-music-data/artists/a9529817-4cfb-46fd-bd65-fb82cd07f734-blob', NULL, '中国', '花儿乐队是1998年2月成立的当时中国第一支未成年摇滚乐队,主唱大张伟、鼓手王文博、贝斯手郭阳,后又加入吉他手石醒宇。\r\n\r\n花儿乐队是1998年2月成立的当时中国第一支未成年摇滚乐队,主唱大张伟、鼓手王文博、贝斯手郭阳,后又加入吉他手石醒宇。\r\n\r\n花儿乐队是1998年2月成立的当时中国第一支未成年摇滚乐队,主唱大张伟、鼓手王文博、贝斯手郭阳,后又加入吉他手石醒宇。'); INSERT INTO `tb_artist` VALUES (45, '涛李TAOLEE', NULL, 'http://localhost:9000/vibe-music-data/artists/6ec32f9a-d99d-4464-88e7-5d4ede4e5e10-blob', NULL, '中国', '···【非著名吉艺人】···'); INSERT INTO `tb_artist` VALUES (46, '叶健', 0, 'http://localhost:9000/vibe-music-data/artists/cb3aa00e-83f6-43ac-9ddc-c806381324f7-blob', NULL, '中国', '编曲,音乐制作人。合作过的艺人:鬼卞,苏星婕,阎琪儿,李熙凝,封茗囧菌等,'); INSERT INTO `tb_artist` VALUES (47, '土星皇家交响乐团', 2, 'http://localhost:9000/vibe-music-data/artists/4519aeb7-4bf8-4a3c-a3bf-cae2d2fd9c0c-blob', '2016-10-06', NULL, '该乐团成立于2016年10月6号。每一个人都来自五湖四海,我们不但演奏一些经典的作品,同时也会自己创作新的音乐。'); INSERT INTO `tb_artist` VALUES (48, 'Jonas Brothers', 2, 'http://localhost:9000/vibe-music-data/artists/e5c80b82-b84b-4baf-af43-391249c8acaa-blob', NULL, '美国', '乔纳斯兄弟(Jonas Brothers),这支享誉美国的流行摇滚乐队,由三位才华横溢的兄弟——凯文·乔纳斯、乔·乔纳斯和尼克·乔纳斯携手组建。他们的音乐旅程,如同一部充满转折与辉煌的乐章,引人入胜。'); INSERT INTO `tb_artist` VALUES (49, 'Martin Garrix', 0, 'http://localhost:9000/vibe-music-data/artists/3e282fbf-bc01-4e96-bec7-85efc15dc998-blob', '1996-05-14', '荷兰', 'Martin Garrix(马汀·盖瑞克斯),原名Martijn Gerard Garritsen(马亭·杰拉德·嘉伟森),荷兰籍DJ兼音乐制作人。他以一曲《Animals》红遍全球,横扫十几个国家的音乐排行榜前十名,比利时和英国更是荣登冠军宝座,爱尔兰也取得了第三名的佳绩。'); INSERT INTO `tb_artist` VALUES (50, 'The Chainsmokers', 2, 'http://localhost:9000/vibe-music-data/artists/27c9f3f1-87ba-46c8-aaae-849c0ec86408-blob', NULL, '美国', 'The Chainsmokers(烟鬼组合),这个由美国DJ Andrew Taggart和Alex Pall组成的双人组合,自2012年起便在纽约市崭露头角。最初由博尔和前成员Rhett Bixler共同创建,2014年凭借一首《#Selfie》迅速走红。紧接着,2015年的《Roses》成为他们首支冲进Billboard Top10的热门单曲。'); INSERT INTO `tb_artist` VALUES (51, '王华', 0, 'http://localhost:9000/vibe-music-data/artists/163dfacc-7990-4536-9fa4-897bc9445fbd-blob', NULL, '中国', '华语歌手,演唱了《祝福留给你》、《月亮亮光光》、《叶儿黄》等广受喜爱的歌曲。'); INSERT INTO `tb_artist` VALUES (52, 'Gioachino Rossini', 0, 'http://localhost:9000/vibe-music-data/artists/1450b990-e987-42c2-a644-f6d655d9041b-blob', '1792-02-29', '意大利', '焦阿基诺·安东尼奥·罗西尼(意大利语:Gioachino Antonio Rossini,1792年2月29日-1868年11月13日),又译卓阿基诺·罗西尼,意大利作曲家,他生前创作了39部歌剧以及宗教音乐和室内乐。以喜歌剧而名垂青史,其喜歌剧既有反映贫民生活的内容,又有对贵族浮华百态的描绘,内容生动、明快,人物的刻划个性鲜明。'); INSERT INTO `tb_artist` VALUES (53, '谢明祥', 0, 'http://localhost:9000/vibe-music-data/artists/9c746b73-f9d0-49f8-97d2-e93ef74122c4-blob', NULL, NULL, '谢明祥,知名台湾编曲家、音乐制作人,代表作《初夏雨后》(纪录片《舌尖上的中国》配乐)。'); INSERT INTO `tb_artist` VALUES (54, '王華宇', 0, 'http://localhost:9000/vibe-music-data/artists/e189e21a-9607-44af-89b3-c9a00bcb3584-blob', NULL, NULL, '2013年毕业于江苏省戏剧学校竹笛表演专业 2017年毕业于上海音乐学院笛子专业'); INSERT INTO `tb_artist` VALUES (55, 'Christopher', 0, 'http://localhost:9000/vibe-music-data/artists/c7d6521a-bd35-43d3-9243-59c5f3dfe6e9-blob', '1992-01-31', '丹麦', '克里斯托弗·尼森(Christopher Nissen),丹麦男歌手兼作曲家。'); INSERT INTO `tb_artist` VALUES (56, 'DAISHI DANCE (ダイシ・ダンス)', 0, 'http://localhost:9000/vibe-music-data/artists/35b0e375-0ad5-4af7-8104-7eb2cd526567-blob', NULL, '日本', 'DAISHI DANCE(ダイシ・ダンス,1976年 - ),日本北海道出生的世界级DJ,在日本乃至全球都享有盛誉。他的音乐作品如涓涓流水般细腻,流畅的钢琴伴奏令人陶醉。曾为滨崎步、中岛美嘉打造过mix版本的《HEAVEN》和《SAKURA~花霞》,展现了他在音乐上的非凡才华。'); INSERT INTO `tb_artist` VALUES (57, 'Motohiko Hirami', NULL, 'http://localhost:9000/vibe-music-data/artists/c8d24e4d-296d-401b-a5c1-c586b61506af-blob', NULL, '日本', 'Motohiko Hirami是来自日本的独立音乐制作人。'); INSERT INTO `tb_artist` VALUES (58, 'Troye Sivan', 0, 'http://localhost:9000/vibe-music-data/artists/07ce832c-9400-49ed-9b88-5534af3ccd29-blob', '1995-06-05', '澳大利亚', '特洛耶·希文(Troye Sivan),1995年6月5日出生于南非约翰内斯堡,后成为澳大利亚流行乐坛的耀眼新星。早在2009年,他就在电影《金刚狼》中展现了出色的演技,饰演少年时期的詹姆斯·豪利特。之后,他凭借电影《马铃薯》在2011年提名南非电影电视奖“电影长片类最佳男主角奖”。'); INSERT INTO `tb_artist` VALUES (59, '中国爱乐乐团', 2, 'http://localhost:9000/vibe-music-data/artists/aa0b468b-7b33-449e-af2e-8c6d7a93d4be-blob', '2000-05-25', '中国', '中国爱乐乐团,是在中国广播交响乐团基础上组建的国家级交响乐团,成立于2000年5月25日,直属于中国国家广播电影电视总局。由中央电视台管理。'); INSERT INTO `tb_artist` VALUES (60, 'Pyotr Ilyich Tchaikovsky', 0, 'http://localhost:9000/vibe-music-data/artists/06b06034-4453-4e66-b6b7-7ba411714932-blob', '1840-05-07', '俄罗斯', '在俄罗斯那片广袤且充满艺术底蕴的土地上,诞生了一位音乐巨匠——彼得·伊里奇·柴可夫斯基(俄语:Пётр Ильич Чайковский,1840年5月7日-1893年11月6日)。闪耀于浪漫乐派的浩瀚夜空,虽作品带有民族乐派的独特印记,却始终以浪漫风格为根基,熠熠生辉,其音乐魅力如涟漪般,直接或间接地润泽了无数后来者的音乐之路。'); INSERT INTO `tb_artist` VALUES (61, '琥珀琴师Louis', 0, 'http://localhost:9000/vibe-music-data/artists/849171bb-cbf7-4dbe-a50c-50091689bd9f-blob', NULL, NULL, '一个来自2.5次元的钢琴师,曲谱请看wb:琥珀琴师Louis。雅马哈音乐形象大使,签约原创音乐人,沐云华乐团创始成员。擅长流行、NewAge与古典音乐的跨界演奏风格,不定期更新原创&钢琴改编作品。'); INSERT INTO `tb_artist` VALUES (62, 'Halsey', 1, 'http://localhost:9000/vibe-music-data/artists/39557f38-5016-4300-a63a-684ae95e3496-blob', '1994-09-29', '美国', '海尔希(Halsey),1994年9月29日出生于美国新泽西州华盛顿市,是一位才华横溢的美国创作型歌手。2014年7月,她与Astralwerks唱片签约后,迅速崭露头角,发布首支个人单曲《Ghost》。紧接着,她发行了首张迷你专辑《Room 93》,为乐坛注入了一股新势力。'); INSERT INTO `tb_artist` VALUES (63, 'Vladimir Ashkenazy', 0, 'http://localhost:9000/vibe-music-data/artists/b17db203-b7ac-421d-988e-e6e74d41f68f-blob', '1937-07-06', '冰岛', '弗拉基米尔·阿什肯纳齐,这位英籍前苏联的钢琴演奏巨匠,自幼便与音乐结下了不解之缘。在莫斯科那座充满艺术氛围的城市中,他踏入了中心音乐学校的大门,从此,一颗音乐的种子在他心中悄然萌芽。在莫斯科音乐学院的深造,更是为他日后的辉煌奠定了坚实的基础。'); INSERT INTO `tb_artist` VALUES (64, '中国交响乐团', 2, 'http://localhost:9000/vibe-music-data/artists/4d57ff54-ede9-495d-927e-378601f8292b-blob', '1956-07-03', '中国', '中国交响乐团是中华人民共和国文化和旅游部直属的国家艺术院团,在原中央乐团(1956年成立)基础上组建而成,下设交响乐队、合唱团和北京音乐厅。'); INSERT INTO `tb_artist` VALUES (65, 'XYLØ', 1, 'http://localhost:9000/vibe-music-data/artists/d4a2e1d4-4751-4868-a1ea-ae589afccd9a-blob', '1994-08-08', '美国', 'XYLØ,本名佩奇·达迪(Paige Duddy),出生于洛杉矶这座星光熠熠的城市中。自幼沐浴在音乐氛围中的她,注定要走上一条不凡的音乐之路。2015年,XYLØ以一张充满沉思与深邃氛围的首张EP《America》惊艳亮相,仿佛一颗音乐新星在夜空中璀璨绽放。其中的热门单曲《Afterlife》更是如磁石般吸引了无数听众,其在网络上的广泛传播,让XYLØ的名字开始在音乐界崭露头角。'); INSERT INTO `tb_artist` VALUES (66, 'Jake Miller', 0, 'http://localhost:9000/vibe-music-data/artists/1dee8d21-ca90-48a9-ab07-30390527dfeb-blob', '1992-11-28', '美国', '杰克·米勒,1992年11月28日出生于华盛顿特区,是一位才华横溢的美国歌手、唱作人和音乐制作人。'); INSERT INTO `tb_artist` VALUES (67, 'Dua Lipa', 1, 'http://localhost:9000/vibe-music-data/artists/364bebb9-229d-49c2-8b2d-718c7acfcc13-blob', '1995-08-22', '英国', 'Dua Lipa,阿尔巴尼亚裔英国歌手、词曲作者,自2015年通过华纳唱片发行首支个人单曲《New Love》正式踏入乐坛以来,便凭借独特的嗓音和才华迅速崭露头角。同年12月,她更是入围BBC年度新声,展现了她的音乐潜力。'); INSERT INTO `tb_artist` VALUES (68, 'Edda Moser', 1, 'http://localhost:9000/vibe-music-data/artists/f05e5078-bf60-4598-84d0-a9114f68fd83-blob', NULL, NULL, NULL); INSERT INTO `tb_artist` VALUES (69, 'Imagine Dragons', 2, 'http://localhost:9000/vibe-music-data/artists/73d719f5-ea4e-4125-821b-5d0c0b276111-blob', NULL, '美国', 'Imagine Dragons,这支被誉为“梦龙”的美国独立摇滚乐队,自2008年于犹他州普洛佛成立以来,便以其独特的音乐风格吸引了无数乐迷。他们的音乐之旅始于拉斯维加斯,并在2012年凭借专辑《Night Visions》一举成名。'); INSERT INTO `tb_artist` VALUES (70, '陈奕迅', 0, 'http://localhost:9000/vibe-music-data/artists/39ff395f-e4b1-4de5-beba-627278a00121-blob', '1974-07-27', '中国', '陈奕迅(Eason Chan),1974年7月27日出生于中国香港,是中国香港男歌手、演员,毕业于英国金斯顿大学。1995年,凭借第14届新秀歌唱大赛冠军正式出道。1996年发行首张个人专辑《陈奕迅》,1997年主演个人首部电影《旺角大家姐》。1998年,凭借歌曲《天下无双》在乐坛崭露头角,2000年,歌曲《K歌之王》奠定了他在歌坛的地位。'); INSERT INTO `tb_artist` VALUES (71, 'Neo Retros', 2, 'http://localhost:9000/vibe-music-data/artists/2c76f05a-3f2c-48e7-9da2-cf16c5e4521f-blob', NULL, '波兰', 'Neo Retros是一支来自波兰华沙的小众乐队,活泼又调皮,主唱是典型的清新少年嗓。'); INSERT INTO `tb_artist` VALUES (72, 'Machine Gun Kelly', 0, 'http://localhost:9000/vibe-music-data/artists/4aea37f2-e274-4bc4-b1b2-63778d169eba-blob', '1990-04-22', '美国', 'Machine Gun Kelly,一位备受瞩目的美国说唱歌手,他的音乐之旅如同一幅绚丽多彩的画卷,充满了多元文化的交融与独特的个人经历。GK的父母是传教士,并且曾经在埃及,德国,芝加哥,洛杉矶,丹佛和俄亥俄州定居过。MGK出生后的4年都在埃及度过,所以最初学习的语言是阿拉伯语。MGK从6年级开始听说唱歌曲,14岁时搬到了现在的家乡克里夫兰。'); INSERT INTO `tb_artist` VALUES (73, '薛之谦', 0, 'http://localhost:9000/vibe-music-data/artists/bbbce46a-a80c-41c3-8f93-a575b78a5c02-blob', '1983-07-17', '中国', '薛之谦,1983年7月17日出生于上海市,中国内地流行乐男歌手、音乐制作人、影视演员,毕业于格里昂酒店管理学院。'); INSERT INTO `tb_artist` VALUES (74, 'Michael Cramtu', NULL, 'http://localhost:9000/vibe-music-data/artists/6b75860a-ae46-4122-a11c-b0a7e2aa984e-blob', NULL, NULL, 'Michael Cramtu,排箫演奏家。班得瑞的成员之一。代表作《Big Big World》。'); INSERT INTO `tb_artist` VALUES (75, 'T-ara', 2, 'http://localhost:9000/vibe-music-data/artists/39d3c7c9-d22c-4e94-8b43-58f1b1106c9e-blob', NULL, '韩国', 'T-ara(티아라),这支充满魅力的韩国女子音乐组合,自MBK娱乐旗下脱颖而出,以“Tiara”为名,寓意着她们歌谣界的女王之梦。她们的首次亮相并非在音乐节目,而是在MBC综艺节目《Radio Star》中,这一独特的出道方式让她们迅速吸引了外界的目光。'); INSERT INTO `tb_artist` VALUES (76, 'The Piano Guys', 2, 'http://localhost:9000/vibe-music-data/artists/6c775b1c-991e-4660-ad94-c39d6bc3f1ac-blob', NULL, '美国', 'The Piano Guys,这个来自美国的音乐团体,由才华横溢的钢琴家Jon Schmidt、深情的大提琴家Steven Sharp Nelson、技艺高超的摄像师Paul Anderson以及音乐鬼才Al van der Beek共同组成。'); INSERT INTO `tb_artist` VALUES (77, 'Claude Debussy', 0, 'http://localhost:9000/vibe-music-data/artists/d25f9a6e-dfba-4e5b-ae8a-52b7c940225d-blob', NULL, '法国', '阿希尔-克劳德·德彪西(法语:Achille-Claude Debussy,1862年8月22日—1918年3月25日),一位屹立在法国音乐史上的璀璨作曲家。他虽有时被冠以“第一位印象派作曲家”的头衔,却对此标签持以坚决的反对态度。然而,无可否认的是,他是19世纪末至20世纪初最具影响力的作曲家之一,其音乐才华如同璀璨星辰,照亮了音乐的天空。'); INSERT INTO `tb_artist` VALUES (78, '李香兰', 1, 'http://localhost:9000/vibe-music-data/artists/8fc0333d-48fb-441a-8302-09ffaf44cc29-blob', '1920-02-12', '日本', '李香兰,1920年2月12日出生于辽宁省灯塔市,祖籍日本佐贺县,本名山口淑子,歌手。'); INSERT INTO `tb_artist` VALUES (79, 'The Shanghai Restoration Project', 2, 'http://localhost:9000/vibe-music-data/artists/83ffbf69-5f84-4d53-86e0-a4ad67ee7220-blob', NULL, '美国', '上海复兴方案(The Shanghai Restoration Project,又译作“上海复兴计划”),是由美籍华人梁戴夫和孙云帆组成的当代电子音乐二人组,成立于2005年,现有成员包括梁文伟(Dave Liang)、孙云帆。'); INSERT INTO `tb_artist` VALUES (80, 'Ethno Music Project', 2, 'http://localhost:9000/vibe-music-data/artists/561990a9-ab42-4768-abae-6128b07e8726-blob', NULL, NULL, '瑞士AVC公司的一个音乐项目。跟Bandari(班得瑞)相似。'); INSERT INTO `tb_artist` VALUES (81, 'Martynas Levickis', 0, 'http://localhost:9000/vibe-music-data/artists/c0640dd3-13e6-4194-9c9e-aa4209df7696-blob', '0990-06-11', '立陶宛', '在立陶宛这片充满艺术气息的土地上,孕育了一位才华横溢的手风琴演奏家——马蒂内斯(Martynas)。1990年6月11日,他带着对音乐的无限热爱与憧憬降临人世,用他那双灵巧的手,拨动着无数人的心弦。'); INSERT INTO `tb_artist` VALUES (82, '王力宏', 0, 'http://localhost:9000/vibe-music-data/artists/ad8ffed3-a1bc-4565-932c-83c55194a95c-blob', '1976-05-17', '美国', '王力宏(Wang Leehom),1976年5月17日出生于美国纽约罗切斯特,祖籍中国浙江义乌,华语流行乐男歌手、音乐制作人、演员、导演,拥有威廉姆斯大学和伯克利音乐学院双荣誉博士的学历。'); INSERT INTO `tb_artist` VALUES (83, 'Bebe Rexha', 1, 'http://localhost:9000/vibe-music-data/artists/ce84779b-8e11-4c29-b4c4-0812421a1b25-blob', '1989-08-30', '美国', 'Bebe Rexha(碧碧·雷克萨),原名布蕾塔·杰妮娅·雷克萨,1989年8月30日出生于美国纽约市布鲁克林区,是一位才华横溢的美国歌手和词曲作者。她毕业于塔腾维尔高中,2010年以黑卡乐队主唱的身份正式出道。然而,在2012年乐队解散后,她选择单飞,踏上了属于自己的音乐之路。'); INSERT INTO `tb_artist` VALUES (85, '贵族乐团', 2, 'http://localhost:9000/vibe-music-data/artists/8b85d961-92e0-4134-a8ab-3d07a3238e20-blob', '2007-11-11', '中国', '贵族乐团,台湾Noble Music贵族唱片旗下乐团。英文名称“Noble”撷取“New Original Label of Limpid Echo”而成,强调“无瑕优质的原味音乐”,期望每一张精心制作出版的专辑,都能如悠扬回声般,于乐迷耳中久久不散。'); INSERT INTO `tb_artist` VALUES (86, 'Lazer Boomerang', 0, 'http://localhost:9000/vibe-music-data/artists/2b946694-0233-4aa9-a411-2bd16462dc4b-blob', NULL, '瑞士', '瑞士音乐家Lazer Boomerang有自己的方法来应对至亲的离去,抑郁症和心理疾病。作为一个失去至亲的孤儿,他不得不在生活的潮水中挣扎。也许这就是为什么他的音乐总是让人感觉真诚和乐观,即使在最黑暗的郊游(Darkest Outings)这首歌中也是如此。'); INSERT INTO `tb_artist` VALUES (87, 'Katy Perry', 1, 'http://localhost:9000/vibe-music-data/artists/f14f98b9-b2cb-48a5-8a77-bc498b5e5c87-blob', '1984-10-25', '美国', 'Katy Perry(凯蒂·佩里),美国著名创作型女歌手,以独特的音乐风格和鲜明的个性脱颖而出。她的成名之路始于YouTube上一首自拍的音乐录像带《Ur So Gay》,得到了Madonna的力挺。2008年,她推出了首张专辑《One of the Boys》,取得了不俗的销售成绩,其中的《I Kissed a Girl》和《Hot \'N\' Cold》成为了广受欢迎的热门歌曲。'); INSERT INTO `tb_artist` VALUES (88, 'V.K克', 0, 'http://localhost:9000/vibe-music-data/artists/9181f1a2-a5cb-4ede-a928-52ff1906cc20-blob', '1982-11-18', '中国', 'V.K克,配乐作曲家、流行钢琴家。音乐风格:新世纪、POP、交响乐。'); INSERT INTO `tb_artist` VALUES (89, '巫娜', 1, 'http://localhost:9000/vibe-music-data/artists/3612a0af-20d3-486a-bcd9-4542b49b297f-blob', '1979-01-14', '中国', '巫娜,内地古琴演奏家。她是活跃的跨界演奏者。常年往来演出于亚洲、欧洲、美洲等各个国家,曾获得了这个冷僻专业所有比赛的最高奖项。'); INSERT INTO `tb_artist` VALUES (90, 'Charlie Puth', 0, 'http://localhost:9000/vibe-music-data/artists/e2b02070-9177-47d5-8c51-a91e0d6cfd9d-blob', '1991-12-02', '美国', '查理·普斯(Charlie Puth),来自新泽西的音乐才子,伯克利音乐学院科班出身,以其深厚的音乐功底和干净悠扬的嗓音,在美国音乐界崭露头角。'); INSERT INTO `tb_artist` VALUES (91, 'Justin Bieber', 0, 'http://localhost:9000/vibe-music-data/artists/756bc859-cf54-486d-b2a0-c9a7b534d5b2-blob', '1994-03-01', '加拿大', '贾斯汀·比伯,这位1994年3月1日出生的加拿大歌手,早在YouTube上翻唱他人歌曲时就展现出了非凡的音乐才华,吸引了Usher的注意并签约小岛唱片。2009年,他的首张专辑《MY WORLDS》的第一部分《MY WORLD》一经发行,便在美国售出百万张,迅速成为白金唱片。'); INSERT INTO `tb_artist` VALUES (92, '丝国兰', 1, 'http://localhost:9000/vibe-music-data/artists/713e235e-88f3-4a5a-9c23-c7f88f7a6ee1-blob', NULL, '中国', '丝国兰,苗栗县南庄客籍人,师事卢俊政、陈盘安、张彩湘、吴季札等名师。'); INSERT INTO `tb_artist` VALUES (93, 'Ed Sheeran', 0, 'http://localhost:9000/vibe-music-data/artists/8662be81-a893-47cf-adee-6933e12557fe-blob', '1991-02-17', '英国', 'Ed Sheeran(艾德·希兰),原名Edward Christopher Sheeran,1991年2月17日出生于英国英格兰西约克郡,是一位才华横溢的英国流行乐男歌手、音乐创作人及演员,隶属于大西洋唱片。2011年6月,他凭借首支单曲《The A Team》一举夺得英国单曲榜第三名,并在第55届格莱美颁奖典礼中荣获年度最佳歌曲提名。'); INSERT INTO `tb_artist` VALUES (94, 'Richard Strauss', 0, 'http://localhost:9000/vibe-music-data/artists/79cb3bbe-1716-456c-9a92-45b116de80b2-blob', '1864-06-11', '德国', '理查德·格奥尔格·施特劳斯(德语:Richard Georg Strauss,1864年6月11日-1949年9月8日),德国作曲家、指挥家。他与以写圆舞曲著称的小约翰·施特劳斯为代表的维也纳施特劳斯家族完全没有关系,一般都以全名理查德·施特劳斯(R. Strauss)称呼,以与该家族的众多成员相区分。'); INSERT INTO `tb_artist` VALUES (95, 'Bronn Journey', 0, 'http://localhost:9000/vibe-music-data/artists/317f78f1-52e5-41c2-acdb-e81488c124e5-blob', NULL, '美国', 'Bronn Journey是美国著名的民谣竖琴演奏大师。'); INSERT INTO `tb_artist` VALUES (96, '骆集益', 0, 'http://localhost:9000/vibe-music-data/artists/7025b0bd-4f2f-44b0-b31c-753d35352b55-blob', NULL, '中国', '骆集益(Chi-Yi Lo),作曲家、音乐制作人,台湾缪斯特(Musit)音乐工作室成员。他是《仙剑奇侠传》,《古剑奇谭》游戏系列的音乐制作人之一,游戏中很多优美动听的旋律都是他创作的。'); INSERT INTO `tb_artist` VALUES (97, '白虹', 1, 'http://localhost:9000/vibe-music-data/artists/0188c2f7-635d-4d7f-abb8-509e65e53966-blob', '1920-02-24', '中国', '白虹(1920年2月24日-1992年5月28日),原名白丽珠,民国时期著名歌唱家、演员。1931年成为明月歌舞团成员,1934年在大晚报举办的广播歌星竞选中获得最多选票,成为中国流行音乐史上第一位“歌唱皇后”。'); INSERT INTO `tb_artist` VALUES (98, '郭富城', 0, 'http://localhost:9000/vibe-music-data/artists/bfbcf3ac-df36-4dcc-9073-82d809d5ead2-blob', '1965-10-26', '中国', '郭富城(Aaron Kwok),1965年10月26日出生于香港,华语流行男歌手、演员、舞蹈总监,也是华语歌坛劲歌热舞代表人物之一。'); INSERT INTO `tb_artist` VALUES (99, 'Kygo', 0, 'http://localhost:9000/vibe-music-data/artists/d64bdf3d-7bef-4824-afc1-5ca5160d9db8-blob', '1991-09-11', '挪威', 'Kygo,这位来自挪威的才华横溢的DJ、歌手、词曲作者及唱片制作人,更是热带浩室曲风的领航者,以其独特的音乐魅力在全球范围内掀起了一股清新风暴。2013年12月,他凭借对Ed Sheeran经典曲目《I See Fire》的精湛混音,初次崭露头角,展现了他对旋律与节奏的敏锐洞察力。'); INSERT INTO `tb_artist` VALUES (100, 'Maksim', 0, 'http://localhost:9000/vibe-music-data/artists/ca1dc1e0-6b1d-4e0c-bb60-e9ca04ced1ff-blob', '1975-05-03', '克罗地亚', '马克西姆·姆尔维察(Maksim Mrvica),这位来自克罗地亚的钢琴奇才,以其独特的音乐风格和精湛的演奏技巧,赢得了全球乐迷的喜爱。他的作品跨越古典与现代,既有融合古典钢琴与流行元素的跨界之作,也有对经典古典乐曲的完美诠释,更有当代作曲大师Tonči Huljić(赫吉克)的现代作品,每一首都充满了魅力与创新。'); INSERT INTO `tb_artist` VALUES (101, '南征北战NZBZ', 0, 'http://localhost:9000/vibe-music-data/artists/18b9c620-c1b7-4300-a3e7-3bf9e8bcdb85-blob', NULL, '中国', '南征北战(NZBZ),中国内地组合,其名寓意为:年轻人要为自己的梦想和爱去努力征战拼搏。其成员来自于祖国的大江南北,由此得名南征北战,由汀洋、赵辰龙、尼成三人组成。南征北战创造出V-Pop(Various Pop Music),即多元化流行音乐,制作出“南征北战”式的流行表达,重新定位新一代的流行音乐。'); INSERT INTO `tb_artist` VALUES (102, 'MrLi小哥', 0, 'http://localhost:9000/vibe-music-data/artists/5deb5bc8-c3da-44f0-b82e-78b80b7f24e7-blob', NULL, NULL, NULL); INSERT INTO `tb_artist` VALUES (103, 'R3HAB', 0, 'http://localhost:9000/vibe-music-data/artists/d8bd6412-bfa0-40a3-b38d-7a4b1aba4589-blob', '1986-04-02', '荷兰', '荷兰籍摩洛哥裔DJ兼制作人R3HAB(Fadil El Ghoul),凭借其多白金荣誉和卓越才华,在过去十年里不断引领电子舞曲界的创新潮流。他曾为Rihanna、Drake、Taylor Swift等大牌音乐人混音,更发行了黄金及铂金双认证的热门单曲《All Around The World (La La La)》与《Lullaby》。近期,他还与Luis Fonsi、Sean Paul等多位音乐人合作,展现了其多元化的音乐才华。'); INSERT INTO `tb_artist` VALUES (104, '曾沛慈', 1, 'http://localhost:9000/vibe-music-data/artists/a8d46755-289e-46d6-a74d-76617a0a9200-blob', '1984-10-21', '中国', '曾沛慈(Pets),1984年10月21日生于台湾台北市,中国女歌手,演员。'); INSERT INTO `tb_artist` VALUES (105, '那只肥羊', 0, 'http://localhost:9000/vibe-music-data/artists/72ef2a73-950c-487f-ad43-726455b38fdf-blob', NULL, '中国', '那只肥羊,中国网络男歌手,代表作《难念的经》。'); INSERT INTO `tb_artist` VALUES (106, '五月天', 2, 'http://localhost:9000/vibe-music-data/artists/f65a1fe0-588b-415d-9d80-ed56f4049cf5-blob', '1997-03-29', '中国', '五月天,台湾摇滚乐团,由乐队团长兼吉他手怪兽(温尚翊)、主唱阿信(陈信宏)、吉他手石头(石锦航)、贝斯玛莎(蔡升晏)和鼓手冠佑(刘谚明)组成,前身为“So Band”乐团,在1997年3月29日更名为“五月天”。至2016年,四次拿下\"台湾金曲奖\"和“最佳乐团奖”。'); INSERT INTO `tb_artist` VALUES (107, 'Aaron Carter', 0, 'http://localhost:9000/vibe-music-data/artists/49a41856-3d82-4f97-ba55-f715b4b03ccb-blob', '1987-12-07', '美国', '亚伦·卡特是美国音乐史上拥有连续五首十大金曲的最年轻的歌手,被人誉为“流行乐小王子”。'); INSERT INTO `tb_artist` VALUES (108, 'Taylor Swift', 1, 'http://localhost:9000/vibe-music-data/artists/ae0a613c-0430-478f-b6e8-1d35747fe9a2-blob', '1989-12-13', '美国', 'Taylor Swift(泰勒·斯威夫特),1989年12月13日出生于美国宾夕法尼亚州,是美国著名的女歌手、词曲作者、音乐制作人及演员。自2006年发行首张专辑《Taylor Swift》起,她就以其出色的音乐才华和独特的创作风格吸引了无数粉丝。'); INSERT INTO `tb_artist` VALUES (109, 'Ariana Grande', 1, 'http://localhost:9000/vibe-music-data/artists/1c6671a4-a3d3-4272-aef8-dbb04358ad24-blob', '1993-06-26', '美国', 'Ariana Grande(爱莉安娜·格兰德),1993年6月26日出生于美国佛罗里达州博卡拉顿市,是美国备受瞩目的流行乐女歌手兼影视演员。2013年,她凭借首张音乐专辑《Yours Truly》一举夺得美国公告牌200强专辑榜冠军,并荣获第41届全美音乐奖“年度最佳新人奖”。'); INSERT INTO `tb_artist` VALUES (110, 'Bruno Mars', 0, 'http://localhost:9000/vibe-music-data/artists/ad626971-a528-4913-a34c-9b21f8fc6717-blob', '1985-10-08', '美国', 'Bruno Mars(布鲁诺·马尔斯),原名彼得·基恩·埃尔南德斯,是一位多才多艺的美国创作型歌手兼音乐制作人。他的音乐风格独具匠心,舞台表演丰富多彩,复古风格魅力四溢。这位才华横溢的艺人共获得18项格莱美奖提名,并成功斩获两座大奖,全球专辑销量高达60白金,单曲销量更是突破1.3亿,成为继“猫王”之后,五首Billboard Hot 100单曲榜冠军速度最快的男歌手。'); INSERT INTO `tb_artist` VALUES (111, '寻道树', NULL, 'http://localhost:9000/vibe-music-data/artists/9c7abc83-6834-4424-8183-0faf6b8f94fd-blob', NULL, '中国', '一名95后口琴演奏者,非常感谢你对我作品的喜欢和支持~'); INSERT INTO `tb_artist` VALUES (112, '逃跑计划', 2, 'http://localhost:9000/vibe-music-data/artists/3a9fe545-d03d-4417-8825-e79919a8dc9b-blob', NULL, '中国', '逃跑计划乐队(EscapePlan),中国内地流行摇滚乐队,由主唱毛川、吉他手马晓东、贝斯手刚昂、鼓手王非凡组成。'); INSERT INTO `tb_artist` VALUES (113, 'Selena Gomez', 1, 'http://localhost:9000/vibe-music-data/artists/fa5ab52b-ef0c-4bed-a9d9-c4f5c14a6714-blob', '1992-07-22', '美国', 'Selena Gomez(赛琳娜·戈麦斯),1992年7月22日出生于美国得克萨斯州,是一位多才多艺的美国女演员、歌手和制片人。2004年,她因参加迪士尼全球才艺计划而脱颖而出,被迪士尼公司相中并签约。随后,她在2007年主演了原创魔幻喜剧《少年魔法师》,并在2008年主演了迪士尼原创电影《灰姑娘之舞动奇迹》。'); INSERT INTO `tb_artist` VALUES (114, '徐嘉良', 0, 'http://localhost:9000/vibe-music-data/artists/e0bfbb0d-d893-441b-a345-c7b0187b0e6c-blob', NULL, '中国', '徐嘉良,台湾著名唱片制作、编曲、配乐、作曲创作人。曾担任无数台湾、香港艺人的唱片制作编曲人。'); INSERT INTO `tb_artist` VALUES (115, '张震岳', 0, 'http://localhost:9000/vibe-music-data/artists/00f14885-300a-476e-98ff-f9afa08d34dd-blob', '1974-05-02', '中国', '张震岳(Chenyue Chang),1974年5月2日出生于台湾省宜兰县苏澳镇,中国台湾男歌手、音乐人。'); INSERT INTO `tb_artist` VALUES (116, 'CliQ', 0, 'http://localhost:9000/vibe-music-data/artists/2cccdf4c-b1cb-4313-b3fb-129977965126-blob', NULL, NULL, NULL); INSERT INTO `tb_artist` VALUES (117, 'George Szell', 0, 'http://localhost:9000/vibe-music-data/artists/9fe97b2b-3088-4c92-a3e4-ff00069f5809-blob', '1897-06-07', '美国', '乔治·赛尔 (George Szell,1897—1970)是一位十分全面的音乐指挥家,他在一生中曾指挥过各类体裁的大量作品,他不但精于指挥古典和浪漫主义的经典作品,对于现代主义作品,他也有着十分令人信服的演释能力,在其指挥生涯中,曾经指挥首演过利怕曼的歌剧《佩内洛普》和埃克的歌剧《爱尔兰的传奇》。'); INSERT INTO `tb_artist` VALUES (118, '张艺兴', 0, 'http://localhost:9000/vibe-music-data/artists/ea0c9a54-6979-42e3-9aae-cf1272cf372d-blob', '1991-10-07', '中国', '张艺兴(LAY),中国内地流行男歌手、影视演员,男子演唱组合EXO/EXO-M中国籍成员。2005年,张艺兴参加湖南经视《明星学院》比赛并获得总决赛季军。2008年,通过S.M. Casting System在中国的选拔成为韩国SM公司旗下练习生。2012年4月,以EXO团体和其子队EXO-M成员身份正式出道。'); INSERT INTO `tb_artist` VALUES (119, 'DJ Snake', 0, 'http://localhost:9000/vibe-music-data/artists/4d466996-a8fe-453f-8eef-ec9f4fcb20da-blob', '1986-06-13', '法国', 'DJ Snake,本名William Sami Etienne Grigahcine,但在音乐界,他更为人所熟知的是那个充满动感与魅力的艺名——DJ Snake。作为法国电子音乐界的佼佼者,他不仅是一位才华横溢的DJ,更是rap歌手与制片人多重身份的完美融合,以其独特的音乐风格和无限创意,在全球范围内赢得了无数乐迷的喜爱。'); INSERT INTO `tb_artist` VALUES (120, '周璇', 1, 'http://localhost:9000/vibe-music-data/artists/05df10a5-6da8-4924-a12d-f8fdb7fe2f99-blob', '1920-08-01', '中国', '周璇,常州人,中国最早的两栖明星。作为一代歌后,她的名字是国语流行歌曲史上一个金字招牌,被誉为“金嗓子”。她最大的优势就是拥有一副名副其实的好歌喉,不仅音色甜美、音质细腻,而且吐字清晰,经过麦克风传将出来更是委婉动人,就是不爱听国语流行歌曲的人,也会对她燕语莺声一般的歌喉留下难忘印象。作为影后,她是典型的感觉派明星,表演生动自然。'); INSERT INTO `tb_artist` VALUES (121, '吴宇深', 0, 'http://localhost:9000/vibe-music-data/artists/91dc4bc0-45e7-4904-ada9-952cb0fb7f89-blob', NULL, '中国', '吴宇深,太声文化独立音乐人,华语男作曲家,代表作《忆》。'); INSERT INTO `tb_artist` VALUES (122, 'Maroon 5', 2, 'http://localhost:9000/vibe-music-data/artists/4e4b1fa4-e344-4f28-98ee-932fa8424ae0-blob', NULL, '美国', '魔力红(Maroon 5),一支成立于1994年的美国流行摇滚乐队,汇聚了亚当·莱文、詹姆斯·瓦伦汀、杰西·卡麦可、米基·麦登、马特·弗林、PJ Morton、山姆·法拉尔等一众才华横溢的音乐家。自出道以来,他们的音乐作品屡获殊荣,成为乐坛的佼佼者。'); INSERT INTO `tb_artist` VALUES (123, '姚莉', 1, 'http://localhost:9000/vibe-music-data/artists/cc858970-f61c-4e07-b2aa-4c70c4e03911-blob', NULL, '中国', '姚莉(1922年9月-2019年7月19日),原名姚秀云,是上海滩时期知名女歌手之一,与周璇、白虹、白光、龚秋霞、李香兰、吴莺音等齐名,并称为1940年代上海歌坛七大歌星。'); INSERT INTO `tb_artist` VALUES (124, '王备', 0, 'http://localhost:9000/vibe-music-data/artists/5fd401e2-7799-4afe-aeb6-409ad34b1512-blob', NULL, '中国', '王备,内地作曲家、华语音乐家协会理事,低调的音乐和艺术大师,曾为多部热门影视大片创作原声音乐。代表音乐作品有:《大旗英雄传》、《倚天屠龙记》、《香粉传奇》、《芈月传》等。'); INSERT INTO `tb_artist` VALUES (125, '中国广播民族乐团', 2, 'http://localhost:9000/vibe-music-data/artists/7de9aa4c-b87d-4423-bcb8-0678bf2d07ee-blob', NULL, '中国', '中国广播民族乐团在1953年创立于北京,2004年与中国电影乐团民族乐团重组,与中国电影交响乐团、中国广播说唱团、中国广播合唱团、中国广播电声乐团从属于中国广播艺术团。'); INSERT INTO `tb_artist` VALUES (134, 'Rihanna', 1, 'http://localhost:9000/vibe-music-data/artists/a2cf1ad0-9402-4f7f-86c6-bf5591e10749-blob', '1988-02-20', '巴巴多斯', '蕾哈娜(Rihanna),原名罗比恩·蕾哈娜·芬缇,1988年2月20日生于巴巴多斯圣迈克尔区,是一位在美国崭露头角的巴巴多斯籍流行乐女歌手、影视演员及时尚模特。2005年,她凭借首张音乐专辑《Music of the Sun》正式开启歌唱生涯。紧接着,2006年的《A Girl Like Me》和2007年的《Good Girl Gone Bad》相继问世,展现了她日益成熟的音乐风格。'); -- ---------------------------- -- Table structure for tb_banner -- ---------------------------- DROP TABLE IF EXISTS `tb_banner`; CREATE TABLE `tb_banner` ( `id` bigint(0) NOT NULL AUTO_INCREMENT COMMENT '轮播图 id', `banner_url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '轮播图 url', `status` tinyint(0) NOT NULL COMMENT '轮播图状态:0-启用,1-禁用', PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 31 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of tb_banner -- ---------------------------- INSERT INTO `tb_banner` VALUES (1, 'http://localhost:9000/vibe-music-data/banners/c5174745-763c-482f-8ba2-2d5ed715cd12-banner_1743606119458.png', 1); INSERT INTO `tb_banner` VALUES (2, 'http://localhost:9000/vibe-music-data/banners/a11b799d-07b1-4536-a44f-1aa022527cc4-banner_1743606509944.png', 0); INSERT INTO `tb_banner` VALUES (3, 'http://localhost:9000/vibe-music-data/banners/49546c6e-f323-41f7-b378-a246d79bfdc0-banner_1743606538969.png', 0); INSERT INTO `tb_banner` VALUES (4, 'http://localhost:9000/vibe-music-data/banners/c9e034da-da51-43a1-a2e8-cc61947d2caf-banner_1743606551324.png', 0); INSERT INTO `tb_banner` VALUES (5, 'http://localhost:9000/vibe-music-data/banners/edf8a95e-243a-4489-8f21-d6645a07b3af-banner_1743606574495.png', 0); INSERT INTO `tb_banner` VALUES (6, 'http://localhost:9000/vibe-music-data/banners/4d9c633b-9ccf-4b2a-9282-76d88dcfef75-banner_1743606587507.png', 0); INSERT INTO `tb_banner` VALUES (7, 'http://localhost:9000/vibe-music-data/banners/5fcb6754-1851-41c8-b939-c1e3073cdcd5-banner_1743606598489.png', 0); INSERT INTO `tb_banner` VALUES (8, 'http://localhost:9000/vibe-music-data/banners/db3de2a0-8339-4fe7-896e-3b78c2944091-banner_1743606615526.png', 0); INSERT INTO `tb_banner` VALUES (9, 'http://localhost:9000/vibe-music-data/banners/f3a8c0d0-9e51-4a84-a59f-57a4a87ee7d1-banner_1743606626078.png', 0); INSERT INTO `tb_banner` VALUES (10, 'http://localhost:9000/vibe-music-data/banners/a8cb5a2f-79ea-4e94-ad2a-697164056295-banner_1743606638688.png', 0); -- ---------------------------- -- Table structure for tb_comment -- ---------------------------- DROP TABLE IF EXISTS `tb_comment`; CREATE TABLE `tb_comment` ( `id` bigint(0) NOT NULL AUTO_INCREMENT COMMENT '评论 id', `user_id` bigint(0) NOT NULL COMMENT '用户 id', `song_id` bigint(0) NULL DEFAULT NULL COMMENT '歌曲 id', `playlist_id` bigint(0) NULL DEFAULT NULL COMMENT '歌单 id', `content` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '评论内容', `create_time` datetime(0) NOT NULL COMMENT '评论时间', `type` tinyint(0) NOT NULL COMMENT '评论类型:0-歌曲评论,1-歌单评论', `like_count` bigint(0) NULL DEFAULT NULL COMMENT '点赞数量', PRIMARY KEY (`id`) USING BTREE, INDEX `fk_comment_song_id`(`song_id`) USING BTREE, INDEX `fk_comment_user_id`(`user_id`) USING BTREE, INDEX `fk_comment_playlist_id`(`playlist_id`) USING BTREE, CONSTRAINT `fk_comment_playlist_id` FOREIGN KEY (`playlist_id`) REFERENCES `tb_playlist` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `fk_comment_song_id` FOREIGN KEY (`song_id`) REFERENCES `tb_song` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `fk_comment_user_id` FOREIGN KEY (`user_id`) REFERENCES `tb_user` (`id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE = InnoDB AUTO_INCREMENT = 194 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of tb_comment -- ---------------------------- INSERT INTO `tb_comment` VALUES (17, 27, 185, NULL, '这是一个随机评论 184', '2025-01-26 14:18:05', 0, 908); INSERT INTO `tb_comment` VALUES (18, 27, 464, NULL, '这是一个随机评论 522', '2025-01-26 14:18:05', 0, 280); INSERT INTO `tb_comment` VALUES (19, 27, 452, NULL, '这是一个随机评论 53', '2025-01-26 14:18:05', 0, 231); INSERT INTO `tb_comment` VALUES (20, 27, 198, NULL, '这是一个随机评论 900', '2025-01-26 14:18:05', 0, 589); INSERT INTO `tb_comment` VALUES (21, 30, 182, NULL, '这是一个随机评论 763', '2025-01-26 14:18:05', 0, 241); INSERT INTO `tb_comment` VALUES (24, 38, 264, NULL, '这是一个随机评论 944', '2025-01-26 14:19:42', 0, 621); INSERT INTO `tb_comment` VALUES (25, 31, 424, NULL, '这是一个随机评论 237', '2025-01-26 14:19:42', 0, 754); INSERT INTO `tb_comment` VALUES (26, 28, 217, NULL, '这是一个随机评论 698', '2025-01-26 14:19:42', 0, 800); INSERT INTO `tb_comment` VALUES (27, 29, 40, NULL, '这是一个随机评论 629', '2025-01-26 14:19:42', 0, 174); INSERT INTO `tb_comment` VALUES (28, 27, 440, NULL, '这是一个随机评论 406', '2025-01-26 14:19:42', 0, 613); INSERT INTO `tb_comment` VALUES (31, 42, 302, NULL, '这是一个随机歌曲评论 509', '2025-01-26 14:25:56', 0, 908); INSERT INTO `tb_comment` VALUES (32, 28, 450, NULL, '这是一个随机歌曲评论 418', '2025-01-26 14:25:56', 0, 280); INSERT INTO `tb_comment` VALUES (33, 29, 190, NULL, '这是一个随机歌曲评论 66', '2025-01-26 14:25:56', 0, 231); INSERT INTO `tb_comment` VALUES (34, 38, 134, NULL, '这是一个随机歌曲评论 391', '2025-01-26 14:25:56', 0, 589); INSERT INTO `tb_comment` VALUES (35, 36, 195, NULL, '这是一个随机歌曲评论 531', '2025-01-26 14:25:56', 0, 241); INSERT INTO `tb_comment` VALUES (38, 30, NULL, 18, '这是一个随机歌单评论 329', '2025-01-26 14:25:56', 1, 621); INSERT INTO `tb_comment` VALUES (39, 43, NULL, 16, '这是一个随机歌单评论 671', '2025-01-26 14:25:56', 1, 754); INSERT INTO `tb_comment` VALUES (40, 42, NULL, 5, '这是一个随机歌单评论 948', '2025-01-26 14:25:56', 1, 845); INSERT INTO `tb_comment` VALUES (41, 31, NULL, 17, '这是一个随机歌单评论 401', '2025-01-26 14:25:56', 1, 174); INSERT INTO `tb_comment` VALUES (42, 34, NULL, 11, '这是一个随机歌单评论 706', '2025-01-26 14:25:56', 1, 613); INSERT INTO `tb_comment` VALUES (45, 30, 446, NULL, '这是一个随机歌曲评论 226', '2025-01-26 14:28:13', 0, 166); INSERT INTO `tb_comment` VALUES (46, 29, 70, NULL, '这是一个随机歌曲评论 753', '2025-01-26 14:28:13', 0, 71); INSERT INTO `tb_comment` VALUES (47, 41, 411, NULL, '这是一个随机歌曲评论 466', '2025-01-26 14:28:13', 0, 800); INSERT INTO `tb_comment` VALUES (48, 49, 227, NULL, '这是一个随机歌曲评论 881', '2025-01-26 14:28:13', 0, 174); INSERT INTO `tb_comment` VALUES (49, 34, 184, NULL, '这是一个随机歌曲评论 428', '2025-01-26 14:28:13', 0, 613); INSERT INTO `tb_comment` VALUES (52, 28, 8, NULL, '这是一个随机歌曲评论 60', '2025-01-26 14:31:33', 0, 908); INSERT INTO `tb_comment` VALUES (53, 72, 334, NULL, '这是一个随机歌曲评论 179', '2025-01-26 14:31:33', 0, 280); INSERT INTO `tb_comment` VALUES (54, 42, 433, NULL, '这是一个随机歌曲评论 471', '2025-01-26 14:31:33', 0, 231); INSERT INTO `tb_comment` VALUES (55, 28, 37, NULL, '这是一个随机歌曲评论 91', '2025-01-26 14:31:33', 0, 589); INSERT INTO `tb_comment` VALUES (56, 77, 165, NULL, '这是一个随机歌曲评论 538', '2025-01-26 14:31:33', 0, 241); INSERT INTO `tb_comment` VALUES (59, 70, NULL, 10, '这是一个随机歌单评论 805', '2025-01-26 14:31:33', 1, 621); INSERT INTO `tb_comment` VALUES (60, 35, NULL, 12, '这是一个随机歌单评论 23', '2025-01-26 14:31:33', 1, 754); INSERT INTO `tb_comment` VALUES (61, 64, NULL, 10, '这是一个随机歌单评论 256', '2025-01-26 14:31:33', 1, 800); INSERT INTO `tb_comment` VALUES (62, 70, NULL, 17, '这是一个随机歌单评论 228', '2025-01-26 14:31:33', 1, 174); INSERT INTO `tb_comment` VALUES (63, 70, NULL, 12, '这是一个随机歌单评论 756', '2025-01-26 14:31:33', 1, 613); INSERT INTO `tb_comment` VALUES (66, 76, 263, NULL, '这是一个随机歌曲评论 136', '2025-01-26 14:31:33', 0, 166); INSERT INTO `tb_comment` VALUES (67, 45, 427, NULL, '这是一个随机歌曲评论 586', '2025-01-26 14:31:33', 0, 71); INSERT INTO `tb_comment` VALUES (68, 42, 358, NULL, '这是一个随机歌曲评论 376', '2025-01-26 14:31:33', 0, 727); INSERT INTO `tb_comment` VALUES (69, 52, 251, NULL, '这是一个随机歌曲评论 727', '2025-01-26 14:31:33', 0, 415); INSERT INTO `tb_comment` VALUES (70, 38, 215, NULL, '这是一个随机歌曲评论 593', '2025-01-26 14:31:33', 0, 81); INSERT INTO `tb_comment` VALUES (73, 42, NULL, 13, '这是一个随机歌单评论 782', '2025-01-26 14:31:33', 1, 762); INSERT INTO `tb_comment` VALUES (74, 71, NULL, 10, '这是一个随机歌单评论 174', '2025-01-26 14:31:33', 1, 204); INSERT INTO `tb_comment` VALUES (75, 30, NULL, 14, '这是一个随机歌单评论 2', '2025-01-26 14:31:33', 1, 128); INSERT INTO `tb_comment` VALUES (76, 45, NULL, 4, '这是一个随机歌单评论 248', '2025-01-26 14:31:33', 1, 723); INSERT INTO `tb_comment` VALUES (77, 58, NULL, 5, '这是一个随机歌单评论 417', '2025-01-26 14:31:33', 1, 663); INSERT INTO `tb_comment` VALUES (81, 48, 148, NULL, '这是一个随机歌曲评论 971', '2025-01-26 14:35:28', 0, 614); INSERT INTO `tb_comment` VALUES (82, 80, 154, NULL, '这是一个随机歌曲评论 850', '2025-01-26 14:35:28', 0, 658); INSERT INTO `tb_comment` VALUES (83, 36, 4, NULL, '这是一个随机歌曲评论 865', '2025-01-26 14:35:28', 0, 328); INSERT INTO `tb_comment` VALUES (84, 43, 438, NULL, '这是一个随机歌曲评论 895', '2025-01-26 14:35:28', 0, 792); INSERT INTO `tb_comment` VALUES (88, 78, NULL, 18, '这是一个随机歌单评论 913', '2025-01-26 14:35:28', 1, 262); INSERT INTO `tb_comment` VALUES (89, 44, NULL, 10, '这是一个随机歌单评论 810', '2025-01-26 14:35:28', 1, 256); INSERT INTO `tb_comment` VALUES (90, 34, NULL, 9, '这是一个随机歌单评论 330', '2025-01-26 14:35:28', 1, 740); INSERT INTO `tb_comment` VALUES (91, 43, NULL, 16, '这是一个随机歌单评论 928', '2025-01-26 14:35:28', 1, 229); INSERT INTO `tb_comment` VALUES (94, 55, 212, NULL, '这是一个随机歌曲评论 546', '2025-01-26 14:54:51', 0, 851); INSERT INTO `tb_comment` VALUES (95, 58, 238, NULL, '这是一个随机歌曲评论 11', '2025-01-26 14:54:51', 0, 50); INSERT INTO `tb_comment` VALUES (96, 29, 112, NULL, '这是一个随机歌曲评论 503', '2025-01-26 14:54:51', 0, 840); INSERT INTO `tb_comment` VALUES (97, 44, 193, NULL, '这是一个随机歌曲评论 319', '2025-01-26 14:54:51', 0, 237); INSERT INTO `tb_comment` VALUES (98, 63, 440, NULL, '这是一个随机歌曲评论 180', '2025-01-26 14:54:51', 0, 47); INSERT INTO `tb_comment` VALUES (101, 83, NULL, 17, '这是一个随机歌单评论 521', '2025-01-26 14:54:51', 1, 870); INSERT INTO `tb_comment` VALUES (102, 93, NULL, 13, '这是一个随机歌单评论 820', '2025-01-26 14:54:51', 1, 976); INSERT INTO `tb_comment` VALUES (103, 90, NULL, 3, '这是一个随机歌单评论 359', '2025-01-26 14:54:51', 1, 45); INSERT INTO `tb_comment` VALUES (104, 76, NULL, 13, '这是一个随机歌单评论 931', '2025-01-26 14:54:51', 1, 340); INSERT INTO `tb_comment` VALUES (105, 91, NULL, 14, '这是一个随机歌单评论 599', '2025-01-26 14:54:51', 1, 63); INSERT INTO `tb_comment` VALUES (108, 83, 130, NULL, '这是一个随机歌曲评论 691', '2025-01-26 14:54:51', 0, 677); INSERT INTO `tb_comment` VALUES (109, 85, 249, NULL, '这是一个随机歌曲评论 538', '2025-01-26 14:54:51', 0, 798); INSERT INTO `tb_comment` VALUES (110, 43, 145, NULL, '这是一个随机歌曲评论 466', '2025-01-26 14:54:51', 0, 396); INSERT INTO `tb_comment` VALUES (111, 76, 358, NULL, '这是一个随机歌曲评论 956', '2025-01-26 14:54:51', 0, 711); INSERT INTO `tb_comment` VALUES (112, 86, 21, NULL, '这是一个随机歌曲评论 937', '2025-01-26 14:54:51', 0, 136); INSERT INTO `tb_comment` VALUES (115, 77, NULL, 3, '这是一个随机歌单评论 102', '2025-01-26 14:54:51', 1, 630); INSERT INTO `tb_comment` VALUES (116, 113, NULL, 2, '这是一个随机歌单评论 718', '2025-01-26 14:54:51', 1, 291); INSERT INTO `tb_comment` VALUES (117, 90, NULL, 16, '这是一个随机歌单评论 579', '2025-01-26 14:54:51', 1, 596); INSERT INTO `tb_comment` VALUES (118, 90, NULL, 5, '这是一个随机歌单评论 609', '2025-01-26 14:54:51', 1, 924); INSERT INTO `tb_comment` VALUES (119, 80, NULL, 3, '这是一个随机歌单评论 551', '2025-01-26 14:54:51', 1, 463); INSERT INTO `tb_comment` VALUES (122, 45, 365, NULL, '这是一个随机歌曲评论 439', '2025-01-26 14:55:14', 0, 751); INSERT INTO `tb_comment` VALUES (123, 51, 109, NULL, '这是一个随机歌曲评论 52', '2025-01-26 14:55:14', 0, 425); INSERT INTO `tb_comment` VALUES (125, 114, 142, NULL, '这是一个随机歌曲评论 873', '2025-01-26 14:55:14', 0, 349); INSERT INTO `tb_comment` VALUES (126, 117, 67, NULL, '这是一个随机歌曲评论 484', '2025-01-26 14:55:14', 0, 453); INSERT INTO `tb_comment` VALUES (129, 42, NULL, 8, '这是一个随机歌单评论 398', '2025-01-26 14:55:14', 1, 126); INSERT INTO `tb_comment` VALUES (130, 63, NULL, 10, '这是一个随机歌单评论 205', '2025-01-26 14:55:14', 1, 977); INSERT INTO `tb_comment` VALUES (131, 57, NULL, 14, '这是一个随机歌单评论 767', '2025-01-26 14:55:14', 1, 983); INSERT INTO `tb_comment` VALUES (132, 59, NULL, 16, '这是一个随机歌单评论 711', '2025-01-26 14:55:14', 1, 63); INSERT INTO `tb_comment` VALUES (133, 49, NULL, 18, '这是一个随机歌单评论 246', '2025-01-26 14:55:14', 1, 226); INSERT INTO `tb_comment` VALUES (134, 127, NULL, 5, '\"True friendship is when you\'re laughing, she\'s laughing too. When you\'re sad, she comforts you. Goo', '2025-03-20 21:35:23', 1, 0); INSERT INTO `tb_comment` VALUES (135, 127, NULL, 5, '\"True friendship is when you\'re laughing, she\'s laughing too. When you\'re sad, she comforts you. Good friends care for each other, sometimes even hurt each other. They understand your unhappiness and', '2025-03-20 21:37:41', 1, 0); INSERT INTO `tb_comment` VALUES (136, 127, NULL, 5, '\"True friendship is when you\'re laughing, she\'s laughing too. When you\'re sad, she comforts you. Good friends care for each other, sometimes even hurt each other. They understand your unhappiness and', '2025-03-20 21:37:52', 1, 0); INSERT INTO `tb_comment` VALUES (137, 127, NULL, 5, '夏天,就是要在热的要命的天跑去小卖部买根冰棍,在回去的路上边走边吃,爽死我夏天,就是要在热的要命的天跑去小卖部买根冰棍,在回去的路上边走边吃,爽死我夏天,就是要在热的要命的天跑去小卖部买根冰棍,在回去的路上边走边吃,爽死我夏天,就是要在热的要命的天跑去小卖部买根冰棍,在回去的路上边走边吃,爽死我夏天,就是要在热的要命的天跑去小卖部买根冰棍,在回去的路上边走边吃,爽死我夏天,就是要在热的要命的天跑去', '2025-03-20 21:40:36', 1, 1); INSERT INTO `tb_comment` VALUES (138, 127, NULL, 5, '\"True friendship is when you\'re laughing, she\'s laughing too. When you\'re sad, she com夏天,就是要在热的要命的天跑去小卖部买根冰棍,在回去的路上边走边吃,爽死我', '2025-03-20 21:42:40', 1, 1); INSERT INTO `tb_comment` VALUES (139, 127, 118, NULL, '哈哈', '2025-03-20 21:48:29', 0, 1); INSERT INTO `tb_comment` VALUES (140, 127, 34, NULL, 'next', '2025-03-20 21:50:08', 0, 0); INSERT INTO `tb_comment` VALUES (141, 127, 34, NULL, '777777777777777777777777777', '2025-03-20 21:50:22', 0, 0); INSERT INTO `tb_comment` VALUES (158, 127, 35, NULL, '123', '2025-03-20 22:08:04', 0, 1); INSERT INTO `tb_comment` VALUES (166, 127, 7, NULL, '123', '2025-03-20 22:14:22', 0, 0); INSERT INTO `tb_comment` VALUES (167, 127, 7, NULL, 'good', '2025-03-20 22:14:28', 0, 1); INSERT INTO `tb_comment` VALUES (168, 127, NULL, 5, '123456', '2025-03-20 22:28:55', 1, 0); INSERT INTO `tb_comment` VALUES (171, 127, NULL, 18, '很棒!首推', '2025-03-25 17:34:21', 1, 908); INSERT INTO `tb_comment` VALUES (172, 127, NULL, 18, '这是最棒的歌单啦加油!!!!!!!!!!!!', '2025-03-25 17:34:33', 1, 880); INSERT INTO `tb_comment` VALUES (173, 127, NULL, 18, '柔美音乐流泄满室,清新悠扬的旋律,彷佛送来阵阵自然芳香。', '2025-03-25 17:34:58', 1, 1633); INSERT INTO `tb_comment` VALUES (174, 126, NULL, 18, '谢谢大家,今天很荣幸拿到与Taylor Swift、Billie Eillish、Ariana Grande、Post Malone、Olivia Rodrigo等前辈一样多的格莱美,将来我会继续努力深耕音乐作品以更好地与这份荣誉相配。', '2025-03-25 17:37:42', 1, 2); INSERT INTO `tb_comment` VALUES (175, 127, 340, NULL, '我觉得这首歌很好听啊(。•ˇ‸ˇ•。)而且和打雷的还是有本质区别的啊毕竟打雷的很多歌调子都不会这么明显的(。•ˇ‸ˇ•。)而且声音的话霉的声音更澈一点打雷的很朦胧qaaaaq', '2025-03-25 17:45:49', 0, 6); INSERT INTO `tb_comment` VALUES (176, 127, 340, NULL, 'Taylor Swift是你今年最喜欢的歌手\nTA的歌你今年一共听了7503次\n1.《Love Story》511次\n2.《Enchanted》495次\n3.《Style》492次\n5.《You Need To Calm Dow...》401次\n6《Wildest Dreams》369次', '2025-03-25 17:46:19', 0, 0); INSERT INTO `tb_comment` VALUES (177, 127, 340, NULL, '野梦就是上个世纪好莱坞黄金年代的感觉,风华绝代的女明星和英俊潇洒的男明星,在辽阔的非洲草原相爱,大自然的壮阔让爱情更加恢宏、狂野,给人一种Love that burns to death的错觉。', '2025-03-25 17:46:42', 0, 0); INSERT INTO `tb_comment` VALUES (179, 127, 340, NULL, '感觉自己很久没说出过这么强硬的祈使句了,Say you\'ll remember me.听了太多如何收敛自己的情感,久了好像丧失了热烈地去爱的能力。\nSay you\'ll see me again,\nEven if it\'s just in your wildest dreams.\n这种表达真的很酷,说你爱我,不要等你爱我。', '2025-03-25 17:47:06', 0, 3977); INSERT INTO `tb_comment` VALUES (180, 126, 340, NULL, '红唇坐在镜前化妆的,是艾娃加德纳。荒野中的一吻,是梅里尔斯特里普。披着黄纱迎风飞翔,是琼芳登。床前褪下褐色的丝绸,是丽塔海华丝。带着头巾墨镜坐在滑翔机上吹风,是英格丽褒曼。聚光灯下走上红毯,是伊丽莎白泰勒。隔着车窗看雨的,是玛丽昂歌迪亚。一个好莱坞式复古MV里独占鳌头的,是霉霉。', '2025-03-25 17:47:24', 0, 986); INSERT INTO `tb_comment` VALUES (181, 126, 340, NULL, 'Wildest Dreams有着与霉霉许多的其他歌不一样的感觉,她在MV里拍出了好莱坞式的浪漫,至今还是许多粉丝心中最爱的MV。在释出重录的时候我真的很感动,这首歌的歌词写出了心中对爱情的痴迷,鼓点采样自她的心跳,配以婉转的旋律,是我最喜欢她的一首歌。', '2025-03-25 17:47:43', 0, 66); INSERT INTO `tb_comment` VALUES (186, 126, 34, NULL, 'like it', '2025-04-07 18:03:38', 0, 0); INSERT INTO `tb_comment` VALUES (188, 126, 34, NULL, 'excellent', '2025-04-07 18:17:37', 0, 0); INSERT INTO `tb_comment` VALUES (190, 126, 346, NULL, '111', '2025-04-15 21:44:39', 0, 0); INSERT INTO `tb_comment` VALUES (191, 118, 359, NULL, 'The Chainsmokers联手Phoebe Ryan新单All We Know已上线,成员Drew再次献声,而且这次帮帮唱小伙伴还是Phoebe Ryan,新歌依旧洗脑好听,看来又是一首大火的歌~', '2025-04-18 20:36:15', 0, 77116); INSERT INTO `tb_comment` VALUES (192, 127, 359, NULL, '就是莫名好喜欢\"From Chicago to the coast.\"这一句啊,从芝加哥到西海岸的尽头,想想就觉得很美好', '2025-04-18 20:37:51', 0, 9025); -- ---------------------------- -- Table structure for tb_feedback -- ---------------------------- DROP TABLE IF EXISTS `tb_feedback`; CREATE TABLE `tb_feedback` ( `id` bigint(0) NOT NULL AUTO_INCREMENT COMMENT '反馈 id', `user_id` bigint(0) NOT NULL COMMENT '用户 id', `feedback` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '反馈内容', `create_time` datetime(0) NOT NULL COMMENT '创建时间', PRIMARY KEY (`id`) USING BTREE, INDEX `fk_feedback_user_id`(`user_id`) USING BTREE, CONSTRAINT `fk_feedback_user_id` FOREIGN KEY (`user_id`) REFERENCES `tb_user` (`id`) ON DELETE RESTRICT ON UPDATE CASCADE ) ENGINE = InnoDB AUTO_INCREMENT = 73 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of tb_feedback -- ---------------------------- INSERT INTO `tb_feedback` VALUES (2, 31, '这是一个随机反馈 431', '2025-01-26 14:18:05'); INSERT INTO `tb_feedback` VALUES (3, 30, '这是一个随机反馈 707', '2025-01-26 14:18:05'); INSERT INTO `tb_feedback` VALUES (8, 30, '这是一个随机反馈 360', '2025-01-26 14:18:58'); INSERT INTO `tb_feedback` VALUES (9, 31, '这是一个随机反馈 727', '2025-01-26 14:18:58'); INSERT INTO `tb_feedback` VALUES (10, 27, '这是一个随机反馈 824', '2025-01-26 14:18:58'); INSERT INTO `tb_feedback` VALUES (11, 29, '这是一个随机反馈 711', '2025-01-26 14:18:58'); INSERT INTO `tb_feedback` VALUES (12, 28, '这是一个随机反馈 172', '2025-01-26 14:18:58'); INSERT INTO `tb_feedback` VALUES (15, 35, '这是一个随机反馈 17', '2025-01-26 14:31:33'); INSERT INTO `tb_feedback` VALUES (16, 80, '这是一个随机反馈 853', '2025-01-26 14:31:33'); INSERT INTO `tb_feedback` VALUES (17, 55, '这是一个随机反馈 431', '2025-01-26 14:31:33'); INSERT INTO `tb_feedback` VALUES (18, 79, '这是一个随机反馈 838', '2025-01-26 14:31:33'); INSERT INTO `tb_feedback` VALUES (19, 73, '这是一个随机反馈 358', '2025-01-26 14:31:33'); INSERT INTO `tb_feedback` VALUES (22, 79, '这是一个随机反馈 83', '2025-01-26 14:31:33'); INSERT INTO `tb_feedback` VALUES (23, 52, '这是一个随机反馈 123', '2025-01-26 14:31:33'); INSERT INTO `tb_feedback` VALUES (24, 36, '这是一个随机反馈 744', '2025-01-26 14:31:33'); INSERT INTO `tb_feedback` VALUES (25, 62, '这是一个随机反馈 766', '2025-01-26 14:31:33'); INSERT INTO `tb_feedback` VALUES (26, 58, '这是一个随机反馈 648', '2025-01-26 14:31:33'); INSERT INTO `tb_feedback` VALUES (29, 87, '这是一个随机反馈 565', '2025-01-26 14:35:28'); INSERT INTO `tb_feedback` VALUES (30, 73, '这是一个随机反馈 294', '2025-01-26 14:35:28'); INSERT INTO `tb_feedback` VALUES (31, 62, '这是一个随机反馈 213', '2025-01-26 14:35:28'); INSERT INTO `tb_feedback` VALUES (32, 64, '这是一个随机反馈 296', '2025-01-26 14:35:28'); INSERT INTO `tb_feedback` VALUES (33, 86, '这是一个随机反馈 782', '2025-01-26 14:35:28'); INSERT INTO `tb_feedback` VALUES (36, 63, '这是一个随机反馈 570', '2025-01-26 14:54:51'); INSERT INTO `tb_feedback` VALUES (37, 105, '这是一个随机反馈 840', '2025-01-26 14:54:51'); INSERT INTO `tb_feedback` VALUES (38, 59, '这是一个随机反馈 750', '2025-01-26 14:54:51'); INSERT INTO `tb_feedback` VALUES (39, 57, '这是一个随机反馈 659', '2025-01-26 14:54:51'); INSERT INTO `tb_feedback` VALUES (40, 104, '这是一个随机反馈 98', '2025-01-26 14:54:51'); INSERT INTO `tb_feedback` VALUES (43, 44, '这是一个随机反馈 58', '2025-01-26 14:54:51'); INSERT INTO `tb_feedback` VALUES (44, 41, '这是一个随机反馈 140', '2025-01-26 14:54:51'); INSERT INTO `tb_feedback` VALUES (47, 104, '这是一个随机反馈 700', '2025-01-26 14:54:51'); INSERT INTO `tb_feedback` VALUES (53, 107, '这是一个随机反馈 402', '2025-01-26 14:55:14'); INSERT INTO `tb_feedback` VALUES (59, 126, '哇,今天的推荐太棒了!发现了好几首我超喜欢的冷门歌曲!', '2025-04-03 15:47:45'); INSERT INTO `tb_feedback` VALUES (60, 30, '感觉推荐的音乐越来越符合我的口味了,继续保持!', '2025-04-03 15:48:45'); INSERT INTO `tb_feedback` VALUES (61, 27, '搜索功能有点不太好用,输入歌手名字经常找不到对应的歌曲。', '2025-04-03 15:48:54'); INSERT INTO `tb_feedback` VALUES (62, 29, '希望可以增加一个‘不再推荐这个歌手/歌曲’的功能。', '2025-04-03 15:49:03'); INSERT INTO `tb_feedback` VALUES (63, 30, '我经常使用你们的歌单功能,但是感觉歌单的分类和管理还不够灵活。希望能增加自定义标签的功能,并且可以按照创建时间、歌曲数量等进行排序,方便我更好地整理自己的音乐库。', '2025-04-03 15:49:10'); INSERT INTO `tb_feedback` VALUES (64, 31, '很喜欢每日推荐歌单,每天都有新的惊喜。', '2025-04-03 15:49:20'); INSERT INTO `tb_feedback` VALUES (65, 27, '总的来说,这个音乐推荐网站还是非常不错的,为我发现了许多新的音乐。希望你们能持续优化和改进,推出更多有趣和实用的功能,成为我日常听歌的首选平台。', '2025-04-03 15:49:29'); INSERT INTO `tb_feedback` VALUES (66, 107, '希望可以支持更多音乐平台导入歌单。', '2025-04-03 15:49:41'); INSERT INTO `tb_feedback` VALUES (67, 28, '希望可以增加歌词显示功能。', '2025-04-03 15:49:57'); INSERT INTO `tb_feedback` VALUES (68, 35, '整体来说还不错,会继续使用下去。', '2025-04-03 15:50:25'); INSERT INTO `tb_feedback` VALUES (69, 80, '界面设计很简洁,用起来很舒服。', '2025-04-03 15:51:26'); INSERT INTO `tb_feedback` VALUES (70, 55, '我希望网站能提供更详细的歌曲和专辑信息,比如歌曲的创作背景、制作团队、所属专辑的评价等等。这能帮助我们更深入地了解音乐背后的故事,增加听歌的乐趣。', '2025-04-03 15:51:44'); INSERT INTO `tb_feedback` VALUES (71, 126, '能不能增加一些排行榜单,比如不同风格的热门歌曲?', '2025-04-03 15:51:59'); INSERT INTO `tb_feedback` VALUES (72, 66, '我非常喜欢这个网站的整体设计风格,简约大气,操作起来也很流畅。特别是夜间模式,对眼睛非常友好。如果能在播放界面增加一些可视化的效果,比如动态频谱或者专辑封面动画,就更完美了。', '2025-04-03 15:52:09'); -- ---------------------------- -- Table structure for tb_genre -- ---------------------------- DROP TABLE IF EXISTS `tb_genre`; CREATE TABLE `tb_genre` ( `song_id` bigint(0) NOT NULL COMMENT '歌曲 id', `style_id` bigint(0) NOT NULL COMMENT '风格 id', PRIMARY KEY (`song_id`, `style_id`) USING BTREE, INDEX `fk_genre_style_id`(`style_id`) USING BTREE, CONSTRAINT `fk_genre_song_id` FOREIGN KEY (`song_id`) REFERENCES `tb_song` (`id`) ON DELETE CASCADE ON UPDATE RESTRICT, CONSTRAINT `fk_genre_style_id` FOREIGN KEY (`style_id`) REFERENCES `tb_style` (`id`) ON DELETE CASCADE ON UPDATE RESTRICT ) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of tb_genre -- ---------------------------- INSERT INTO `tb_genre` VALUES (65, 1); INSERT INTO `tb_genre` VALUES (315, 1); INSERT INTO `tb_genre` VALUES (325, 1); INSERT INTO `tb_genre` VALUES (332, 1); INSERT INTO `tb_genre` VALUES (336, 1); INSERT INTO `tb_genre` VALUES (343, 1); INSERT INTO `tb_genre` VALUES (135, 2); INSERT INTO `tb_genre` VALUES (136, 2); INSERT INTO `tb_genre` VALUES (137, 2); INSERT INTO `tb_genre` VALUES (138, 2); INSERT INTO `tb_genre` VALUES (140, 2); INSERT INTO `tb_genre` VALUES (141, 2); INSERT INTO `tb_genre` VALUES (142, 2); INSERT INTO `tb_genre` VALUES (143, 2); INSERT INTO `tb_genre` VALUES (144, 2); INSERT INTO `tb_genre` VALUES (145, 2); INSERT INTO `tb_genre` VALUES (146, 2); INSERT INTO `tb_genre` VALUES (147, 2); INSERT INTO `tb_genre` VALUES (410, 2); INSERT INTO `tb_genre` VALUES (427, 2); INSERT INTO `tb_genre` VALUES (428, 2); INSERT INTO `tb_genre` VALUES (430, 2); INSERT INTO `tb_genre` VALUES (431, 2); INSERT INTO `tb_genre` VALUES (432, 2); INSERT INTO `tb_genre` VALUES (433, 2); INSERT INTO `tb_genre` VALUES (434, 2); INSERT INTO `tb_genre` VALUES (435, 2); INSERT INTO `tb_genre` VALUES (436, 2); INSERT INTO `tb_genre` VALUES (437, 2); INSERT INTO `tb_genre` VALUES (448, 2); INSERT INTO `tb_genre` VALUES (449, 2); INSERT INTO `tb_genre` VALUES (451, 2); INSERT INTO `tb_genre` VALUES (452, 2); INSERT INTO `tb_genre` VALUES (453, 2); INSERT INTO `tb_genre` VALUES (454, 2); INSERT INTO `tb_genre` VALUES (455, 2); INSERT INTO `tb_genre` VALUES (457, 2); INSERT INTO `tb_genre` VALUES (462, 2); INSERT INTO `tb_genre` VALUES (467, 2); INSERT INTO `tb_genre` VALUES (468, 2); INSERT INTO `tb_genre` VALUES (469, 2); INSERT INTO `tb_genre` VALUES (470, 2); INSERT INTO `tb_genre` VALUES (471, 2); INSERT INTO `tb_genre` VALUES (472, 2); INSERT INTO `tb_genre` VALUES (473, 2); INSERT INTO `tb_genre` VALUES (474, 2); INSERT INTO `tb_genre` VALUES (475, 2); INSERT INTO `tb_genre` VALUES (476, 2); INSERT INTO `tb_genre` VALUES (477, 2); INSERT INTO `tb_genre` VALUES (478, 2); INSERT INTO `tb_genre` VALUES (479, 2); INSERT INTO `tb_genre` VALUES (480, 2); INSERT INTO `tb_genre` VALUES (481, 2); INSERT INTO `tb_genre` VALUES (482, 2); INSERT INTO `tb_genre` VALUES (483, 2); INSERT INTO `tb_genre` VALUES (484, 2); INSERT INTO `tb_genre` VALUES (485, 2); INSERT INTO `tb_genre` VALUES (489, 2); INSERT INTO `tb_genre` VALUES (493, 2); INSERT INTO `tb_genre` VALUES (494, 2); INSERT INTO `tb_genre` VALUES (495, 2); INSERT INTO `tb_genre` VALUES (497, 2); INSERT INTO `tb_genre` VALUES (499, 2); INSERT INTO `tb_genre` VALUES (42, 3); INSERT INTO `tb_genre` VALUES (54, 3); INSERT INTO `tb_genre` VALUES (68, 3); INSERT INTO `tb_genre` VALUES (90, 3); INSERT INTO `tb_genre` VALUES (137, 3); INSERT INTO `tb_genre` VALUES (151, 3); INSERT INTO `tb_genre` VALUES (220, 3); INSERT INTO `tb_genre` VALUES (273, 3); INSERT INTO `tb_genre` VALUES (283, 3); INSERT INTO `tb_genre` VALUES (291, 3); INSERT INTO `tb_genre` VALUES (298, 3); INSERT INTO `tb_genre` VALUES (300, 3); INSERT INTO `tb_genre` VALUES (302, 3); INSERT INTO `tb_genre` VALUES (363, 3); INSERT INTO `tb_genre` VALUES (388, 3); INSERT INTO `tb_genre` VALUES (389, 3); INSERT INTO `tb_genre` VALUES (430, 3); INSERT INTO `tb_genre` VALUES (439, 3); INSERT INTO `tb_genre` VALUES (448, 3); INSERT INTO `tb_genre` VALUES (451, 3); INSERT INTO `tb_genre` VALUES (455, 3); INSERT INTO `tb_genre` VALUES (457, 3); INSERT INTO `tb_genre` VALUES (459, 3); INSERT INTO `tb_genre` VALUES (463, 3); INSERT INTO `tb_genre` VALUES (489, 3); INSERT INTO `tb_genre` VALUES (497, 3); INSERT INTO `tb_genre` VALUES (500, 3); INSERT INTO `tb_genre` VALUES (62, 4); INSERT INTO `tb_genre` VALUES (129, 4); INSERT INTO `tb_genre` VALUES (132, 4); INSERT INTO `tb_genre` VALUES (149, 4); INSERT INTO `tb_genre` VALUES (150, 4); INSERT INTO `tb_genre` VALUES (151, 4); INSERT INTO `tb_genre` VALUES (168, 4); INSERT INTO `tb_genre` VALUES (180, 4); INSERT INTO `tb_genre` VALUES (226, 4); INSERT INTO `tb_genre` VALUES (227, 4); INSERT INTO `tb_genre` VALUES (228, 4); INSERT INTO `tb_genre` VALUES (229, 4); INSERT INTO `tb_genre` VALUES (230, 4); INSERT INTO `tb_genre` VALUES (271, 4); INSERT INTO `tb_genre` VALUES (272, 4); INSERT INTO `tb_genre` VALUES (277, 4); INSERT INTO `tb_genre` VALUES (278, 4); INSERT INTO `tb_genre` VALUES (292, 4); INSERT INTO `tb_genre` VALUES (293, 4); INSERT INTO `tb_genre` VALUES (294, 4); INSERT INTO `tb_genre` VALUES (295, 4); INSERT INTO `tb_genre` VALUES (300, 4); INSERT INTO `tb_genre` VALUES (363, 4); INSERT INTO `tb_genre` VALUES (390, 4); INSERT INTO `tb_genre` VALUES (391, 4); INSERT INTO `tb_genre` VALUES (393, 4); INSERT INTO `tb_genre` VALUES (394, 4); INSERT INTO `tb_genre` VALUES (396, 4); INSERT INTO `tb_genre` VALUES (397, 4); INSERT INTO `tb_genre` VALUES (398, 4); INSERT INTO `tb_genre` VALUES (399, 4); INSERT INTO `tb_genre` VALUES (400, 4); INSERT INTO `tb_genre` VALUES (401, 4); INSERT INTO `tb_genre` VALUES (405, 4); INSERT INTO `tb_genre` VALUES (406, 4); INSERT INTO `tb_genre` VALUES (407, 4); INSERT INTO `tb_genre` VALUES (408, 4); INSERT INTO `tb_genre` VALUES (409, 4); INSERT INTO `tb_genre` VALUES (416, 4); INSERT INTO `tb_genre` VALUES (420, 4); INSERT INTO `tb_genre` VALUES (424, 4); INSERT INTO `tb_genre` VALUES (488, 4); INSERT INTO `tb_genre` VALUES (492, 4); INSERT INTO `tb_genre` VALUES (34, 5); INSERT INTO `tb_genre` VALUES (83, 5); INSERT INTO `tb_genre` VALUES (124, 5); INSERT INTO `tb_genre` VALUES (126, 5); INSERT INTO `tb_genre` VALUES (174, 5); INSERT INTO `tb_genre` VALUES (181, 5); INSERT INTO `tb_genre` VALUES (187, 5); INSERT INTO `tb_genre` VALUES (189, 5); INSERT INTO `tb_genre` VALUES (195, 5); INSERT INTO `tb_genre` VALUES (196, 5); INSERT INTO `tb_genre` VALUES (273, 5); INSERT INTO `tb_genre` VALUES (290, 5); INSERT INTO `tb_genre` VALUES (414, 5); INSERT INTO `tb_genre` VALUES (438, 5); INSERT INTO `tb_genre` VALUES (411, 6); INSERT INTO `tb_genre` VALUES (412, 6); INSERT INTO `tb_genre` VALUES (415, 6); INSERT INTO `tb_genre` VALUES (417, 6); INSERT INTO `tb_genre` VALUES (418, 6); INSERT INTO `tb_genre` VALUES (439, 6); INSERT INTO `tb_genre` VALUES (440, 6); INSERT INTO `tb_genre` VALUES (441, 6); INSERT INTO `tb_genre` VALUES (456, 6); INSERT INTO `tb_genre` VALUES (458, 6); INSERT INTO `tb_genre` VALUES (486, 6); INSERT INTO `tb_genre` VALUES (487, 6); INSERT INTO `tb_genre` VALUES (491, 6); INSERT INTO `tb_genre` VALUES (500, 6); INSERT INTO `tb_genre` VALUES (454, 7); INSERT INTO `tb_genre` VALUES (4, 8); INSERT INTO `tb_genre` VALUES (43, 8); INSERT INTO `tb_genre` VALUES (44, 8); INSERT INTO `tb_genre` VALUES (45, 8); INSERT INTO `tb_genre` VALUES (46, 8); INSERT INTO `tb_genre` VALUES (47, 8); INSERT INTO `tb_genre` VALUES (48, 8); INSERT INTO `tb_genre` VALUES (49, 8); INSERT INTO `tb_genre` VALUES (50, 8); INSERT INTO `tb_genre` VALUES (51, 8); INSERT INTO `tb_genre` VALUES (52, 8); INSERT INTO `tb_genre` VALUES (53, 8); INSERT INTO `tb_genre` VALUES (84, 8); INSERT INTO `tb_genre` VALUES (139, 8); INSERT INTO `tb_genre` VALUES (170, 8); INSERT INTO `tb_genre` VALUES (171, 8); INSERT INTO `tb_genre` VALUES (172, 8); INSERT INTO `tb_genre` VALUES (173, 8); INSERT INTO `tb_genre` VALUES (174, 8); INSERT INTO `tb_genre` VALUES (231, 8); INSERT INTO `tb_genre` VALUES (232, 8); INSERT INTO `tb_genre` VALUES (233, 8); INSERT INTO `tb_genre` VALUES (234, 8); INSERT INTO `tb_genre` VALUES (235, 8); INSERT INTO `tb_genre` VALUES (236, 8); INSERT INTO `tb_genre` VALUES (237, 8); INSERT INTO `tb_genre` VALUES (238, 8); INSERT INTO `tb_genre` VALUES (239, 8); INSERT INTO `tb_genre` VALUES (240, 8); INSERT INTO `tb_genre` VALUES (241, 8); INSERT INTO `tb_genre` VALUES (242, 8); INSERT INTO `tb_genre` VALUES (243, 8); INSERT INTO `tb_genre` VALUES (244, 8); INSERT INTO `tb_genre` VALUES (245, 8); INSERT INTO `tb_genre` VALUES (246, 8); INSERT INTO `tb_genre` VALUES (247, 8); INSERT INTO `tb_genre` VALUES (248, 8); INSERT INTO `tb_genre` VALUES (249, 8); INSERT INTO `tb_genre` VALUES (250, 8); INSERT INTO `tb_genre` VALUES (251, 8); INSERT INTO `tb_genre` VALUES (252, 8); INSERT INTO `tb_genre` VALUES (253, 8); INSERT INTO `tb_genre` VALUES (254, 8); INSERT INTO `tb_genre` VALUES (255, 8); INSERT INTO `tb_genre` VALUES (256, 8); INSERT INTO `tb_genre` VALUES (257, 8); INSERT INTO `tb_genre` VALUES (258, 8); INSERT INTO `tb_genre` VALUES (259, 8); INSERT INTO `tb_genre` VALUES (260, 8); INSERT INTO `tb_genre` VALUES (261, 8); INSERT INTO `tb_genre` VALUES (262, 8); INSERT INTO `tb_genre` VALUES (263, 8); INSERT INTO `tb_genre` VALUES (264, 8); INSERT INTO `tb_genre` VALUES (265, 8); INSERT INTO `tb_genre` VALUES (266, 8); INSERT INTO `tb_genre` VALUES (279, 8); INSERT INTO `tb_genre` VALUES (282, 8); INSERT INTO `tb_genre` VALUES (284, 8); INSERT INTO `tb_genre` VALUES (285, 8); INSERT INTO `tb_genre` VALUES (286, 8); INSERT INTO `tb_genre` VALUES (288, 8); INSERT INTO `tb_genre` VALUES (352, 8); INSERT INTO `tb_genre` VALUES (410, 8); INSERT INTO `tb_genre` VALUES (429, 8); INSERT INTO `tb_genre` VALUES (490, 8); INSERT INTO `tb_genre` VALUES (68, 9); INSERT INTO `tb_genre` VALUES (298, 9); INSERT INTO `tb_genre` VALUES (466, 10); INSERT INTO `tb_genre` VALUES (2, 11); INSERT INTO `tb_genre` VALUES (3, 11); INSERT INTO `tb_genre` VALUES (4, 11); INSERT INTO `tb_genre` VALUES (6, 11); INSERT INTO `tb_genre` VALUES (7, 11); INSERT INTO `tb_genre` VALUES (8, 11); INSERT INTO `tb_genre` VALUES (9, 11); INSERT INTO `tb_genre` VALUES (10, 11); INSERT INTO `tb_genre` VALUES (11, 11); INSERT INTO `tb_genre` VALUES (12, 11); INSERT INTO `tb_genre` VALUES (13, 11); INSERT INTO `tb_genre` VALUES (14, 11); INSERT INTO `tb_genre` VALUES (15, 11); INSERT INTO `tb_genre` VALUES (16, 11); INSERT INTO `tb_genre` VALUES (17, 11); INSERT INTO `tb_genre` VALUES (18, 11); INSERT INTO `tb_genre` VALUES (19, 11); INSERT INTO `tb_genre` VALUES (20, 11); INSERT INTO `tb_genre` VALUES (21, 11); INSERT INTO `tb_genre` VALUES (22, 11); INSERT INTO `tb_genre` VALUES (23, 11); INSERT INTO `tb_genre` VALUES (24, 11); INSERT INTO `tb_genre` VALUES (25, 11); INSERT INTO `tb_genre` VALUES (26, 11); INSERT INTO `tb_genre` VALUES (27, 11); INSERT INTO `tb_genre` VALUES (28, 11); INSERT INTO `tb_genre` VALUES (29, 11); INSERT INTO `tb_genre` VALUES (30, 11); INSERT INTO `tb_genre` VALUES (31, 11); INSERT INTO `tb_genre` VALUES (32, 11); INSERT INTO `tb_genre` VALUES (33, 11); INSERT INTO `tb_genre` VALUES (34, 11); INSERT INTO `tb_genre` VALUES (35, 11); INSERT INTO `tb_genre` VALUES (36, 11); INSERT INTO `tb_genre` VALUES (37, 11); INSERT INTO `tb_genre` VALUES (38, 11); INSERT INTO `tb_genre` VALUES (39, 11); INSERT INTO `tb_genre` VALUES (41, 11); INSERT INTO `tb_genre` VALUES (42, 11); INSERT INTO `tb_genre` VALUES (55, 11); INSERT INTO `tb_genre` VALUES (56, 11); INSERT INTO `tb_genre` VALUES (57, 11); INSERT INTO `tb_genre` VALUES (58, 11); INSERT INTO `tb_genre` VALUES (59, 11); INSERT INTO `tb_genre` VALUES (60, 11); INSERT INTO `tb_genre` VALUES (61, 11); INSERT INTO `tb_genre` VALUES (65, 11); INSERT INTO `tb_genre` VALUES (70, 11); INSERT INTO `tb_genre` VALUES (71, 11); INSERT INTO `tb_genre` VALUES (72, 11); INSERT INTO `tb_genre` VALUES (73, 11); INSERT INTO `tb_genre` VALUES (75, 11); INSERT INTO `tb_genre` VALUES (76, 11); INSERT INTO `tb_genre` VALUES (77, 11); INSERT INTO `tb_genre` VALUES (78, 11); INSERT INTO `tb_genre` VALUES (79, 11); INSERT INTO `tb_genre` VALUES (80, 11); INSERT INTO `tb_genre` VALUES (81, 11); INSERT INTO `tb_genre` VALUES (82, 11); INSERT INTO `tb_genre` VALUES (84, 11); INSERT INTO `tb_genre` VALUES (85, 11); INSERT INTO `tb_genre` VALUES (86, 11); INSERT INTO `tb_genre` VALUES (87, 11); INSERT INTO `tb_genre` VALUES (88, 11); INSERT INTO `tb_genre` VALUES (89, 11); INSERT INTO `tb_genre` VALUES (90, 11); INSERT INTO `tb_genre` VALUES (91, 11); INSERT INTO `tb_genre` VALUES (92, 11); INSERT INTO `tb_genre` VALUES (93, 11); INSERT INTO `tb_genre` VALUES (95, 11); INSERT INTO `tb_genre` VALUES (96, 11); INSERT INTO `tb_genre` VALUES (97, 11); INSERT INTO `tb_genre` VALUES (98, 11); INSERT INTO `tb_genre` VALUES (99, 11); INSERT INTO `tb_genre` VALUES (100, 11); INSERT INTO `tb_genre` VALUES (101, 11); INSERT INTO `tb_genre` VALUES (102, 11); INSERT INTO `tb_genre` VALUES (103, 11); INSERT INTO `tb_genre` VALUES (104, 11); INSERT INTO `tb_genre` VALUES (105, 11); INSERT INTO `tb_genre` VALUES (106, 11); INSERT INTO `tb_genre` VALUES (107, 11); INSERT INTO `tb_genre` VALUES (108, 11); INSERT INTO `tb_genre` VALUES (109, 11); INSERT INTO `tb_genre` VALUES (110, 11); INSERT INTO `tb_genre` VALUES (111, 11); INSERT INTO `tb_genre` VALUES (112, 11); INSERT INTO `tb_genre` VALUES (113, 11); INSERT INTO `tb_genre` VALUES (114, 11); INSERT INTO `tb_genre` VALUES (115, 11); INSERT INTO `tb_genre` VALUES (116, 11); INSERT INTO `tb_genre` VALUES (117, 11); INSERT INTO `tb_genre` VALUES (118, 11); INSERT INTO `tb_genre` VALUES (119, 11); INSERT INTO `tb_genre` VALUES (120, 11); INSERT INTO `tb_genre` VALUES (121, 11); INSERT INTO `tb_genre` VALUES (122, 11); INSERT INTO `tb_genre` VALUES (123, 11); INSERT INTO `tb_genre` VALUES (124, 11); INSERT INTO `tb_genre` VALUES (125, 11); INSERT INTO `tb_genre` VALUES (126, 11); INSERT INTO `tb_genre` VALUES (127, 11); INSERT INTO `tb_genre` VALUES (128, 11); INSERT INTO `tb_genre` VALUES (130, 11); INSERT INTO `tb_genre` VALUES (152, 11); INSERT INTO `tb_genre` VALUES (153, 11); INSERT INTO `tb_genre` VALUES (154, 11); INSERT INTO `tb_genre` VALUES (155, 11); INSERT INTO `tb_genre` VALUES (156, 11); INSERT INTO `tb_genre` VALUES (157, 11); INSERT INTO `tb_genre` VALUES (158, 11); INSERT INTO `tb_genre` VALUES (159, 11); INSERT INTO `tb_genre` VALUES (160, 11); INSERT INTO `tb_genre` VALUES (161, 11); INSERT INTO `tb_genre` VALUES (162, 11); INSERT INTO `tb_genre` VALUES (163, 11); INSERT INTO `tb_genre` VALUES (164, 11); INSERT INTO `tb_genre` VALUES (165, 11); INSERT INTO `tb_genre` VALUES (166, 11); INSERT INTO `tb_genre` VALUES (167, 11); INSERT INTO `tb_genre` VALUES (169, 11); INSERT INTO `tb_genre` VALUES (181, 11); INSERT INTO `tb_genre` VALUES (182, 11); INSERT INTO `tb_genre` VALUES (183, 11); INSERT INTO `tb_genre` VALUES (184, 11); INSERT INTO `tb_genre` VALUES (185, 11); INSERT INTO `tb_genre` VALUES (186, 11); INSERT INTO `tb_genre` VALUES (188, 11); INSERT INTO `tb_genre` VALUES (189, 11); INSERT INTO `tb_genre` VALUES (190, 11); INSERT INTO `tb_genre` VALUES (191, 11); INSERT INTO `tb_genre` VALUES (192, 11); INSERT INTO `tb_genre` VALUES (193, 11); INSERT INTO `tb_genre` VALUES (194, 11); INSERT INTO `tb_genre` VALUES (196, 11); INSERT INTO `tb_genre` VALUES (197, 11); INSERT INTO `tb_genre` VALUES (199, 11); INSERT INTO `tb_genre` VALUES (200, 11); INSERT INTO `tb_genre` VALUES (202, 11); INSERT INTO `tb_genre` VALUES (205, 11); INSERT INTO `tb_genre` VALUES (207, 11); INSERT INTO `tb_genre` VALUES (208, 11); INSERT INTO `tb_genre` VALUES (210, 11); INSERT INTO `tb_genre` VALUES (211, 11); INSERT INTO `tb_genre` VALUES (212, 11); INSERT INTO `tb_genre` VALUES (213, 11); INSERT INTO `tb_genre` VALUES (214, 11); INSERT INTO `tb_genre` VALUES (215, 11); INSERT INTO `tb_genre` VALUES (216, 11); INSERT INTO `tb_genre` VALUES (217, 11); INSERT INTO `tb_genre` VALUES (218, 11); INSERT INTO `tb_genre` VALUES (219, 11); INSERT INTO `tb_genre` VALUES (220, 11); INSERT INTO `tb_genre` VALUES (221, 11); INSERT INTO `tb_genre` VALUES (222, 11); INSERT INTO `tb_genre` VALUES (223, 11); INSERT INTO `tb_genre` VALUES (224, 11); INSERT INTO `tb_genre` VALUES (231, 11); INSERT INTO `tb_genre` VALUES (232, 11); INSERT INTO `tb_genre` VALUES (233, 11); INSERT INTO `tb_genre` VALUES (234, 11); INSERT INTO `tb_genre` VALUES (235, 11); INSERT INTO `tb_genre` VALUES (236, 11); INSERT INTO `tb_genre` VALUES (237, 11); INSERT INTO `tb_genre` VALUES (238, 11); INSERT INTO `tb_genre` VALUES (239, 11); INSERT INTO `tb_genre` VALUES (240, 11); INSERT INTO `tb_genre` VALUES (241, 11); INSERT INTO `tb_genre` VALUES (242, 11); INSERT INTO `tb_genre` VALUES (243, 11); INSERT INTO `tb_genre` VALUES (244, 11); INSERT INTO `tb_genre` VALUES (245, 11); INSERT INTO `tb_genre` VALUES (246, 11); INSERT INTO `tb_genre` VALUES (247, 11); INSERT INTO `tb_genre` VALUES (248, 11); INSERT INTO `tb_genre` VALUES (249, 11); INSERT INTO `tb_genre` VALUES (250, 11); INSERT INTO `tb_genre` VALUES (251, 11); INSERT INTO `tb_genre` VALUES (252, 11); INSERT INTO `tb_genre` VALUES (253, 11); INSERT INTO `tb_genre` VALUES (254, 11); INSERT INTO `tb_genre` VALUES (255, 11); INSERT INTO `tb_genre` VALUES (256, 11); INSERT INTO `tb_genre` VALUES (257, 11); INSERT INTO `tb_genre` VALUES (258, 11); INSERT INTO `tb_genre` VALUES (259, 11); INSERT INTO `tb_genre` VALUES (260, 11); INSERT INTO `tb_genre` VALUES (261, 11); INSERT INTO `tb_genre` VALUES (262, 11); INSERT INTO `tb_genre` VALUES (263, 11); INSERT INTO `tb_genre` VALUES (264, 11); INSERT INTO `tb_genre` VALUES (265, 11); INSERT INTO `tb_genre` VALUES (266, 11); INSERT INTO `tb_genre` VALUES (280, 11); INSERT INTO `tb_genre` VALUES (281, 11); INSERT INTO `tb_genre` VALUES (283, 11); INSERT INTO `tb_genre` VALUES (286, 11); INSERT INTO `tb_genre` VALUES (287, 11); INSERT INTO `tb_genre` VALUES (289, 11); INSERT INTO `tb_genre` VALUES (290, 11); INSERT INTO `tb_genre` VALUES (291, 11); INSERT INTO `tb_genre` VALUES (301, 11); INSERT INTO `tb_genre` VALUES (302, 11); INSERT INTO `tb_genre` VALUES (303, 11); INSERT INTO `tb_genre` VALUES (304, 11); INSERT INTO `tb_genre` VALUES (305, 11); INSERT INTO `tb_genre` VALUES (306, 11); INSERT INTO `tb_genre` VALUES (307, 11); INSERT INTO `tb_genre` VALUES (308, 11); INSERT INTO `tb_genre` VALUES (310, 11); INSERT INTO `tb_genre` VALUES (314, 11); INSERT INTO `tb_genre` VALUES (316, 11); INSERT INTO `tb_genre` VALUES (317, 11); INSERT INTO `tb_genre` VALUES (318, 11); INSERT INTO `tb_genre` VALUES (319, 11); INSERT INTO `tb_genre` VALUES (320, 11); INSERT INTO `tb_genre` VALUES (321, 11); INSERT INTO `tb_genre` VALUES (322, 11); INSERT INTO `tb_genre` VALUES (323, 11); INSERT INTO `tb_genre` VALUES (324, 11); INSERT INTO `tb_genre` VALUES (326, 11); INSERT INTO `tb_genre` VALUES (327, 11); INSERT INTO `tb_genre` VALUES (328, 11); INSERT INTO `tb_genre` VALUES (329, 11); INSERT INTO `tb_genre` VALUES (330, 11); INSERT INTO `tb_genre` VALUES (331, 11); INSERT INTO `tb_genre` VALUES (332, 11); INSERT INTO `tb_genre` VALUES (333, 11); INSERT INTO `tb_genre` VALUES (334, 11); INSERT INTO `tb_genre` VALUES (335, 11); INSERT INTO `tb_genre` VALUES (337, 11); INSERT INTO `tb_genre` VALUES (338, 11); INSERT INTO `tb_genre` VALUES (339, 11); INSERT INTO `tb_genre` VALUES (340, 11); INSERT INTO `tb_genre` VALUES (341, 11); INSERT INTO `tb_genre` VALUES (342, 11); INSERT INTO `tb_genre` VALUES (343, 11); INSERT INTO `tb_genre` VALUES (344, 11); INSERT INTO `tb_genre` VALUES (345, 11); INSERT INTO `tb_genre` VALUES (346, 11); INSERT INTO `tb_genre` VALUES (348, 11); INSERT INTO `tb_genre` VALUES (349, 11); INSERT INTO `tb_genre` VALUES (353, 11); INSERT INTO `tb_genre` VALUES (358, 11); INSERT INTO `tb_genre` VALUES (359, 11); INSERT INTO `tb_genre` VALUES (360, 11); INSERT INTO `tb_genre` VALUES (362, 11); INSERT INTO `tb_genre` VALUES (369, 11); INSERT INTO `tb_genre` VALUES (370, 11); INSERT INTO `tb_genre` VALUES (371, 11); INSERT INTO `tb_genre` VALUES (372, 11); INSERT INTO `tb_genre` VALUES (373, 11); INSERT INTO `tb_genre` VALUES (374, 11); INSERT INTO `tb_genre` VALUES (375, 11); INSERT INTO `tb_genre` VALUES (376, 11); INSERT INTO `tb_genre` VALUES (377, 11); INSERT INTO `tb_genre` VALUES (378, 11); INSERT INTO `tb_genre` VALUES (379, 11); INSERT INTO `tb_genre` VALUES (380, 11); INSERT INTO `tb_genre` VALUES (381, 11); INSERT INTO `tb_genre` VALUES (382, 11); INSERT INTO `tb_genre` VALUES (383, 11); INSERT INTO `tb_genre` VALUES (384, 11); INSERT INTO `tb_genre` VALUES (385, 11); INSERT INTO `tb_genre` VALUES (386, 11); INSERT INTO `tb_genre` VALUES (387, 11); INSERT INTO `tb_genre` VALUES (395, 11); INSERT INTO `tb_genre` VALUES (402, 11); INSERT INTO `tb_genre` VALUES (403, 11); INSERT INTO `tb_genre` VALUES (404, 11); INSERT INTO `tb_genre` VALUES (529, 11); INSERT INTO `tb_genre` VALUES (56, 12); INSERT INTO `tb_genre` VALUES (59, 12); INSERT INTO `tb_genre` VALUES (63, 12); INSERT INTO `tb_genre` VALUES (64, 12); INSERT INTO `tb_genre` VALUES (69, 12); INSERT INTO `tb_genre` VALUES (71, 12); INSERT INTO `tb_genre` VALUES (74, 12); INSERT INTO `tb_genre` VALUES (81, 12); INSERT INTO `tb_genre` VALUES (83, 12); INSERT INTO `tb_genre` VALUES (86, 12); INSERT INTO `tb_genre` VALUES (94, 12); INSERT INTO `tb_genre` VALUES (100, 12); INSERT INTO `tb_genre` VALUES (153, 12); INSERT INTO `tb_genre` VALUES (158, 12); INSERT INTO `tb_genre` VALUES (159, 12); INSERT INTO `tb_genre` VALUES (160, 12); INSERT INTO `tb_genre` VALUES (175, 12); INSERT INTO `tb_genre` VALUES (192, 12); INSERT INTO `tb_genre` VALUES (198, 12); INSERT INTO `tb_genre` VALUES (203, 12); INSERT INTO `tb_genre` VALUES (204, 12); INSERT INTO `tb_genre` VALUES (206, 12); INSERT INTO `tb_genre` VALUES (208, 12); INSERT INTO `tb_genre` VALUES (209, 12); INSERT INTO `tb_genre` VALUES (210, 12); INSERT INTO `tb_genre` VALUES (211, 12); INSERT INTO `tb_genre` VALUES (212, 12); INSERT INTO `tb_genre` VALUES (225, 12); INSERT INTO `tb_genre` VALUES (267, 12); INSERT INTO `tb_genre` VALUES (268, 12); INSERT INTO `tb_genre` VALUES (269, 12); INSERT INTO `tb_genre` VALUES (270, 12); INSERT INTO `tb_genre` VALUES (275, 12); INSERT INTO `tb_genre` VALUES (282, 12); INSERT INTO `tb_genre` VALUES (284, 12); INSERT INTO `tb_genre` VALUES (296, 12); INSERT INTO `tb_genre` VALUES (297, 12); INSERT INTO `tb_genre` VALUES (299, 12); INSERT INTO `tb_genre` VALUES (301, 12); INSERT INTO `tb_genre` VALUES (304, 12); INSERT INTO `tb_genre` VALUES (309, 12); INSERT INTO `tb_genre` VALUES (310, 12); INSERT INTO `tb_genre` VALUES (334, 12); INSERT INTO `tb_genre` VALUES (337, 12); INSERT INTO `tb_genre` VALUES (345, 12); INSERT INTO `tb_genre` VALUES (346, 12); INSERT INTO `tb_genre` VALUES (347, 12); INSERT INTO `tb_genre` VALUES (348, 12); INSERT INTO `tb_genre` VALUES (349, 12); INSERT INTO `tb_genre` VALUES (350, 12); INSERT INTO `tb_genre` VALUES (351, 12); INSERT INTO `tb_genre` VALUES (353, 12); INSERT INTO `tb_genre` VALUES (354, 12); INSERT INTO `tb_genre` VALUES (355, 12); INSERT INTO `tb_genre` VALUES (356, 12); INSERT INTO `tb_genre` VALUES (357, 12); INSERT INTO `tb_genre` VALUES (358, 12); INSERT INTO `tb_genre` VALUES (359, 12); INSERT INTO `tb_genre` VALUES (360, 12); INSERT INTO `tb_genre` VALUES (361, 12); INSERT INTO `tb_genre` VALUES (362, 12); INSERT INTO `tb_genre` VALUES (364, 12); INSERT INTO `tb_genre` VALUES (365, 12); INSERT INTO `tb_genre` VALUES (366, 12); INSERT INTO `tb_genre` VALUES (367, 12); INSERT INTO `tb_genre` VALUES (368, 12); INSERT INTO `tb_genre` VALUES (370, 12); INSERT INTO `tb_genre` VALUES (373, 12); INSERT INTO `tb_genre` VALUES (378, 12); INSERT INTO `tb_genre` VALUES (381, 12); INSERT INTO `tb_genre` VALUES (384, 12); INSERT INTO `tb_genre` VALUES (386, 12); INSERT INTO `tb_genre` VALUES (392, 12); INSERT INTO `tb_genre` VALUES (404, 12); INSERT INTO `tb_genre` VALUES (415, 12); INSERT INTO `tb_genre` VALUES (419, 12); INSERT INTO `tb_genre` VALUES (421, 12); INSERT INTO `tb_genre` VALUES (440, 12); INSERT INTO `tb_genre` VALUES (441, 12); INSERT INTO `tb_genre` VALUES (450, 12); INSERT INTO `tb_genre` VALUES (464, 12); INSERT INTO `tb_genre` VALUES (465, 12); INSERT INTO `tb_genre` VALUES (43, 13); INSERT INTO `tb_genre` VALUES (44, 13); INSERT INTO `tb_genre` VALUES (45, 13); INSERT INTO `tb_genre` VALUES (46, 13); INSERT INTO `tb_genre` VALUES (47, 13); INSERT INTO `tb_genre` VALUES (48, 13); INSERT INTO `tb_genre` VALUES (49, 13); INSERT INTO `tb_genre` VALUES (50, 13); INSERT INTO `tb_genre` VALUES (51, 13); INSERT INTO `tb_genre` VALUES (52, 13); INSERT INTO `tb_genre` VALUES (53, 13); INSERT INTO `tb_genre` VALUES (134, 13); INSERT INTO `tb_genre` VALUES (139, 13); INSERT INTO `tb_genre` VALUES (148, 13); INSERT INTO `tb_genre` VALUES (426, 13); INSERT INTO `tb_genre` VALUES (429, 13); INSERT INTO `tb_genre` VALUES (449, 13); INSERT INTO `tb_genre` VALUES (461, 13); INSERT INTO `tb_genre` VALUES (496, 13); INSERT INTO `tb_genre` VALUES (498, 13); INSERT INTO `tb_genre` VALUES (6, 14); INSERT INTO `tb_genre` VALUES (7, 14); INSERT INTO `tb_genre` VALUES (8, 14); INSERT INTO `tb_genre` VALUES (9, 14); INSERT INTO `tb_genre` VALUES (10, 14); INSERT INTO `tb_genre` VALUES (11, 14); INSERT INTO `tb_genre` VALUES (12, 14); INSERT INTO `tb_genre` VALUES (13, 14); INSERT INTO `tb_genre` VALUES (14, 14); INSERT INTO `tb_genre` VALUES (16, 14); INSERT INTO `tb_genre` VALUES (18, 14); INSERT INTO `tb_genre` VALUES (19, 14); INSERT INTO `tb_genre` VALUES (20, 14); INSERT INTO `tb_genre` VALUES (22, 14); INSERT INTO `tb_genre` VALUES (31, 14); INSERT INTO `tb_genre` VALUES (37, 14); INSERT INTO `tb_genre` VALUES (38, 14); INSERT INTO `tb_genre` VALUES (193, 14); INSERT INTO `tb_genre` VALUES (200, 14); INSERT INTO `tb_genre` VALUES (201, 14); INSERT INTO `tb_genre` VALUES (202, 14); INSERT INTO `tb_genre` VALUES (231, 14); INSERT INTO `tb_genre` VALUES (233, 14); INSERT INTO `tb_genre` VALUES (234, 14); INSERT INTO `tb_genre` VALUES (235, 14); INSERT INTO `tb_genre` VALUES (237, 14); INSERT INTO `tb_genre` VALUES (238, 14); INSERT INTO `tb_genre` VALUES (240, 14); INSERT INTO `tb_genre` VALUES (244, 14); INSERT INTO `tb_genre` VALUES (247, 14); INSERT INTO `tb_genre` VALUES (249, 14); INSERT INTO `tb_genre` VALUES (251, 14); INSERT INTO `tb_genre` VALUES (254, 14); INSERT INTO `tb_genre` VALUES (256, 14); INSERT INTO `tb_genre` VALUES (258, 14); INSERT INTO `tb_genre` VALUES (259, 14); INSERT INTO `tb_genre` VALUES (260, 14); INSERT INTO `tb_genre` VALUES (261, 14); INSERT INTO `tb_genre` VALUES (262, 14); INSERT INTO `tb_genre` VALUES (264, 14); INSERT INTO `tb_genre` VALUES (265, 14); INSERT INTO `tb_genre` VALUES (266, 14); INSERT INTO `tb_genre` VALUES (352, 14); INSERT INTO `tb_genre` VALUES (356, 14); INSERT INTO `tb_genre` VALUES (361, 14); INSERT INTO `tb_genre` VALUES (435, 14); INSERT INTO `tb_genre` VALUES (454, 14); INSERT INTO `tb_genre` VALUES (529, 14); INSERT INTO `tb_genre` VALUES (5, 15); INSERT INTO `tb_genre` VALUES (40, 15); INSERT INTO `tb_genre` VALUES (54, 15); INSERT INTO `tb_genre` VALUES (66, 15); INSERT INTO `tb_genre` VALUES (67, 15); INSERT INTO `tb_genre` VALUES (133, 15); INSERT INTO `tb_genre` VALUES (274, 15); INSERT INTO `tb_genre` VALUES (276, 15); INSERT INTO `tb_genre` VALUES (388, 15); INSERT INTO `tb_genre` VALUES (389, 15); INSERT INTO `tb_genre` VALUES (411, 15); INSERT INTO `tb_genre` VALUES (412, 15); INSERT INTO `tb_genre` VALUES (413, 15); INSERT INTO `tb_genre` VALUES (417, 15); INSERT INTO `tb_genre` VALUES (418, 15); INSERT INTO `tb_genre` VALUES (423, 15); INSERT INTO `tb_genre` VALUES (425, 15); INSERT INTO `tb_genre` VALUES (439, 15); INSERT INTO `tb_genre` VALUES (458, 15); INSERT INTO `tb_genre` VALUES (459, 15); INSERT INTO `tb_genre` VALUES (460, 15); INSERT INTO `tb_genre` VALUES (463, 15); INSERT INTO `tb_genre` VALUES (486, 15); INSERT INTO `tb_genre` VALUES (487, 15); INSERT INTO `tb_genre` VALUES (491, 15); INSERT INTO `tb_genre` VALUES (500, 15); INSERT INTO `tb_genre` VALUES (299, 16); INSERT INTO `tb_genre` VALUES (176, 17); INSERT INTO `tb_genre` VALUES (177, 17); INSERT INTO `tb_genre` VALUES (178, 17); INSERT INTO `tb_genre` VALUES (179, 17); INSERT INTO `tb_genre` VALUES (311, 17); INSERT INTO `tb_genre` VALUES (312, 17); INSERT INTO `tb_genre` VALUES (313, 17); INSERT INTO `tb_genre` VALUES (422, 17); INSERT INTO `tb_genre` VALUES (442, 17); INSERT INTO `tb_genre` VALUES (443, 17); INSERT INTO `tb_genre` VALUES (444, 17); INSERT INTO `tb_genre` VALUES (445, 17); INSERT INTO `tb_genre` VALUES (446, 17); INSERT INTO `tb_genre` VALUES (447, 17); -- ---------------------------- -- Table structure for tb_playlist -- ---------------------------- DROP TABLE IF EXISTS `tb_playlist`; CREATE TABLE `tb_playlist` ( `id` bigint(0) NOT NULL AUTO_INCREMENT COMMENT '歌单 id', `title` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '歌单标题', `cover_url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '歌单封面', `introduction` text CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL COMMENT '歌单简介', `style` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '歌单风格', PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 24 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of tb_playlist -- ---------------------------- INSERT INTO `tb_playlist` VALUES (2, '朋克摇滚 | 简单直接的原始呐喊', 'http://localhost:9000/vibe-music-data/playlists/c2590654-e457-4ab8-b8cd-3d2af7eca80a-blob', '朋克起源于1960年代的车库摇滚,诞生于1970年代中后期,创作者因为拒绝1970年代主流摇滚的过度感知,转而制作短且快节奏的歌曲。', '朋克'); INSERT INTO `tb_playlist` VALUES (3, '经典回顾:怀旧粤语经典老歌', 'http://localhost:9000/vibe-music-data/playlists/efd336c0-8883-47ec-b38b-71cb92c6b0fa-blob', '那些辗转反侧的夜晚,粤语抒情歌陪我度过,它防佛有灵性,知晓你我心事,如一杯长岛冰茶让你我安睡,它更是有画面,往事...', '粤语流行'); INSERT INTO `tb_playlist` VALUES (4, '国风纯音乐精选集', 'http://localhost:9000/vibe-music-data/playlists/5b67d810-7e21-4064-86ae-a1760a3d674d-blob', '国风音乐精选集', '国风'); INSERT INTO `tb_playlist` VALUES (5, '【电子】节奏感电子音乐', 'http://localhost:9000/vibe-music-data/playlists/4b6d1894-4ccc-4d3c-97ed-aac14e88a608-blob', '各种风格都汇集在一起了,只挑精选,各种史诗级别的震撼你的心灵。', '电子'); INSERT INTO `tb_playlist` VALUES (6, 'Afro/Dancehall【非洲×牙买加狂热节拍】', 'http://localhost:9000/vibe-music-data/playlists/6a84926a-48af-4370-aaaa-bb52a8f539d4-blob', '往下翻翻有更多好听的音乐哦 有很多风格,都放在这个歌单里了 近几年收集的dancehall和afro的舞蹈音乐 持续更新中……', '非洲节拍'); INSERT INTO `tb_playlist` VALUES (7, '节奏控 | 嘻哈 说唱', 'http://localhost:9000/vibe-music-data/playlists/97dfcac8-504c-4f0d-930d-b80e41f25316-blob', 'Rap is a black slang word, which is equivalent to \"talking\". In Chinese, it means rap, which is a special form of singing with rhy...', '嘻哈说唱'); INSERT INTO `tb_playlist` VALUES (8, '【韩流】韩国流行热门歌曲', 'http://localhost:9000/vibe-music-data/playlists/022ae029-ba8e-4dab-b2fc-36a85c271512-blob', '韩国合唱团数不胜数 有些虽然解散 但仍给我们留下了很多美好回忆 有些刚刚出道 正向着“一位”努力前进 有些天团正站在世界的舞台 散发着无穷的魅力 不论你什么职业 任何年龄 不论你喜欢什么团队 深深地...', '韩国流行'); INSERT INTO `tb_playlist` VALUES (9, '世界级古典钢琴曲音乐珍藏', 'http://localhost:9000/vibe-music-data/playlists/6959d662-dc4b-4063-9df1-36ba0c19255a-blob', '钢琴,乐器之皇,钢琴文化发展至今,已经有不计其数的脍炙人口的钢琴曲流传下来,其中一些流传至今,仍是社会上流人士的...', '古典'); INSERT INTO `tb_playlist` VALUES (10, '欧美氛围R&B | 听节奏布鲁斯才是正经事', 'http://localhost:9000/vibe-music-data/playlists/8c74ab2f-9053-4ffc-b15a-169c2234d5a3-blob', '节奏布鲁斯(英语:Rhythm and Blues,简称:R&B或RnB,中国台湾、中国港澳、马新称作节奏蓝调 ),又称节奏怨曲。', '节奏布鲁斯'); INSERT INTO `tb_playlist` VALUES (11, '那些只听前奏就会上瘾的华语流行歌曲', 'http://localhost:9000/vibe-music-data/playlists/c2d1ebca-5af9-4d3f-947d-c67ce8193712-blob', '趁你现在还有时间 仅你自己最大的努力 努力做成你最想做的那件事 成为你最想成为的那种人 过着你最想过的那种生活 ', '华语流行'); INSERT INTO `tb_playlist` VALUES (12, '国风流行|路过山水千城,与古风相伴', 'http://localhost:9000/vibe-music-data/playlists/d1bfa550-8b71-4a52-a2fe-73cc416c08d7-blob', '古风音乐自诞生以来,其隽永的歌词、典雅的曲调被视为 21 世纪的一种新音乐风格,由此受到许多听众的喜爱。', '国风流行'); INSERT INTO `tb_playlist` VALUES (13, '摇滚专属 | 为你定制的摇滚必听曲', 'http://localhost:9000/vibe-music-data/playlists/cb6163c5-bc56-4ac3-819d-44ff1ba83ca5-blob', '经典 摇滚 另类 迷幻 独立 …… 热爱摇滚乐 离开世俗烦恼,在音乐中狂欢…… 生活中应该有音乐……', '摇滚'); INSERT INTO `tb_playlist` VALUES (14, '轻音乐|安静温柔|缓解压力|舒适睡眠', 'http://localhost:9000/vibe-music-data/playlists/04863936-7e68-477f-822f-544d07e32bea-blob', '*偏安静.治愈.温柔.伤感.孤独的轻音乐!很适合回忆! *愿这些旋律能治愈你! *早睡其实不会错过重要的消息哦! *', '轻音乐'); INSERT INTO `tb_playlist` VALUES (15, '『日本ACG/流行』感受日语音乐的魅力', 'http://localhost:9000/vibe-music-data/playlists/26a09113-1f0a-4fbe-a12a-96291c4dacf8-blob', '日本流行音乐精选集', '日本流行'); INSERT INTO `tb_playlist` VALUES (16, '原声带 精选', 'http://localhost:9000/vibe-music-data/playlists/c8c0e239-206d-43c9-818b-1f48e8f79cc6-blob', '原声带音乐精选集', '原声带'); INSERT INTO `tb_playlist` VALUES (17, '欧美乡村音乐[内心的净土]', 'http://localhost:9000/vibe-music-data/playlists/a3620a49-c07e-4d46-9cb5-ff0be30f9bba-blob', '古老的生命,比树龄更久远 比群山年轻 像和风一样慢慢生长 乡村路,带我回家 围绕着她的,是我所有记忆。', '乡村'); INSERT INTO `tb_playlist` VALUES (18, '「欧美流行」听完感觉人生都亮堂起来了', 'http://localhost:9000/vibe-music-data/playlists/f6010c21-a2c3-4c11-a24e-b82a3f3a36e3-blob', '旋律控,踩点,耳熟能详的你绝对听过的那些英文流行歌曲。', '欧美流行'); -- ---------------------------- -- Table structure for tb_playlist_binding -- ---------------------------- DROP TABLE IF EXISTS `tb_playlist_binding`; CREATE TABLE `tb_playlist_binding` ( `playlist_id` bigint(0) NOT NULL COMMENT '歌单 id', `song_id` bigint(0) NOT NULL COMMENT '歌曲 id', PRIMARY KEY (`playlist_id`, `song_id`) USING BTREE, INDEX `fk_playlist_binding_song_id`(`song_id`) USING BTREE, CONSTRAINT `fk_playlist_binding_playlist_id` FOREIGN KEY (`playlist_id`) REFERENCES `tb_playlist` (`id`) ON DELETE CASCADE ON UPDATE RESTRICT, CONSTRAINT `fk_playlist_binding_song_id` FOREIGN KEY (`song_id`) REFERENCES `tb_song` (`id`) ON DELETE CASCADE ON UPDATE RESTRICT ) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of tb_playlist_binding -- ---------------------------- INSERT INTO `tb_playlist_binding` VALUES (18, 2); INSERT INTO `tb_playlist_binding` VALUES (18, 3); INSERT INTO `tb_playlist_binding` VALUES (13, 4); INSERT INTO `tb_playlist_binding` VALUES (18, 4); INSERT INTO `tb_playlist_binding` VALUES (14, 5); INSERT INTO `tb_playlist_binding` VALUES (10, 6); INSERT INTO `tb_playlist_binding` VALUES (18, 6); INSERT INTO `tb_playlist_binding` VALUES (10, 7); INSERT INTO `tb_playlist_binding` VALUES (18, 7); INSERT INTO `tb_playlist_binding` VALUES (10, 8); INSERT INTO `tb_playlist_binding` VALUES (18, 8); INSERT INTO `tb_playlist_binding` VALUES (10, 9); INSERT INTO `tb_playlist_binding` VALUES (18, 9); INSERT INTO `tb_playlist_binding` VALUES (10, 10); INSERT INTO `tb_playlist_binding` VALUES (18, 10); INSERT INTO `tb_playlist_binding` VALUES (10, 11); INSERT INTO `tb_playlist_binding` VALUES (18, 11); INSERT INTO `tb_playlist_binding` VALUES (10, 12); INSERT INTO `tb_playlist_binding` VALUES (18, 12); INSERT INTO `tb_playlist_binding` VALUES (10, 13); INSERT INTO `tb_playlist_binding` VALUES (18, 13); INSERT INTO `tb_playlist_binding` VALUES (10, 14); INSERT INTO `tb_playlist_binding` VALUES (18, 14); INSERT INTO `tb_playlist_binding` VALUES (18, 15); INSERT INTO `tb_playlist_binding` VALUES (10, 16); INSERT INTO `tb_playlist_binding` VALUES (18, 16); INSERT INTO `tb_playlist_binding` VALUES (18, 17); INSERT INTO `tb_playlist_binding` VALUES (10, 18); INSERT INTO `tb_playlist_binding` VALUES (18, 18); INSERT INTO `tb_playlist_binding` VALUES (10, 19); INSERT INTO `tb_playlist_binding` VALUES (18, 19); INSERT INTO `tb_playlist_binding` VALUES (10, 20); INSERT INTO `tb_playlist_binding` VALUES (18, 20); INSERT INTO `tb_playlist_binding` VALUES (18, 21); INSERT INTO `tb_playlist_binding` VALUES (10, 22); INSERT INTO `tb_playlist_binding` VALUES (18, 22); INSERT INTO `tb_playlist_binding` VALUES (18, 23); INSERT INTO `tb_playlist_binding` VALUES (18, 24); INSERT INTO `tb_playlist_binding` VALUES (18, 25); INSERT INTO `tb_playlist_binding` VALUES (18, 26); INSERT INTO `tb_playlist_binding` VALUES (18, 27); INSERT INTO `tb_playlist_binding` VALUES (18, 28); INSERT INTO `tb_playlist_binding` VALUES (18, 29); INSERT INTO `tb_playlist_binding` VALUES (18, 30); INSERT INTO `tb_playlist_binding` VALUES (10, 31); INSERT INTO `tb_playlist_binding` VALUES (18, 31); INSERT INTO `tb_playlist_binding` VALUES (18, 32); INSERT INTO `tb_playlist_binding` VALUES (18, 33); INSERT INTO `tb_playlist_binding` VALUES (7, 34); INSERT INTO `tb_playlist_binding` VALUES (18, 34); INSERT INTO `tb_playlist_binding` VALUES (18, 35); INSERT INTO `tb_playlist_binding` VALUES (18, 36); INSERT INTO `tb_playlist_binding` VALUES (10, 37); INSERT INTO `tb_playlist_binding` VALUES (18, 37); INSERT INTO `tb_playlist_binding` VALUES (10, 38); INSERT INTO `tb_playlist_binding` VALUES (18, 38); INSERT INTO `tb_playlist_binding` VALUES (18, 39); INSERT INTO `tb_playlist_binding` VALUES (14, 40); INSERT INTO `tb_playlist_binding` VALUES (18, 41); INSERT INTO `tb_playlist_binding` VALUES (16, 42); INSERT INTO `tb_playlist_binding` VALUES (18, 42); INSERT INTO `tb_playlist_binding` VALUES (3, 43); INSERT INTO `tb_playlist_binding` VALUES (13, 43); INSERT INTO `tb_playlist_binding` VALUES (3, 44); INSERT INTO `tb_playlist_binding` VALUES (13, 44); INSERT INTO `tb_playlist_binding` VALUES (3, 45); INSERT INTO `tb_playlist_binding` VALUES (13, 45); INSERT INTO `tb_playlist_binding` VALUES (3, 46); INSERT INTO `tb_playlist_binding` VALUES (13, 46); INSERT INTO `tb_playlist_binding` VALUES (3, 47); INSERT INTO `tb_playlist_binding` VALUES (13, 47); INSERT INTO `tb_playlist_binding` VALUES (3, 48); INSERT INTO `tb_playlist_binding` VALUES (13, 48); INSERT INTO `tb_playlist_binding` VALUES (3, 49); INSERT INTO `tb_playlist_binding` VALUES (13, 49); INSERT INTO `tb_playlist_binding` VALUES (3, 50); INSERT INTO `tb_playlist_binding` VALUES (13, 50); INSERT INTO `tb_playlist_binding` VALUES (3, 51); INSERT INTO `tb_playlist_binding` VALUES (13, 51); INSERT INTO `tb_playlist_binding` VALUES (3, 52); INSERT INTO `tb_playlist_binding` VALUES (13, 52); INSERT INTO `tb_playlist_binding` VALUES (3, 53); INSERT INTO `tb_playlist_binding` VALUES (13, 53); INSERT INTO `tb_playlist_binding` VALUES (14, 54); INSERT INTO `tb_playlist_binding` VALUES (16, 54); INSERT INTO `tb_playlist_binding` VALUES (18, 55); INSERT INTO `tb_playlist_binding` VALUES (5, 56); INSERT INTO `tb_playlist_binding` VALUES (18, 56); INSERT INTO `tb_playlist_binding` VALUES (18, 57); INSERT INTO `tb_playlist_binding` VALUES (18, 58); INSERT INTO `tb_playlist_binding` VALUES (5, 59); INSERT INTO `tb_playlist_binding` VALUES (18, 59); INSERT INTO `tb_playlist_binding` VALUES (18, 60); INSERT INTO `tb_playlist_binding` VALUES (18, 61); INSERT INTO `tb_playlist_binding` VALUES (9, 62); INSERT INTO `tb_playlist_binding` VALUES (5, 63); INSERT INTO `tb_playlist_binding` VALUES (5, 64); INSERT INTO `tb_playlist_binding` VALUES (17, 65); INSERT INTO `tb_playlist_binding` VALUES (18, 65); INSERT INTO `tb_playlist_binding` VALUES (14, 66); INSERT INTO `tb_playlist_binding` VALUES (14, 67); INSERT INTO `tb_playlist_binding` VALUES (15, 68); INSERT INTO `tb_playlist_binding` VALUES (16, 68); INSERT INTO `tb_playlist_binding` VALUES (5, 69); INSERT INTO `tb_playlist_binding` VALUES (18, 70); INSERT INTO `tb_playlist_binding` VALUES (5, 71); INSERT INTO `tb_playlist_binding` VALUES (18, 71); INSERT INTO `tb_playlist_binding` VALUES (18, 72); INSERT INTO `tb_playlist_binding` VALUES (18, 73); INSERT INTO `tb_playlist_binding` VALUES (5, 74); INSERT INTO `tb_playlist_binding` VALUES (18, 75); INSERT INTO `tb_playlist_binding` VALUES (18, 76); INSERT INTO `tb_playlist_binding` VALUES (18, 77); INSERT INTO `tb_playlist_binding` VALUES (18, 78); INSERT INTO `tb_playlist_binding` VALUES (18, 79); INSERT INTO `tb_playlist_binding` VALUES (18, 80); INSERT INTO `tb_playlist_binding` VALUES (5, 81); INSERT INTO `tb_playlist_binding` VALUES (18, 81); INSERT INTO `tb_playlist_binding` VALUES (18, 82); INSERT INTO `tb_playlist_binding` VALUES (5, 83); INSERT INTO `tb_playlist_binding` VALUES (7, 83); INSERT INTO `tb_playlist_binding` VALUES (13, 84); INSERT INTO `tb_playlist_binding` VALUES (18, 84); INSERT INTO `tb_playlist_binding` VALUES (18, 85); INSERT INTO `tb_playlist_binding` VALUES (5, 86); INSERT INTO `tb_playlist_binding` VALUES (18, 86); INSERT INTO `tb_playlist_binding` VALUES (18, 87); INSERT INTO `tb_playlist_binding` VALUES (18, 88); INSERT INTO `tb_playlist_binding` VALUES (18, 89); INSERT INTO `tb_playlist_binding` VALUES (16, 90); INSERT INTO `tb_playlist_binding` VALUES (18, 90); INSERT INTO `tb_playlist_binding` VALUES (18, 91); INSERT INTO `tb_playlist_binding` VALUES (18, 92); INSERT INTO `tb_playlist_binding` VALUES (18, 93); INSERT INTO `tb_playlist_binding` VALUES (5, 94); INSERT INTO `tb_playlist_binding` VALUES (18, 95); INSERT INTO `tb_playlist_binding` VALUES (18, 96); INSERT INTO `tb_playlist_binding` VALUES (18, 97); INSERT INTO `tb_playlist_binding` VALUES (18, 98); INSERT INTO `tb_playlist_binding` VALUES (18, 99); INSERT INTO `tb_playlist_binding` VALUES (5, 100); INSERT INTO `tb_playlist_binding` VALUES (18, 100); INSERT INTO `tb_playlist_binding` VALUES (18, 101); INSERT INTO `tb_playlist_binding` VALUES (18, 102); INSERT INTO `tb_playlist_binding` VALUES (18, 103); INSERT INTO `tb_playlist_binding` VALUES (18, 104); INSERT INTO `tb_playlist_binding` VALUES (18, 105); INSERT INTO `tb_playlist_binding` VALUES (18, 106); INSERT INTO `tb_playlist_binding` VALUES (18, 107); INSERT INTO `tb_playlist_binding` VALUES (18, 108); INSERT INTO `tb_playlist_binding` VALUES (18, 109); INSERT INTO `tb_playlist_binding` VALUES (18, 110); INSERT INTO `tb_playlist_binding` VALUES (18, 111); INSERT INTO `tb_playlist_binding` VALUES (18, 112); INSERT INTO `tb_playlist_binding` VALUES (18, 113); INSERT INTO `tb_playlist_binding` VALUES (18, 114); INSERT INTO `tb_playlist_binding` VALUES (18, 115); INSERT INTO `tb_playlist_binding` VALUES (18, 116); INSERT INTO `tb_playlist_binding` VALUES (18, 117); INSERT INTO `tb_playlist_binding` VALUES (18, 118); INSERT INTO `tb_playlist_binding` VALUES (18, 119); INSERT INTO `tb_playlist_binding` VALUES (18, 120); INSERT INTO `tb_playlist_binding` VALUES (18, 121); INSERT INTO `tb_playlist_binding` VALUES (18, 122); INSERT INTO `tb_playlist_binding` VALUES (18, 123); INSERT INTO `tb_playlist_binding` VALUES (7, 124); INSERT INTO `tb_playlist_binding` VALUES (18, 124); INSERT INTO `tb_playlist_binding` VALUES (18, 125); INSERT INTO `tb_playlist_binding` VALUES (7, 126); INSERT INTO `tb_playlist_binding` VALUES (18, 126); INSERT INTO `tb_playlist_binding` VALUES (18, 127); INSERT INTO `tb_playlist_binding` VALUES (18, 128); INSERT INTO `tb_playlist_binding` VALUES (9, 129); INSERT INTO `tb_playlist_binding` VALUES (18, 130); INSERT INTO `tb_playlist_binding` VALUES (9, 132); INSERT INTO `tb_playlist_binding` VALUES (14, 133); INSERT INTO `tb_playlist_binding` VALUES (3, 134); INSERT INTO `tb_playlist_binding` VALUES (11, 135); INSERT INTO `tb_playlist_binding` VALUES (11, 136); INSERT INTO `tb_playlist_binding` VALUES (11, 137); INSERT INTO `tb_playlist_binding` VALUES (16, 137); INSERT INTO `tb_playlist_binding` VALUES (11, 138); INSERT INTO `tb_playlist_binding` VALUES (3, 139); INSERT INTO `tb_playlist_binding` VALUES (13, 139); INSERT INTO `tb_playlist_binding` VALUES (11, 140); INSERT INTO `tb_playlist_binding` VALUES (11, 141); INSERT INTO `tb_playlist_binding` VALUES (11, 142); INSERT INTO `tb_playlist_binding` VALUES (11, 143); INSERT INTO `tb_playlist_binding` VALUES (11, 144); INSERT INTO `tb_playlist_binding` VALUES (11, 145); INSERT INTO `tb_playlist_binding` VALUES (11, 146); INSERT INTO `tb_playlist_binding` VALUES (11, 147); INSERT INTO `tb_playlist_binding` VALUES (3, 148); INSERT INTO `tb_playlist_binding` VALUES (9, 149); INSERT INTO `tb_playlist_binding` VALUES (9, 150); INSERT INTO `tb_playlist_binding` VALUES (9, 151); INSERT INTO `tb_playlist_binding` VALUES (16, 151); INSERT INTO `tb_playlist_binding` VALUES (18, 152); INSERT INTO `tb_playlist_binding` VALUES (5, 153); INSERT INTO `tb_playlist_binding` VALUES (18, 153); INSERT INTO `tb_playlist_binding` VALUES (18, 154); INSERT INTO `tb_playlist_binding` VALUES (18, 155); INSERT INTO `tb_playlist_binding` VALUES (18, 156); INSERT INTO `tb_playlist_binding` VALUES (18, 157); INSERT INTO `tb_playlist_binding` VALUES (5, 158); INSERT INTO `tb_playlist_binding` VALUES (18, 158); INSERT INTO `tb_playlist_binding` VALUES (5, 159); INSERT INTO `tb_playlist_binding` VALUES (18, 159); INSERT INTO `tb_playlist_binding` VALUES (5, 160); INSERT INTO `tb_playlist_binding` VALUES (18, 160); INSERT INTO `tb_playlist_binding` VALUES (18, 161); INSERT INTO `tb_playlist_binding` VALUES (18, 162); INSERT INTO `tb_playlist_binding` VALUES (18, 163); INSERT INTO `tb_playlist_binding` VALUES (18, 164); INSERT INTO `tb_playlist_binding` VALUES (18, 165); INSERT INTO `tb_playlist_binding` VALUES (18, 166); INSERT INTO `tb_playlist_binding` VALUES (18, 167); INSERT INTO `tb_playlist_binding` VALUES (9, 168); INSERT INTO `tb_playlist_binding` VALUES (18, 169); INSERT INTO `tb_playlist_binding` VALUES (13, 170); INSERT INTO `tb_playlist_binding` VALUES (13, 171); INSERT INTO `tb_playlist_binding` VALUES (13, 172); INSERT INTO `tb_playlist_binding` VALUES (13, 173); INSERT INTO `tb_playlist_binding` VALUES (7, 174); INSERT INTO `tb_playlist_binding` VALUES (13, 174); INSERT INTO `tb_playlist_binding` VALUES (5, 175); INSERT INTO `tb_playlist_binding` VALUES (8, 176); INSERT INTO `tb_playlist_binding` VALUES (8, 177); INSERT INTO `tb_playlist_binding` VALUES (8, 178); INSERT INTO `tb_playlist_binding` VALUES (8, 179); INSERT INTO `tb_playlist_binding` VALUES (9, 180); INSERT INTO `tb_playlist_binding` VALUES (7, 181); INSERT INTO `tb_playlist_binding` VALUES (18, 181); INSERT INTO `tb_playlist_binding` VALUES (18, 182); INSERT INTO `tb_playlist_binding` VALUES (18, 183); INSERT INTO `tb_playlist_binding` VALUES (18, 184); INSERT INTO `tb_playlist_binding` VALUES (18, 185); INSERT INTO `tb_playlist_binding` VALUES (18, 186); INSERT INTO `tb_playlist_binding` VALUES (7, 187); INSERT INTO `tb_playlist_binding` VALUES (18, 188); INSERT INTO `tb_playlist_binding` VALUES (7, 189); INSERT INTO `tb_playlist_binding` VALUES (18, 189); INSERT INTO `tb_playlist_binding` VALUES (18, 190); INSERT INTO `tb_playlist_binding` VALUES (18, 191); INSERT INTO `tb_playlist_binding` VALUES (5, 192); INSERT INTO `tb_playlist_binding` VALUES (18, 192); INSERT INTO `tb_playlist_binding` VALUES (10, 193); INSERT INTO `tb_playlist_binding` VALUES (18, 193); INSERT INTO `tb_playlist_binding` VALUES (18, 194); INSERT INTO `tb_playlist_binding` VALUES (7, 195); INSERT INTO `tb_playlist_binding` VALUES (7, 196); INSERT INTO `tb_playlist_binding` VALUES (18, 196); INSERT INTO `tb_playlist_binding` VALUES (18, 197); INSERT INTO `tb_playlist_binding` VALUES (5, 198); INSERT INTO `tb_playlist_binding` VALUES (18, 199); INSERT INTO `tb_playlist_binding` VALUES (10, 200); INSERT INTO `tb_playlist_binding` VALUES (18, 200); INSERT INTO `tb_playlist_binding` VALUES (10, 201); INSERT INTO `tb_playlist_binding` VALUES (10, 202); INSERT INTO `tb_playlist_binding` VALUES (18, 202); INSERT INTO `tb_playlist_binding` VALUES (5, 203); INSERT INTO `tb_playlist_binding` VALUES (5, 204); INSERT INTO `tb_playlist_binding` VALUES (18, 205); INSERT INTO `tb_playlist_binding` VALUES (5, 206); INSERT INTO `tb_playlist_binding` VALUES (18, 207); INSERT INTO `tb_playlist_binding` VALUES (5, 208); INSERT INTO `tb_playlist_binding` VALUES (18, 208); INSERT INTO `tb_playlist_binding` VALUES (5, 209); INSERT INTO `tb_playlist_binding` VALUES (5, 210); INSERT INTO `tb_playlist_binding` VALUES (18, 210); INSERT INTO `tb_playlist_binding` VALUES (5, 211); INSERT INTO `tb_playlist_binding` VALUES (18, 211); INSERT INTO `tb_playlist_binding` VALUES (5, 212); INSERT INTO `tb_playlist_binding` VALUES (18, 212); INSERT INTO `tb_playlist_binding` VALUES (18, 213); INSERT INTO `tb_playlist_binding` VALUES (18, 214); INSERT INTO `tb_playlist_binding` VALUES (18, 215); INSERT INTO `tb_playlist_binding` VALUES (18, 216); INSERT INTO `tb_playlist_binding` VALUES (18, 217); INSERT INTO `tb_playlist_binding` VALUES (18, 218); INSERT INTO `tb_playlist_binding` VALUES (18, 219); INSERT INTO `tb_playlist_binding` VALUES (16, 220); INSERT INTO `tb_playlist_binding` VALUES (18, 220); INSERT INTO `tb_playlist_binding` VALUES (18, 221); INSERT INTO `tb_playlist_binding` VALUES (18, 222); INSERT INTO `tb_playlist_binding` VALUES (18, 223); INSERT INTO `tb_playlist_binding` VALUES (18, 224); INSERT INTO `tb_playlist_binding` VALUES (5, 225); INSERT INTO `tb_playlist_binding` VALUES (9, 226); INSERT INTO `tb_playlist_binding` VALUES (9, 227); INSERT INTO `tb_playlist_binding` VALUES (9, 228); INSERT INTO `tb_playlist_binding` VALUES (9, 229); INSERT INTO `tb_playlist_binding` VALUES (9, 230); INSERT INTO `tb_playlist_binding` VALUES (10, 231); INSERT INTO `tb_playlist_binding` VALUES (13, 231); INSERT INTO `tb_playlist_binding` VALUES (18, 231); INSERT INTO `tb_playlist_binding` VALUES (13, 232); INSERT INTO `tb_playlist_binding` VALUES (18, 232); INSERT INTO `tb_playlist_binding` VALUES (10, 233); INSERT INTO `tb_playlist_binding` VALUES (13, 233); INSERT INTO `tb_playlist_binding` VALUES (18, 233); INSERT INTO `tb_playlist_binding` VALUES (10, 234); INSERT INTO `tb_playlist_binding` VALUES (13, 234); INSERT INTO `tb_playlist_binding` VALUES (18, 234); INSERT INTO `tb_playlist_binding` VALUES (10, 235); INSERT INTO `tb_playlist_binding` VALUES (13, 235); INSERT INTO `tb_playlist_binding` VALUES (18, 235); INSERT INTO `tb_playlist_binding` VALUES (13, 236); INSERT INTO `tb_playlist_binding` VALUES (18, 236); INSERT INTO `tb_playlist_binding` VALUES (10, 237); INSERT INTO `tb_playlist_binding` VALUES (13, 237); INSERT INTO `tb_playlist_binding` VALUES (18, 237); INSERT INTO `tb_playlist_binding` VALUES (10, 238); INSERT INTO `tb_playlist_binding` VALUES (13, 238); INSERT INTO `tb_playlist_binding` VALUES (18, 238); INSERT INTO `tb_playlist_binding` VALUES (13, 239); INSERT INTO `tb_playlist_binding` VALUES (18, 239); INSERT INTO `tb_playlist_binding` VALUES (10, 240); INSERT INTO `tb_playlist_binding` VALUES (13, 240); INSERT INTO `tb_playlist_binding` VALUES (18, 240); INSERT INTO `tb_playlist_binding` VALUES (13, 241); INSERT INTO `tb_playlist_binding` VALUES (18, 241); INSERT INTO `tb_playlist_binding` VALUES (13, 242); INSERT INTO `tb_playlist_binding` VALUES (18, 242); INSERT INTO `tb_playlist_binding` VALUES (13, 243); INSERT INTO `tb_playlist_binding` VALUES (18, 243); INSERT INTO `tb_playlist_binding` VALUES (10, 244); INSERT INTO `tb_playlist_binding` VALUES (13, 244); INSERT INTO `tb_playlist_binding` VALUES (18, 244); INSERT INTO `tb_playlist_binding` VALUES (13, 245); INSERT INTO `tb_playlist_binding` VALUES (18, 245); INSERT INTO `tb_playlist_binding` VALUES (13, 246); INSERT INTO `tb_playlist_binding` VALUES (18, 246); INSERT INTO `tb_playlist_binding` VALUES (10, 247); INSERT INTO `tb_playlist_binding` VALUES (13, 247); INSERT INTO `tb_playlist_binding` VALUES (18, 247); INSERT INTO `tb_playlist_binding` VALUES (13, 248); INSERT INTO `tb_playlist_binding` VALUES (18, 248); INSERT INTO `tb_playlist_binding` VALUES (10, 249); INSERT INTO `tb_playlist_binding` VALUES (13, 249); INSERT INTO `tb_playlist_binding` VALUES (18, 249); INSERT INTO `tb_playlist_binding` VALUES (13, 250); INSERT INTO `tb_playlist_binding` VALUES (18, 250); INSERT INTO `tb_playlist_binding` VALUES (10, 251); INSERT INTO `tb_playlist_binding` VALUES (13, 251); INSERT INTO `tb_playlist_binding` VALUES (18, 251); INSERT INTO `tb_playlist_binding` VALUES (13, 252); INSERT INTO `tb_playlist_binding` VALUES (18, 252); INSERT INTO `tb_playlist_binding` VALUES (13, 253); INSERT INTO `tb_playlist_binding` VALUES (18, 253); INSERT INTO `tb_playlist_binding` VALUES (10, 254); INSERT INTO `tb_playlist_binding` VALUES (13, 254); INSERT INTO `tb_playlist_binding` VALUES (18, 254); INSERT INTO `tb_playlist_binding` VALUES (13, 255); INSERT INTO `tb_playlist_binding` VALUES (18, 255); INSERT INTO `tb_playlist_binding` VALUES (10, 256); INSERT INTO `tb_playlist_binding` VALUES (13, 256); INSERT INTO `tb_playlist_binding` VALUES (18, 256); INSERT INTO `tb_playlist_binding` VALUES (13, 257); INSERT INTO `tb_playlist_binding` VALUES (18, 257); INSERT INTO `tb_playlist_binding` VALUES (10, 258); INSERT INTO `tb_playlist_binding` VALUES (13, 258); INSERT INTO `tb_playlist_binding` VALUES (18, 258); INSERT INTO `tb_playlist_binding` VALUES (10, 259); INSERT INTO `tb_playlist_binding` VALUES (13, 259); INSERT INTO `tb_playlist_binding` VALUES (18, 259); INSERT INTO `tb_playlist_binding` VALUES (10, 260); INSERT INTO `tb_playlist_binding` VALUES (13, 260); INSERT INTO `tb_playlist_binding` VALUES (18, 260); INSERT INTO `tb_playlist_binding` VALUES (10, 261); INSERT INTO `tb_playlist_binding` VALUES (13, 261); INSERT INTO `tb_playlist_binding` VALUES (18, 261); INSERT INTO `tb_playlist_binding` VALUES (10, 262); INSERT INTO `tb_playlist_binding` VALUES (13, 262); INSERT INTO `tb_playlist_binding` VALUES (18, 262); INSERT INTO `tb_playlist_binding` VALUES (13, 263); INSERT INTO `tb_playlist_binding` VALUES (18, 263); INSERT INTO `tb_playlist_binding` VALUES (10, 264); INSERT INTO `tb_playlist_binding` VALUES (13, 264); INSERT INTO `tb_playlist_binding` VALUES (18, 264); INSERT INTO `tb_playlist_binding` VALUES (10, 265); INSERT INTO `tb_playlist_binding` VALUES (13, 265); INSERT INTO `tb_playlist_binding` VALUES (18, 265); INSERT INTO `tb_playlist_binding` VALUES (10, 266); INSERT INTO `tb_playlist_binding` VALUES (13, 266); INSERT INTO `tb_playlist_binding` VALUES (18, 266); INSERT INTO `tb_playlist_binding` VALUES (5, 267); INSERT INTO `tb_playlist_binding` VALUES (5, 268); INSERT INTO `tb_playlist_binding` VALUES (5, 269); INSERT INTO `tb_playlist_binding` VALUES (5, 270); INSERT INTO `tb_playlist_binding` VALUES (9, 271); INSERT INTO `tb_playlist_binding` VALUES (9, 272); INSERT INTO `tb_playlist_binding` VALUES (7, 273); INSERT INTO `tb_playlist_binding` VALUES (16, 273); INSERT INTO `tb_playlist_binding` VALUES (14, 274); INSERT INTO `tb_playlist_binding` VALUES (5, 275); INSERT INTO `tb_playlist_binding` VALUES (14, 276); INSERT INTO `tb_playlist_binding` VALUES (9, 277); INSERT INTO `tb_playlist_binding` VALUES (9, 278); INSERT INTO `tb_playlist_binding` VALUES (13, 279); INSERT INTO `tb_playlist_binding` VALUES (18, 280); INSERT INTO `tb_playlist_binding` VALUES (18, 281); INSERT INTO `tb_playlist_binding` VALUES (5, 282); INSERT INTO `tb_playlist_binding` VALUES (13, 282); INSERT INTO `tb_playlist_binding` VALUES (16, 283); INSERT INTO `tb_playlist_binding` VALUES (18, 283); INSERT INTO `tb_playlist_binding` VALUES (5, 284); INSERT INTO `tb_playlist_binding` VALUES (13, 284); INSERT INTO `tb_playlist_binding` VALUES (13, 285); INSERT INTO `tb_playlist_binding` VALUES (13, 286); INSERT INTO `tb_playlist_binding` VALUES (18, 286); INSERT INTO `tb_playlist_binding` VALUES (18, 287); INSERT INTO `tb_playlist_binding` VALUES (13, 288); INSERT INTO `tb_playlist_binding` VALUES (18, 289); INSERT INTO `tb_playlist_binding` VALUES (7, 290); INSERT INTO `tb_playlist_binding` VALUES (18, 290); INSERT INTO `tb_playlist_binding` VALUES (16, 291); INSERT INTO `tb_playlist_binding` VALUES (18, 291); INSERT INTO `tb_playlist_binding` VALUES (9, 292); INSERT INTO `tb_playlist_binding` VALUES (9, 293); INSERT INTO `tb_playlist_binding` VALUES (9, 294); INSERT INTO `tb_playlist_binding` VALUES (9, 295); INSERT INTO `tb_playlist_binding` VALUES (5, 296); INSERT INTO `tb_playlist_binding` VALUES (5, 297); INSERT INTO `tb_playlist_binding` VALUES (15, 298); INSERT INTO `tb_playlist_binding` VALUES (16, 298); INSERT INTO `tb_playlist_binding` VALUES (5, 299); INSERT INTO `tb_playlist_binding` VALUES (6, 299); INSERT INTO `tb_playlist_binding` VALUES (9, 300); INSERT INTO `tb_playlist_binding` VALUES (16, 300); INSERT INTO `tb_playlist_binding` VALUES (5, 301); INSERT INTO `tb_playlist_binding` VALUES (18, 301); INSERT INTO `tb_playlist_binding` VALUES (16, 302); INSERT INTO `tb_playlist_binding` VALUES (18, 302); INSERT INTO `tb_playlist_binding` VALUES (18, 303); INSERT INTO `tb_playlist_binding` VALUES (5, 304); INSERT INTO `tb_playlist_binding` VALUES (18, 304); INSERT INTO `tb_playlist_binding` VALUES (18, 305); INSERT INTO `tb_playlist_binding` VALUES (18, 306); INSERT INTO `tb_playlist_binding` VALUES (18, 307); INSERT INTO `tb_playlist_binding` VALUES (18, 308); INSERT INTO `tb_playlist_binding` VALUES (5, 309); INSERT INTO `tb_playlist_binding` VALUES (5, 310); INSERT INTO `tb_playlist_binding` VALUES (18, 310); INSERT INTO `tb_playlist_binding` VALUES (8, 311); INSERT INTO `tb_playlist_binding` VALUES (8, 312); INSERT INTO `tb_playlist_binding` VALUES (8, 313); INSERT INTO `tb_playlist_binding` VALUES (18, 314); INSERT INTO `tb_playlist_binding` VALUES (17, 315); INSERT INTO `tb_playlist_binding` VALUES (18, 316); INSERT INTO `tb_playlist_binding` VALUES (18, 317); INSERT INTO `tb_playlist_binding` VALUES (18, 318); INSERT INTO `tb_playlist_binding` VALUES (18, 319); INSERT INTO `tb_playlist_binding` VALUES (18, 320); INSERT INTO `tb_playlist_binding` VALUES (18, 321); INSERT INTO `tb_playlist_binding` VALUES (18, 322); INSERT INTO `tb_playlist_binding` VALUES (18, 323); INSERT INTO `tb_playlist_binding` VALUES (18, 324); INSERT INTO `tb_playlist_binding` VALUES (17, 325); INSERT INTO `tb_playlist_binding` VALUES (18, 326); INSERT INTO `tb_playlist_binding` VALUES (18, 327); INSERT INTO `tb_playlist_binding` VALUES (18, 328); INSERT INTO `tb_playlist_binding` VALUES (18, 329); INSERT INTO `tb_playlist_binding` VALUES (18, 330); INSERT INTO `tb_playlist_binding` VALUES (18, 331); INSERT INTO `tb_playlist_binding` VALUES (17, 332); INSERT INTO `tb_playlist_binding` VALUES (18, 332); INSERT INTO `tb_playlist_binding` VALUES (18, 333); INSERT INTO `tb_playlist_binding` VALUES (5, 334); INSERT INTO `tb_playlist_binding` VALUES (18, 334); INSERT INTO `tb_playlist_binding` VALUES (18, 335); INSERT INTO `tb_playlist_binding` VALUES (17, 336); INSERT INTO `tb_playlist_binding` VALUES (5, 337); INSERT INTO `tb_playlist_binding` VALUES (18, 337); INSERT INTO `tb_playlist_binding` VALUES (18, 338); INSERT INTO `tb_playlist_binding` VALUES (18, 339); INSERT INTO `tb_playlist_binding` VALUES (18, 340); INSERT INTO `tb_playlist_binding` VALUES (18, 341); INSERT INTO `tb_playlist_binding` VALUES (18, 342); INSERT INTO `tb_playlist_binding` VALUES (17, 343); INSERT INTO `tb_playlist_binding` VALUES (18, 343); INSERT INTO `tb_playlist_binding` VALUES (18, 344); INSERT INTO `tb_playlist_binding` VALUES (5, 345); INSERT INTO `tb_playlist_binding` VALUES (18, 345); INSERT INTO `tb_playlist_binding` VALUES (5, 346); INSERT INTO `tb_playlist_binding` VALUES (18, 346); INSERT INTO `tb_playlist_binding` VALUES (5, 347); INSERT INTO `tb_playlist_binding` VALUES (5, 348); INSERT INTO `tb_playlist_binding` VALUES (18, 348); INSERT INTO `tb_playlist_binding` VALUES (5, 349); INSERT INTO `tb_playlist_binding` VALUES (18, 349); INSERT INTO `tb_playlist_binding` VALUES (5, 350); INSERT INTO `tb_playlist_binding` VALUES (5, 351); INSERT INTO `tb_playlist_binding` VALUES (10, 352); INSERT INTO `tb_playlist_binding` VALUES (13, 352); INSERT INTO `tb_playlist_binding` VALUES (5, 353); INSERT INTO `tb_playlist_binding` VALUES (18, 353); INSERT INTO `tb_playlist_binding` VALUES (5, 354); INSERT INTO `tb_playlist_binding` VALUES (5, 355); INSERT INTO `tb_playlist_binding` VALUES (5, 356); INSERT INTO `tb_playlist_binding` VALUES (10, 356); INSERT INTO `tb_playlist_binding` VALUES (5, 357); INSERT INTO `tb_playlist_binding` VALUES (5, 358); INSERT INTO `tb_playlist_binding` VALUES (18, 358); INSERT INTO `tb_playlist_binding` VALUES (5, 359); INSERT INTO `tb_playlist_binding` VALUES (18, 359); INSERT INTO `tb_playlist_binding` VALUES (5, 360); INSERT INTO `tb_playlist_binding` VALUES (18, 360); INSERT INTO `tb_playlist_binding` VALUES (5, 361); INSERT INTO `tb_playlist_binding` VALUES (10, 361); INSERT INTO `tb_playlist_binding` VALUES (5, 362); INSERT INTO `tb_playlist_binding` VALUES (18, 362); INSERT INTO `tb_playlist_binding` VALUES (9, 363); INSERT INTO `tb_playlist_binding` VALUES (16, 363); INSERT INTO `tb_playlist_binding` VALUES (5, 364); INSERT INTO `tb_playlist_binding` VALUES (5, 365); INSERT INTO `tb_playlist_binding` VALUES (5, 366); INSERT INTO `tb_playlist_binding` VALUES (5, 367); INSERT INTO `tb_playlist_binding` VALUES (5, 368); INSERT INTO `tb_playlist_binding` VALUES (18, 369); INSERT INTO `tb_playlist_binding` VALUES (5, 370); INSERT INTO `tb_playlist_binding` VALUES (18, 370); INSERT INTO `tb_playlist_binding` VALUES (18, 371); INSERT INTO `tb_playlist_binding` VALUES (18, 372); INSERT INTO `tb_playlist_binding` VALUES (5, 373); INSERT INTO `tb_playlist_binding` VALUES (18, 373); INSERT INTO `tb_playlist_binding` VALUES (18, 374); INSERT INTO `tb_playlist_binding` VALUES (18, 375); INSERT INTO `tb_playlist_binding` VALUES (18, 376); INSERT INTO `tb_playlist_binding` VALUES (18, 377); INSERT INTO `tb_playlist_binding` VALUES (5, 378); INSERT INTO `tb_playlist_binding` VALUES (18, 378); INSERT INTO `tb_playlist_binding` VALUES (18, 379); INSERT INTO `tb_playlist_binding` VALUES (18, 380); INSERT INTO `tb_playlist_binding` VALUES (5, 381); INSERT INTO `tb_playlist_binding` VALUES (18, 381); INSERT INTO `tb_playlist_binding` VALUES (18, 382); INSERT INTO `tb_playlist_binding` VALUES (18, 383); INSERT INTO `tb_playlist_binding` VALUES (5, 384); INSERT INTO `tb_playlist_binding` VALUES (18, 384); INSERT INTO `tb_playlist_binding` VALUES (18, 385); INSERT INTO `tb_playlist_binding` VALUES (5, 386); INSERT INTO `tb_playlist_binding` VALUES (18, 386); INSERT INTO `tb_playlist_binding` VALUES (18, 387); INSERT INTO `tb_playlist_binding` VALUES (14, 388); INSERT INTO `tb_playlist_binding` VALUES (16, 388); INSERT INTO `tb_playlist_binding` VALUES (14, 389); INSERT INTO `tb_playlist_binding` VALUES (16, 389); INSERT INTO `tb_playlist_binding` VALUES (9, 390); INSERT INTO `tb_playlist_binding` VALUES (9, 391); INSERT INTO `tb_playlist_binding` VALUES (5, 392); INSERT INTO `tb_playlist_binding` VALUES (9, 393); INSERT INTO `tb_playlist_binding` VALUES (9, 394); INSERT INTO `tb_playlist_binding` VALUES (18, 395); INSERT INTO `tb_playlist_binding` VALUES (9, 396); INSERT INTO `tb_playlist_binding` VALUES (9, 397); INSERT INTO `tb_playlist_binding` VALUES (9, 398); INSERT INTO `tb_playlist_binding` VALUES (9, 399); INSERT INTO `tb_playlist_binding` VALUES (9, 400); INSERT INTO `tb_playlist_binding` VALUES (9, 401); INSERT INTO `tb_playlist_binding` VALUES (18, 402); INSERT INTO `tb_playlist_binding` VALUES (18, 403); INSERT INTO `tb_playlist_binding` VALUES (5, 404); INSERT INTO `tb_playlist_binding` VALUES (18, 404); INSERT INTO `tb_playlist_binding` VALUES (9, 405); INSERT INTO `tb_playlist_binding` VALUES (9, 406); INSERT INTO `tb_playlist_binding` VALUES (9, 407); INSERT INTO `tb_playlist_binding` VALUES (9, 408); INSERT INTO `tb_playlist_binding` VALUES (9, 409); INSERT INTO `tb_playlist_binding` VALUES (11, 410); INSERT INTO `tb_playlist_binding` VALUES (13, 410); INSERT INTO `tb_playlist_binding` VALUES (4, 411); INSERT INTO `tb_playlist_binding` VALUES (14, 411); INSERT INTO `tb_playlist_binding` VALUES (4, 412); INSERT INTO `tb_playlist_binding` VALUES (14, 412); INSERT INTO `tb_playlist_binding` VALUES (14, 413); INSERT INTO `tb_playlist_binding` VALUES (7, 414); INSERT INTO `tb_playlist_binding` VALUES (4, 415); INSERT INTO `tb_playlist_binding` VALUES (5, 415); INSERT INTO `tb_playlist_binding` VALUES (9, 416); INSERT INTO `tb_playlist_binding` VALUES (4, 417); INSERT INTO `tb_playlist_binding` VALUES (14, 417); INSERT INTO `tb_playlist_binding` VALUES (4, 418); INSERT INTO `tb_playlist_binding` VALUES (14, 418); INSERT INTO `tb_playlist_binding` VALUES (5, 419); INSERT INTO `tb_playlist_binding` VALUES (9, 420); INSERT INTO `tb_playlist_binding` VALUES (5, 421); INSERT INTO `tb_playlist_binding` VALUES (8, 422); INSERT INTO `tb_playlist_binding` VALUES (14, 423); INSERT INTO `tb_playlist_binding` VALUES (9, 424); INSERT INTO `tb_playlist_binding` VALUES (14, 425); INSERT INTO `tb_playlist_binding` VALUES (3, 426); INSERT INTO `tb_playlist_binding` VALUES (11, 427); INSERT INTO `tb_playlist_binding` VALUES (11, 428); INSERT INTO `tb_playlist_binding` VALUES (3, 429); INSERT INTO `tb_playlist_binding` VALUES (13, 429); INSERT INTO `tb_playlist_binding` VALUES (11, 430); INSERT INTO `tb_playlist_binding` VALUES (16, 430); INSERT INTO `tb_playlist_binding` VALUES (11, 431); INSERT INTO `tb_playlist_binding` VALUES (11, 432); INSERT INTO `tb_playlist_binding` VALUES (11, 433); INSERT INTO `tb_playlist_binding` VALUES (11, 434); INSERT INTO `tb_playlist_binding` VALUES (10, 435); INSERT INTO `tb_playlist_binding` VALUES (11, 435); INSERT INTO `tb_playlist_binding` VALUES (11, 436); INSERT INTO `tb_playlist_binding` VALUES (11, 437); INSERT INTO `tb_playlist_binding` VALUES (7, 438); INSERT INTO `tb_playlist_binding` VALUES (4, 439); INSERT INTO `tb_playlist_binding` VALUES (14, 439); INSERT INTO `tb_playlist_binding` VALUES (16, 439); INSERT INTO `tb_playlist_binding` VALUES (4, 440); INSERT INTO `tb_playlist_binding` VALUES (5, 440); INSERT INTO `tb_playlist_binding` VALUES (4, 441); INSERT INTO `tb_playlist_binding` VALUES (5, 441); INSERT INTO `tb_playlist_binding` VALUES (8, 442); INSERT INTO `tb_playlist_binding` VALUES (8, 443); INSERT INTO `tb_playlist_binding` VALUES (8, 444); INSERT INTO `tb_playlist_binding` VALUES (8, 445); INSERT INTO `tb_playlist_binding` VALUES (8, 446); INSERT INTO `tb_playlist_binding` VALUES (8, 447); INSERT INTO `tb_playlist_binding` VALUES (11, 448); INSERT INTO `tb_playlist_binding` VALUES (16, 448); INSERT INTO `tb_playlist_binding` VALUES (3, 449); INSERT INTO `tb_playlist_binding` VALUES (11, 449); INSERT INTO `tb_playlist_binding` VALUES (5, 450); INSERT INTO `tb_playlist_binding` VALUES (11, 451); INSERT INTO `tb_playlist_binding` VALUES (16, 451); INSERT INTO `tb_playlist_binding` VALUES (11, 452); INSERT INTO `tb_playlist_binding` VALUES (11, 453); INSERT INTO `tb_playlist_binding` VALUES (10, 454); INSERT INTO `tb_playlist_binding` VALUES (11, 454); INSERT INTO `tb_playlist_binding` VALUES (12, 454); INSERT INTO `tb_playlist_binding` VALUES (11, 455); INSERT INTO `tb_playlist_binding` VALUES (16, 455); INSERT INTO `tb_playlist_binding` VALUES (4, 456); INSERT INTO `tb_playlist_binding` VALUES (11, 457); INSERT INTO `tb_playlist_binding` VALUES (16, 457); INSERT INTO `tb_playlist_binding` VALUES (4, 458); INSERT INTO `tb_playlist_binding` VALUES (14, 458); INSERT INTO `tb_playlist_binding` VALUES (14, 459); INSERT INTO `tb_playlist_binding` VALUES (16, 459); INSERT INTO `tb_playlist_binding` VALUES (14, 460); INSERT INTO `tb_playlist_binding` VALUES (3, 461); INSERT INTO `tb_playlist_binding` VALUES (11, 462); INSERT INTO `tb_playlist_binding` VALUES (14, 463); INSERT INTO `tb_playlist_binding` VALUES (16, 463); INSERT INTO `tb_playlist_binding` VALUES (5, 464); INSERT INTO `tb_playlist_binding` VALUES (5, 465); INSERT INTO `tb_playlist_binding` VALUES (2, 466); INSERT INTO `tb_playlist_binding` VALUES (11, 467); INSERT INTO `tb_playlist_binding` VALUES (11, 468); INSERT INTO `tb_playlist_binding` VALUES (11, 469); INSERT INTO `tb_playlist_binding` VALUES (11, 470); INSERT INTO `tb_playlist_binding` VALUES (11, 471); INSERT INTO `tb_playlist_binding` VALUES (11, 472); INSERT INTO `tb_playlist_binding` VALUES (11, 473); INSERT INTO `tb_playlist_binding` VALUES (11, 474); INSERT INTO `tb_playlist_binding` VALUES (11, 475); INSERT INTO `tb_playlist_binding` VALUES (11, 476); INSERT INTO `tb_playlist_binding` VALUES (11, 477); INSERT INTO `tb_playlist_binding` VALUES (11, 478); INSERT INTO `tb_playlist_binding` VALUES (11, 479); INSERT INTO `tb_playlist_binding` VALUES (11, 480); INSERT INTO `tb_playlist_binding` VALUES (11, 481); INSERT INTO `tb_playlist_binding` VALUES (11, 482); INSERT INTO `tb_playlist_binding` VALUES (11, 483); INSERT INTO `tb_playlist_binding` VALUES (11, 484); INSERT INTO `tb_playlist_binding` VALUES (11, 485); INSERT INTO `tb_playlist_binding` VALUES (4, 486); INSERT INTO `tb_playlist_binding` VALUES (14, 486); INSERT INTO `tb_playlist_binding` VALUES (4, 487); INSERT INTO `tb_playlist_binding` VALUES (14, 487); INSERT INTO `tb_playlist_binding` VALUES (9, 488); INSERT INTO `tb_playlist_binding` VALUES (11, 489); INSERT INTO `tb_playlist_binding` VALUES (16, 489); INSERT INTO `tb_playlist_binding` VALUES (13, 490); INSERT INTO `tb_playlist_binding` VALUES (4, 491); INSERT INTO `tb_playlist_binding` VALUES (14, 491); INSERT INTO `tb_playlist_binding` VALUES (9, 492); INSERT INTO `tb_playlist_binding` VALUES (11, 493); INSERT INTO `tb_playlist_binding` VALUES (11, 494); INSERT INTO `tb_playlist_binding` VALUES (11, 495); INSERT INTO `tb_playlist_binding` VALUES (3, 496); INSERT INTO `tb_playlist_binding` VALUES (11, 497); INSERT INTO `tb_playlist_binding` VALUES (16, 497); INSERT INTO `tb_playlist_binding` VALUES (3, 498); INSERT INTO `tb_playlist_binding` VALUES (11, 499); INSERT INTO `tb_playlist_binding` VALUES (4, 500); INSERT INTO `tb_playlist_binding` VALUES (14, 500); INSERT INTO `tb_playlist_binding` VALUES (16, 500); -- ---------------------------- -- Table structure for tb_song -- ---------------------------- DROP TABLE IF EXISTS `tb_song`; CREATE TABLE `tb_song` ( `id` bigint(0) NOT NULL AUTO_INCREMENT COMMENT '歌曲 id', `artist_id` bigint(0) NOT NULL COMMENT '歌手 id', `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '歌名', `album` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '专辑', `lyric` text CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL COMMENT '歌词', `duration` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '歌曲时长', `style` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '歌曲风格', `cover_url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '歌曲封面 url', `audio_url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '歌曲 url', `release_time` date NOT NULL COMMENT '歌曲发行时间', PRIMARY KEY (`id`) USING BTREE, INDEX `fk_song_artist_id`(`artist_id`) USING BTREE, CONSTRAINT `fk_song_artist_id` FOREIGN KEY (`artist_id`) REFERENCES `tb_artist` (`id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE = InnoDB AUTO_INCREMENT = 535 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of tb_song -- ---------------------------- INSERT INTO `tb_song` VALUES (2, 107, 'Fool\'s Gold', 'LøVë', NULL, '196.98', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/645b6c4c-c53c-4bc7-9d68-aee20fde416f-blob', 'http://localhost:9000/vibe-music-data/songs/f9580a5c-39a6-4950-8bc0-18d8a8e3612c-Aaron Carter - Fool\'s Gold.mp3', '2017-02-10'); INSERT INTO `tb_song` VALUES (3, 107, 'Sooner Or Later', 'LøVë', NULL, '212.82', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/e92dce27-c5f5-463b-bdc4-d6e864f09942-blob', 'http://localhost:9000/vibe-music-data/songs/e606cbc7-d919-42d1-90bb-56738b8208cf-Aaron Carter - Sooner Or Later.mp3', '2017-02-10'); INSERT INTO `tb_song` VALUES (4, 122, 'Lost Stars', 'V', NULL, '266.77', '欧美流行,摇滚', 'http://localhost:9000/vibe-music-data/songCovers/642adf1e-458a-4033-af5e-a948ef2909f2-blob', 'http://localhost:9000/vibe-music-data/songs/219dadbf-7ac8-4978-8aff-4db87c256eab-Adam Levine - Lost Stars.mp3', '2014-09-02'); INSERT INTO `tb_song` VALUES (5, 28, '晴天的周末在去学校补课的路上遇见了喜欢的人', '致青春的你', NULL, '211.35', '轻音乐', 'http://localhost:9000/vibe-music-data/songCovers/e34d43df-1b6b-4f77-b2cc-9983a9af7d27-blob', 'http://localhost:9000/vibe-music-data/songs/6dfcad85-7ca3-43c1-8584-d12fd9f63e50-AniFace - 晴天的周末在去学校补课的路上遇见了喜欢的人.mp3', '2017-05-08'); INSERT INTO `tb_song` VALUES (6, 109, '34+35', 'Positions (Deluxe', NULL, '173.00', '欧美流行,节奏布鲁斯', 'http://localhost:9000/vibe-music-data/songCovers/1542b3ef-97c1-43bc-ba70-48c4fc68d717-blob', 'http://localhost:9000/vibe-music-data/songs/25e62a66-1355-464a-b3cb-6617005c0d24-Ariana Grande - 34+35.mp3', '2021-02-19'); INSERT INTO `tb_song` VALUES (7, 109, '7 rings', '7 rings', NULL, '178.71', '欧美流行,节奏布鲁斯', 'http://localhost:9000/vibe-music-data/songCovers/580e31fe-857a-4bb3-a0db-b2d520032d7b-blob', 'http://localhost:9000/vibe-music-data/songs/816993b4-25a1-48f1-aeec-b2132baab002-Ariana Grande - 7 rings.mp3', '2019-02-08'); INSERT INTO `tb_song` VALUES (8, 109, 'bad idea', 'thank u, next', NULL, '266.77', '欧美流行,节奏布鲁斯', 'http://localhost:9000/vibe-music-data/songCovers/4889a18e-11dd-48e1-880b-cfa2966155b7-blob', 'http://localhost:9000/vibe-music-data/songs/237599b5-f2c2-46b4-8147-af9abd6659ce-Ariana Grande - bad idea.mp3', '2018-11-03'); INSERT INTO `tb_song` VALUES (9, 109, 'bloodline', 'thank u, next', NULL, '215.45', '欧美流行,节奏布鲁斯', 'http://localhost:9000/vibe-music-data/songCovers/4889a18e-11dd-48e1-880b-cfa2966155b7-blob', 'http://localhost:9000/vibe-music-data/songs/ea03aec0-3943-46af-a312-a17321a5f521-Ariana Grande - bloodline.mp3', '2018-11-03'); INSERT INTO `tb_song` VALUES (10, 109, 'break up with your girlfriend, i\'m bored', 'thank u, next', NULL, '190.82', '欧美流行,节奏布鲁斯', 'http://localhost:9000/vibe-music-data/songCovers/4889a18e-11dd-48e1-880b-cfa2966155b7-blob', 'http://localhost:9000/vibe-music-data/songs/701134a4-d5b8-4cb4-bfea-fb7a6b2d618b-Ariana Grande - break up with your girlfriend, i\'m bored.mp3', '2018-11-03'); INSERT INTO `tb_song` VALUES (11, 109, 'fake smile', 'thank u, next', NULL, '209.3', '欧美流行,节奏布鲁斯', 'http://localhost:9000/vibe-music-data/songCovers/4889a18e-11dd-48e1-880b-cfa2966155b7-blob', 'http://localhost:9000/vibe-music-data/songs/909b4d2c-a5a0-4602-be5f-68792e468879-Ariana Grande - fake smile.mp3', '2018-11-03'); INSERT INTO `tb_song` VALUES (12, 109, 'ghostin', 'thank u, next', NULL, '270.88', '欧美流行,节奏布鲁斯', 'http://localhost:9000/vibe-music-data/songCovers/4889a18e-11dd-48e1-880b-cfa2966155b7-blob', 'http://localhost:9000/vibe-music-data/songs/afb52173-1a6f-44a9-882a-34708b1d52f6-Ariana Grande - ghostin.mp3', '2018-11-03'); INSERT INTO `tb_song` VALUES (13, 109, 'imagine', 'thank u, next', NULL, '211.35', '欧美流行,节奏布鲁斯', 'http://localhost:9000/vibe-music-data/songCovers/4889a18e-11dd-48e1-880b-cfa2966155b7-blob', 'http://localhost:9000/vibe-music-data/songs/5a5a5718-6032-4756-8703-c0199dd2e4a8-Ariana Grande - imagine.mp3', '2018-11-03'); INSERT INTO `tb_song` VALUES (14, 109, 'in my head', 'thank u, next', NULL, '221.61', '欧美流行,节奏布鲁斯', 'http://localhost:9000/vibe-music-data/songCovers/4889a18e-11dd-48e1-880b-cfa2966155b7-blob', 'http://localhost:9000/vibe-music-data/songs/45ec7898-146d-4d21-a566-ca4a855f7298-Ariana Grande - in my head.mp3', '2018-11-03'); INSERT INTO `tb_song` VALUES (15, 109, 'just like magic', 'Positions (Deluxe', NULL, '149.00', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/1542b3ef-97c1-43bc-ba70-48c4fc68d717-blob', 'http://localhost:9000/vibe-music-data/songs/c9e78725-9efa-40bb-947d-f542900bb441-Ariana Grande - just like magic.mp3', '2021-02-19'); INSERT INTO `tb_song` VALUES (16, 109, 'love language', 'Positions (Deluxe', NULL, '179.00', '欧美流行,节奏布鲁斯', 'http://localhost:9000/vibe-music-data/songCovers/1542b3ef-97c1-43bc-ba70-48c4fc68d717-blob', 'http://localhost:9000/vibe-music-data/songs/e58a2e85-2944-4295-8eb0-db1008e4df2b-Ariana Grande - love language.mp3', '2021-02-19'); INSERT INTO `tb_song` VALUES (17, 109, 'main thing', 'Positions (Deluxe', NULL, '129.00', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/1542b3ef-97c1-43bc-ba70-48c4fc68d717-blob', 'http://localhost:9000/vibe-music-data/songs/8ed4815f-b7f0-418b-abc2-5d4dc94de89d-Ariana Grande - main thing.mp3', '2021-02-19'); INSERT INTO `tb_song` VALUES (18, 109, 'make up', 'thank u, next', NULL, '139.5', '欧美流行,节奏布鲁斯', 'http://localhost:9000/vibe-music-data/songCovers/4889a18e-11dd-48e1-880b-cfa2966155b7-blob', 'http://localhost:9000/vibe-music-data/songs/a4ab20da-3348-438a-8f3f-b2c7bf5c6e79-Ariana Grande - make up.mp3', '2018-11-03'); INSERT INTO `tb_song` VALUES (19, 109, 'my hair', 'Positions (Deluxe', NULL, '158.00', '欧美流行,节奏布鲁斯', 'http://localhost:9000/vibe-music-data/songCovers/1542b3ef-97c1-43bc-ba70-48c4fc68d717-blob', 'http://localhost:9000/vibe-music-data/songs/eb861061-5dea-4124-a4fa-01b63c3bc214-Ariana Grande - my hair.mp3', '2021-02-19'); INSERT INTO `tb_song` VALUES (20, 109, 'NASA', 'thank u, next', NULL, '180.56', '欧美流行,节奏布鲁斯', 'http://localhost:9000/vibe-music-data/songCovers/4889a18e-11dd-48e1-880b-cfa2966155b7-blob', 'http://localhost:9000/vibe-music-data/songs/aa555772-550b-4ab2-9174-7e399e8c241b-Ariana Grande - NASA.mp3', '2018-11-03'); INSERT INTO `tb_song` VALUES (21, 109, 'nasty', 'Positions (Deluxe', NULL, '200.00', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/1542b3ef-97c1-43bc-ba70-48c4fc68d717-blob', 'http://localhost:9000/vibe-music-data/songs/ce2127e7-365d-40de-8343-9b91f8e57b34-Ariana Grande - nasty.mp3', '2021-02-19'); INSERT INTO `tb_song` VALUES (22, 109, 'needy', 'thank u, next', NULL, '170.29', '欧美流行,节奏布鲁斯', 'http://localhost:9000/vibe-music-data/songCovers/4889a18e-11dd-48e1-880b-cfa2966155b7-blob', 'http://localhost:9000/vibe-music-data/songs/3ae58234-b896-4003-bb66-80415bc9d765-Ariana Grande - needy.mp3', '2018-11-03'); INSERT INTO `tb_song` VALUES (23, 109, 'obvious', 'Positions (Deluxe', NULL, '146.00', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/1542b3ef-97c1-43bc-ba70-48c4fc68d717-blob', 'http://localhost:9000/vibe-music-data/songs/218603eb-0c1e-4571-ad00-1d514b421446-Ariana Grande - obvious.mp3', '2021-02-19'); INSERT INTO `tb_song` VALUES (24, 109, 'One Last Time', 'My Everything', NULL, '196.75', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/61b55c7c-e796-4151-adbe-3ae1c1cbc634-blob', 'http://localhost:9000/vibe-music-data/songs/611222cb-de59-4942-9441-62bee3159735-Ariana Grande - One Last Time.mp3', '2014-08-22'); INSERT INTO `tb_song` VALUES (25, 109, 'positions', 'Positions (Deluxe', NULL, '172.00', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/1542b3ef-97c1-43bc-ba70-48c4fc68d717-blob', 'http://localhost:9000/vibe-music-data/songs/bc942828-a7ce-4b2d-bd30-cb17ce2b8f06-Ariana Grande - positions.mp3', '2021-02-19'); INSERT INTO `tb_song` VALUES (26, 109, 'pov', 'Positions (Deluxe', NULL, '201.00', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/1542b3ef-97c1-43bc-ba70-48c4fc68d717-blob', 'http://localhost:9000/vibe-music-data/songs/09e20e2f-336f-45bc-a3fb-10731707b42a-Ariana Grande - pov.mp3', '2021-02-19'); INSERT INTO `tb_song` VALUES (27, 109, 'shut up', 'Positions (Deluxe', NULL, '157.00', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/1542b3ef-97c1-43bc-ba70-48c4fc68d717-blob', 'http://localhost:9000/vibe-music-data/songs/ef2824c5-342c-4a62-819c-a494fd04878a-Ariana Grande - shut up.mp3', '2021-02-19'); INSERT INTO `tb_song` VALUES (28, 109, 'six thirty', 'Positions (Deluxe', NULL, '183.00', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/1542b3ef-97c1-43bc-ba70-48c4fc68d717-blob', 'http://localhost:9000/vibe-music-data/songs/948f4207-c30e-4bba-b621-0d4048bbf321-Ariana Grande - six thirty.mp3', '2021-02-19'); INSERT INTO `tb_song` VALUES (29, 109, 'someone like u (interlude', 'Positions (Deluxe', NULL, '76.00', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/1542b3ef-97c1-43bc-ba70-48c4fc68d717-blob', 'http://localhost:9000/vibe-music-data/songs/be0d9d2c-a5c1-497e-b187-5625d478d528-Ariana Grande - someone like u (interlude).mp3', '2021-02-19'); INSERT INTO `tb_song` VALUES (30, 109, 'test drive', 'Positions (Deluxe', NULL, '122.00', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/1542b3ef-97c1-43bc-ba70-48c4fc68d717-blob', 'http://localhost:9000/vibe-music-data/songs/7cfccae0-7fa9-4d02-b311-363dbd8fcff1-Ariana Grande - test drive.mp3', '2021-02-19'); INSERT INTO `tb_song` VALUES (31, 109, 'thank u, next', 'thank u, next', NULL, '207.24', '欧美流行,节奏布鲁斯', 'http://localhost:9000/vibe-music-data/songCovers/4889a18e-11dd-48e1-880b-cfa2966155b7-blob', 'http://localhost:9000/vibe-music-data/songs/71a2baa7-9819-4cee-99c8-125dbf1f02a2-Ariana Grande - thank u, next.mp3', '2018-11-03'); INSERT INTO `tb_song` VALUES (32, 109, 'west side', 'Positions (Deluxe', NULL, '132.00', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/1542b3ef-97c1-43bc-ba70-48c4fc68d717-blob', 'http://localhost:9000/vibe-music-data/songs/1799e29f-45a0-471f-a3ba-1481727376bd-Ariana Grande - west side.mp3', '2021-02-19'); INSERT INTO `tb_song` VALUES (33, 109, 'worst behavior', 'Positions (Deluxe', NULL, '124.00', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/1542b3ef-97c1-43bc-ba70-48c4fc68d717-blob', 'http://localhost:9000/vibe-music-data/songs/cc08889b-511e-40ec-a1d3-13dd08ebb665-Ariana Grande - worst behavior.mp3', '2021-02-19'); INSERT INTO `tb_song` VALUES (34, 109, '7 rings (Remix', '7 rings (Remix', NULL, '178.5', '欧美流行,嘻哈说唱', 'http://localhost:9000/vibe-music-data/songCovers/678730aa-05c3-4850-99e0-d53f6d8a001c-blob', 'http://localhost:9000/vibe-music-data/songs/f6261168-3408-43c3-a28b-e46afe1e0291-Ariana Grande,2 Chainz - 7 rings (Remix).mp3', '2019-02-01'); INSERT INTO `tb_song` VALUES (35, 109, 'motive', 'Positions (Deluxe', NULL, '167.00', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/1542b3ef-97c1-43bc-ba70-48c4fc68d717-blob', 'http://localhost:9000/vibe-music-data/songs/2bebdf46-3298-4a85-a690-bcb1b40f91ac-Ariana Grande,Doja Cat - motive.mp3', '2021-02-19'); INSERT INTO `tb_song` VALUES (36, 109, '34+35 (Remix', 'Positions (Deluxe', NULL, '182.00', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/1542b3ef-97c1-43bc-ba70-48c4fc68d717-blob', 'http://localhost:9000/vibe-music-data/songs/03e0dde2-244b-4839-9cb6-b1b42061d6de-Ariana Grande,Doja Cat,Megan Thee Stallion - 34+35 (Remix).mp3', '2021-02-19'); INSERT INTO `tb_song` VALUES (37, 109, 'Stuck with U', 'Stuck with U', NULL, '227.77', '欧美流行,节奏布鲁斯', 'http://localhost:9000/vibe-music-data/songCovers/ed972843-6948-4375-a439-88765cb675b8-blob', 'http://localhost:9000/vibe-music-data/songs/bc7baedf-9ac4-4ca4-b45e-0466464f277b-Ariana Grande,Justin Bieber - Stuck with U.mp3', '2020-05-08'); INSERT INTO `tb_song` VALUES (38, 109, 'off the table', 'Positions (Deluxe', NULL, '239.00', '欧美流行,节奏布鲁斯', 'http://localhost:9000/vibe-music-data/songCovers/1542b3ef-97c1-43bc-ba70-48c4fc68d717-blob', 'http://localhost:9000/vibe-music-data/songs/4d801bf6-5889-43c5-99e5-dfaf60f6a4d8-Ariana Grande,The Weeknd - off the table.mp3', '2021-02-19'); INSERT INTO `tb_song` VALUES (39, 109, 'safety net', 'Positions (Deluxe', NULL, '208.00', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/1542b3ef-97c1-43bc-ba70-48c4fc68d717-blob', 'http://localhost:9000/vibe-music-data/songs/58671181-3637-4d87-ac34-5f387db01f2b-Ariana Grande,Ty Dolla $ign - safety net.mp3', '2021-02-19'); INSERT INTO `tb_song` VALUES (40, 7, 'A Woodland Night', 'Sunny Bay', NULL, '258.56', '轻音乐', 'http://localhost:9000/vibe-music-data/songCovers/af2c43f2-b393-4e13-bf36-88630a171f05-blob', 'http://localhost:9000/vibe-music-data/songs/1acae1a0-775a-4b55-a6ec-9f981fb7b1d6-Bandari - A Woodland Night.mp3', '2000-08-01'); INSERT INTO `tb_song` VALUES (41, 83, 'Ferrari', 'Expectations', NULL, '212.32', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/3fecfc9f-ebca-4db2-9531-ed5ab1f96080-blob', 'http://localhost:9000/vibe-music-data/songs/42b433e9-fb8e-421c-8a0f-0cf30d3267b9-Bebe Rexha - Ferrari.mp3', '2018-06-22'); INSERT INTO `tb_song` VALUES (42, 83, 'Girl in the Mirror', 'UglyDolls (Original Motion Picture Soundtrack', NULL, '157.97', '欧美流行,原声带', 'http://localhost:9000/vibe-music-data/songCovers/89311ed4-cffb-4d35-bb06-91274ba8a66e-blob', 'http://localhost:9000/vibe-music-data/songs/07934ac7-11ac-424e-a8bb-57404be5ea69-Bebe Rexha - Girl in the Mirror.mp3', '2019-04-26'); INSERT INTO `tb_song` VALUES (43, 38, 'Amani', 'Beyond 怀旧经典金曲 Vol. 1', NULL, '289.35', '粤语流行,摇滚', 'http://localhost:9000/vibe-music-data/songCovers/634d65e4-2035-4f73-9075-3dfe484f20cb-blob', 'http://localhost:9000/vibe-music-data/songs/06e3af1e-aa85-46d6-8cee-ed88d4ac3a01-Beyond - Amani.mp3', '2021-06-21'); INSERT INTO `tb_song` VALUES (44, 38, '不再犹豫', 'Beyond 怀旧经典金曲 Vol. 1', NULL, '254.46', '粤语流行,摇滚', 'http://localhost:9000/vibe-music-data/songCovers/634d65e4-2035-4f73-9075-3dfe484f20cb-blob', 'http://localhost:9000/vibe-music-data/songs/3e21bb10-b8b9-48c8-bece-6253ebe6e78b-Beyond - 不再犹豫.mp3', '2021-06-21'); INSERT INTO `tb_song` VALUES (45, 38, '交织千个心', 'Beyond 怀旧经典金曲 Vol. 2', NULL, '350.93', '粤语流行,摇滚', 'http://localhost:9000/vibe-music-data/songCovers/b08d2e0b-7a78-4847-b633-2bf334849f22-blob', 'http://localhost:9000/vibe-music-data/songs/ced71b85-a34c-4184-affb-928068d9ef18-Beyond - 交织千个心.mp3', '2021-06-30'); INSERT INTO `tb_song` VALUES (46, 38, '光辉岁月', 'Beyond 怀旧经典金曲 Vol. 1', NULL, '297.56', '粤语流行,摇滚', 'http://localhost:9000/vibe-music-data/songCovers/634d65e4-2035-4f73-9075-3dfe484f20cb-blob', 'http://localhost:9000/vibe-music-data/songs/64ae48fd-7115-4eca-85d5-075a749d87db-Beyond - 光辉岁月.mp3', '2021-06-21'); INSERT INTO `tb_song` VALUES (47, 38, '再见理想', 'Beyond 怀旧经典金曲 Vol. 1', NULL, '293.46', '粤语流行,摇滚', 'http://localhost:9000/vibe-music-data/songCovers/634d65e4-2035-4f73-9075-3dfe484f20cb-blob', 'http://localhost:9000/vibe-music-data/songs/442a496d-45f4-48bd-9107-a92a52b9c680-Beyond - 再见理想.mp3', '2021-06-21'); INSERT INTO `tb_song` VALUES (48, 38, '冷雨夜', 'Beyond 怀旧经典金曲 Vol. 2', NULL, '299.62', '粤语流行,摇滚', 'http://localhost:9000/vibe-music-data/songCovers/b08d2e0b-7a78-4847-b633-2bf334849f22-blob', 'http://localhost:9000/vibe-music-data/songs/535e1da7-c92d-4b95-ba20-7845e00fd9a8-Beyond - 冷雨夜.mp3', '2021-06-30'); INSERT INTO `tb_song` VALUES (49, 38, '喜欢你', 'Beyond 怀旧经典金曲 Vol. 2', NULL, '272.93', '粤语流行,摇滚', 'http://localhost:9000/vibe-music-data/songCovers/b08d2e0b-7a78-4847-b633-2bf334849f22-blob', 'http://localhost:9000/vibe-music-data/songs/f7980cae-9463-4667-b202-2898312a35f0-Beyond - 喜欢你.mp3', '2021-06-30'); INSERT INTO `tb_song` VALUES (50, 38, '旧日的足迹', 'Beyond 怀旧经典金曲 Vol. 1', NULL, '322.2', '粤语流行,摇滚', 'http://localhost:9000/vibe-music-data/songCovers/634d65e4-2035-4f73-9075-3dfe484f20cb-blob', 'http://localhost:9000/vibe-music-data/songs/d068a5cd-0426-43bd-ab65-ab007abcfe6a-Beyond - 旧日的足迹.mp3', '2021-06-21'); INSERT INTO `tb_song` VALUES (51, 38, '灰色轨迹', 'Beyond 怀旧经典金曲 Vol. 1', NULL, '326.3', '粤语流行,摇滚', 'http://localhost:9000/vibe-music-data/songCovers/634d65e4-2035-4f73-9075-3dfe484f20cb-blob', 'http://localhost:9000/vibe-music-data/songs/ba077079-fffb-41a1-beee-d0b00f4dc1b5-Beyond - 灰色轨迹.mp3', '2021-06-21'); INSERT INTO `tb_song` VALUES (52, 38, '真的爱你', 'Beyond 怀旧经典金曲 Vol. 2', NULL, '274.98', '粤语流行,摇滚', 'http://localhost:9000/vibe-music-data/songCovers/b08d2e0b-7a78-4847-b633-2bf334849f22-blob', 'http://localhost:9000/vibe-music-data/songs/067b13a2-a7c7-404e-b6e3-d5aac80910bf-Beyond - 真的爱你.mp3', '2021-06-30'); INSERT INTO `tb_song` VALUES (53, 38, '短暂的温柔', 'Beyond 怀旧经典金曲 Vol. 2', NULL, '209.3', '粤语流行,摇滚', 'http://localhost:9000/vibe-music-data/songCovers/b08d2e0b-7a78-4847-b633-2bf334849f22-blob', 'http://localhost:9000/vibe-music-data/songs/a27923a1-352a-4f9e-9dc8-82fe48173a5d-Beyond - 短暂的温柔.mp3', '2021-06-30'); INSERT INTO `tb_song` VALUES (54, 95, 'My Heart Will Go On (Titanic', 'Life is Beautiful', NULL, '266.77', '轻音乐,原声带', 'http://localhost:9000/vibe-music-data/songCovers/695301ac-97d2-4b6b-8477-7ec41795598c-blob', 'http://localhost:9000/vibe-music-data/songs/f244c97b-5de3-4bd5-8c13-e8dc6614ab12-Bronn Journey - My Heart Will Go On (Titanic).mp3', '2006-07-26'); INSERT INTO `tb_song` VALUES (55, 110, 'The Lazy Song', 'Doo-Wops & Hooligans', NULL, '195.93', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/07cdcfa8-643e-4eea-bb8b-52d1a9313d28-blob', 'http://localhost:9000/vibe-music-data/songs/1ff9a0e5-0bed-40ea-b05b-800b016866e4-Bruno Mars - The Lazy Song.mp3', '2010-05-11'); INSERT INTO `tb_song` VALUES (56, 67, 'One Kiss', 'Dua Lipa (Complete Edition', NULL, '213.4', '欧美流行,电子', 'http://localhost:9000/vibe-music-data/songCovers/ba763d94-5668-462f-9490-f066f9fefb11-blob', 'http://localhost:9000/vibe-music-data/songs/014e51fd-b1af-4c07-b357-f9099dba068c-Calvin Harris,Dua Lipa - One Kiss.mp3', '2018-10-25'); INSERT INTO `tb_song` VALUES (57, 15, '1999', '1999', NULL, '188.55', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/57e5f161-8e78-4125-9d0c-9b526f0138ee-blob', 'http://localhost:9000/vibe-music-data/songs/95565bcb-92cb-407b-953d-6e8ff78cacf9-Charli xcx,Troye Sivan - 1999.mp3', '2018-10-05'); INSERT INTO `tb_song` VALUES (58, 90, 'We Don\'t Talk Anymore', 'Nine Track Mind', NULL, '217.5', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/ab3f4adc-a25d-45c3-86c4-e7156d671a09-blob', 'http://localhost:9000/vibe-music-data/songs/72edbbe0-ccb7-43c5-a469-b94bf0d84740-Charlie Puth,Selena Gomez - We Don\'t Talk Anymore.mp3', '2016-01-29'); INSERT INTO `tb_song` VALUES (59, 55, 'High', 'Under the Surface', NULL, '184.66', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/129e151a-32b1-4ef0-bc63-18cbcb7b0a0f-blob', 'http://localhost:9000/vibe-music-data/songs/b5d515a8-f2b4-475a-b310-9acdef2c6d9b-Christopher - High.mp3', '2019-02-22'); INSERT INTO `tb_song` VALUES (60, 55, 'Waterfall', 'Told You So', NULL, '188.77', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/04303f59-0599-4c33-a382-c3de7a4d7b7e-blob', 'http://localhost:9000/vibe-music-data/songs/5f982fba-481a-4678-a8f2-4340bb3c253c-Christopher - Waterfall.mp3', '2014-03-24'); INSERT INTO `tb_song` VALUES (61, 55, 'I Won\'t Let You Down', 'Closer', NULL, '219.56', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/b95de704-e06d-425d-987f-bfcee15f6506-blob', 'http://localhost:9000/vibe-music-data/songs/056c2faa-5939-40d4-a45a-07ddd115bf9f-Christopher,Bekuh Boom - I Won\'t Let You Down.mp3', '2016-04-15'); INSERT INTO `tb_song` VALUES (62, 77, '月光', '世界著名交响乐团演奏的古典音乐系列之二 世界著名婚礼音乐', NULL, '306.1', '古典', 'http://localhost:9000/vibe-music-data/songCovers/fd12511d-4390-4c15-9293-c09b01665a28-blob', 'http://localhost:9000/vibe-music-data/songs/a970cf19-a575-4415-9c38-d3a76f042bcf-Claude Debussy - 月光.mp3', '2005-01-01'); INSERT INTO `tb_song` VALUES (63, 116, 'Wavey', 'Wavey', NULL, '165.16', '电子', 'http://localhost:9000/vibe-music-data/songCovers/0dd2f6f8-eca5-438b-b1d0-27b11b0af368-blob', 'http://localhost:9000/vibe-music-data/songs/cda07e51-1e47-476a-a335-5e5c6d970ccd-CliQ,Alika - Wavey.mp3', '2017-11-03'); INSERT INTO `tb_song` VALUES (64, 56, 'Take me hand', 'WONDER Tourism', NULL, '260.27', '电子', 'http://localhost:9000/vibe-music-data/songCovers/b85e69f1-118e-446d-a4df-2b5b40ea685d-blob', 'http://localhost:9000/vibe-music-data/songs/96c6eaee-3734-429b-be8f-d671a05d3b85-DAISHI DANCE,Cécile Corbel - Take Me Hand.mp3', '2012-11-14'); INSERT INTO `tb_song` VALUES (65, 91, '10,000 Hours', '10,000 Hours', NULL, '165.81', '欧美流行,乡村', 'http://localhost:9000/vibe-music-data/songCovers/c6ec2e01-e321-42ee-b0fa-1162aac2074c-blob', 'http://localhost:9000/vibe-music-data/songs/02419e06-4e94-4d90-beb2-7d415e65e10d-Dan + Shay,Justin Bieber - 10,000 Hours.mp3', '2019-10-04'); INSERT INTO `tb_song` VALUES (66, 33, 'No Place I\'s Rather Be', 'Canoe Country', NULL, '392.66', '轻音乐', 'http://localhost:9000/vibe-music-data/songCovers/77a9cf00-fc18-4860-a4d7-8760016826b9-blob', 'http://localhost:9000/vibe-music-data/songs/8c64dbd5-a375-427c-8465-305650768227-Dan Gibson - No Place I\'s Rather Be.mp3', '2010-07-01'); INSERT INTO `tb_song` VALUES (67, 33, 'Seaside Retreat', 'Seaside Retreat', NULL, '449.46', '轻音乐', 'http://localhost:9000/vibe-music-data/songCovers/18fcfcf1-379f-425d-870f-e165405444f5-blob', 'http://localhost:9000/vibe-music-data/songs/b30d40d1-b948-4c8b-b7fc-9713cd3ddf86-Dan Gibson - Seaside Retreat.mp3', '2013-11-21'); INSERT INTO `tb_song` VALUES (68, 13, '打上花火', '打上花火', NULL, '2829.44', '日本流行,原声带', 'http://localhost:9000/vibe-music-data/songCovers/d4612954-4151-455e-8c36-55c27c66dabd-blob', 'http://localhost:9000/vibe-music-data/songs/76f858d5-bb71-454f-a58f-47ef32743ab5-Daoko,米津玄師 - 打上花火.mp3', '2017-08-16'); INSERT INTO `tb_song` VALUES (69, 119, 'Taki Taki', 'Taki Taki', NULL, '213.1', '电子', 'http://localhost:9000/vibe-music-data/songCovers/ee29c833-90eb-42b3-aa08-6d1e10ad3421-blob', 'http://localhost:9000/vibe-music-data/songs/7443d4e2-d9cc-4f25-86e3-4e150e7f3cf0-DJ Snake,Selena Gomez,Ozuna - Taki Taki.mp3', '2018-09-28'); INSERT INTO `tb_song` VALUES (70, 67, 'Bad Together', 'Dua Lipa (Complete Edition', NULL, '238.03', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/ba763d94-5668-462f-9490-f066f9fefb11-blob', 'http://localhost:9000/vibe-music-data/songs/88d37233-67dc-4176-8f9f-3aad3276fc2f-Dua Lipa - Bad Together.mp3', '2018-10-25'); INSERT INTO `tb_song` VALUES (71, 67, 'Be The One', 'Dua Lipa (Complete Edition', NULL, '203.14', '欧美流行,电子', 'http://localhost:9000/vibe-music-data/songCovers/ba763d94-5668-462f-9490-f066f9fefb11-blob', 'http://localhost:9000/vibe-music-data/songs/6215b687-ab65-426a-bec7-ce44bd08ddd3-Dua Lipa - Be The One.mp3', '2018-10-25'); INSERT INTO `tb_song` VALUES (72, 67, 'Begging', 'Dua Lipa (Complete Edition', NULL, '192.87', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/ba763d94-5668-462f-9490-f066f9fefb11-blob', 'http://localhost:9000/vibe-music-data/songs/eb86546c-7250-423e-834b-d58c29474397-Dua Lipa - Begging.mp3', '2018-10-25'); INSERT INTO `tb_song` VALUES (73, 67, 'Blow Your Mind (Mwah', 'Dua Lipa (Complete Edition', NULL, '178.5', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/ba763d94-5668-462f-9490-f066f9fefb11-blob', 'http://localhost:9000/vibe-music-data/songs/4462c5f1-2c95-4fd7-a05a-e2477c1ca6f4-Dua Lipa - Blow Your Mind (Mwah).mp3', '2018-10-25'); INSERT INTO `tb_song` VALUES (74, 67, 'Don\'t Start Now', 'Don\'t Start Now', NULL, '182.19', '电子', 'http://localhost:9000/vibe-music-data/songCovers/682835cb-3a0f-456d-a30d-16283780d6e3-blob', 'http://localhost:9000/vibe-music-data/songs/660fa0c6-cb1f-46b6-beeb-0ceb13409fc9-Dua Lipa - Don\'t Start Now.mp3', '2019-10-31'); INSERT INTO `tb_song` VALUES (75, 67, 'Dreams', 'Dua Lipa (Complete Edition', NULL, '219.56', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/ba763d94-5668-462f-9490-f066f9fefb11-blob', 'http://localhost:9000/vibe-music-data/songs/1cb0018e-5bb0-4073-b477-ae4b864facb1-Dua Lipa - Dreams.mp3', '2018-10-25'); INSERT INTO `tb_song` VALUES (76, 67, 'Garden', 'Dua Lipa (Complete Edition', NULL, '227.77', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/ba763d94-5668-462f-9490-f066f9fefb11-blob', 'http://localhost:9000/vibe-music-data/songs/72ee0de0-ec3a-4ca8-9b55-9b25b43ab98e-Dua Lipa - Garden.mp3', '2018-10-25'); INSERT INTO `tb_song` VALUES (77, 67, 'Genesis', 'Dua Lipa (Complete Edition', NULL, '205.19', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/ba763d94-5668-462f-9490-f066f9fefb11-blob', 'http://localhost:9000/vibe-music-data/songs/734fd592-610f-4620-9f15-3be7bbf21693-Dua Lipa - Genesis.mp3', '2018-10-25'); INSERT INTO `tb_song` VALUES (78, 67, 'Homesick', 'Dua Lipa (Complete Edition', NULL, '229.82', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/ba763d94-5668-462f-9490-f066f9fefb11-blob', 'http://localhost:9000/vibe-music-data/songs/5955cfb0-e150-4d32-86b4-a0833105e466-Dua Lipa - Homesick.mp3', '2018-10-25'); INSERT INTO `tb_song` VALUES (79, 67, 'Hotter Than Hell', 'Dua Lipa (Complete Edition', NULL, '186.71', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/ba763d94-5668-462f-9490-f066f9fefb11-blob', 'http://localhost:9000/vibe-music-data/songs/a1e6af3b-bdd8-4fdf-b405-7ea05ba635fc-Dua Lipa - Hotter Than Hell.mp3', '2018-10-25'); INSERT INTO `tb_song` VALUES (80, 67, 'IDGAF', 'Dua Lipa (Complete Edition', NULL, '217.51', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/ba763d94-5668-462f-9490-f066f9fefb11-blob', 'http://localhost:9000/vibe-music-data/songs/cd66e893-b075-46cd-9c58-e8c3c6e264f2-Dua Lipa - IDGAF.mp3', '2018-10-25'); INSERT INTO `tb_song` VALUES (81, 67, 'Illusion', 'Illusion', NULL, '186.72', '欧美流行,电子', 'http://localhost:9000/vibe-music-data/songCovers/e631bfc7-6861-4f24-af41-2f3042c97929-blob', 'http://localhost:9000/vibe-music-data/songs/6d503fa4-fadd-43c5-bf2a-c906d13872f6-Dua Lipa - Illusion.mp3', '2024-04-11'); INSERT INTO `tb_song` VALUES (82, 67, 'Last Dance', 'Dua Lipa (Complete Edition', NULL, '227.77', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/ba763d94-5668-462f-9490-f066f9fefb11-blob', 'http://localhost:9000/vibe-music-data/songs/a84b74a7-fdac-46c3-a259-9a4392a95d45-Dua Lipa - Last Dance.mp3', '2018-10-25'); INSERT INTO `tb_song` VALUES (83, 67, 'Levitating', 'Future Nostalgia', NULL, '202.67', '电子,嘻哈说唱', 'http://localhost:9000/vibe-music-data/songCovers/b56f1c6a-9141-4029-aac6-2f6238d01ae1-blob', 'http://localhost:9000/vibe-music-data/songs/bc6d6460-2545-4096-bb98-bac783739bac-Dua Lipa - Levitating.mp3', '2020-03-27'); INSERT INTO `tb_song` VALUES (84, 67, 'New Love', 'Dua Lipa (Complete Edition', NULL, '270.88', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/ba763d94-5668-462f-9490-f066f9fefb11-blob', 'http://localhost:9000/vibe-music-data/songs/e78d150c-45a1-49fa-a332-dd95a3d0b880-Dua Lipa - New Love.mp3', '2018-10-25'); INSERT INTO `tb_song` VALUES (85, 67, 'New Rules (Live', 'Dua Lipa (Complete Edition', NULL, '274.98', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/ba763d94-5668-462f-9490-f066f9fefb11-blob', 'http://localhost:9000/vibe-music-data/songs/79a627b8-5b38-41b0-9fad-ea010d1a7d05-Dua Lipa - New Rules (Live).mp3', '2018-10-25'); INSERT INTO `tb_song` VALUES (86, 67, 'New Rules', 'Dua Lipa (Complete Edition', NULL, '209.29', '欧美流行,电子', 'http://localhost:9000/vibe-music-data/songCovers/ba763d94-5668-462f-9490-f066f9fefb11-blob', 'http://localhost:9000/vibe-music-data/songs/115708e8-464f-4b08-bf92-e957841431f3-Dua Lipa - New Rules.mp3', '2018-10-25'); INSERT INTO `tb_song` VALUES (87, 67, 'No Goodbyes', 'Dua Lipa (Complete Edition', NULL, '215.45', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/ba763d94-5668-462f-9490-f066f9fefb11-blob', 'http://localhost:9000/vibe-music-data/songs/0006e5e2-3614-47d5-a754-0d77ca6b9297-Dua Lipa - No Goodbyes.mp3', '2018-10-25'); INSERT INTO `tb_song` VALUES (88, 67, 'Room For 2', 'Dua Lipa (Complete Edition', NULL, '207.24', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/ba763d94-5668-462f-9490-f066f9fefb11-blob', 'http://localhost:9000/vibe-music-data/songs/4340a11a-1295-4fc5-8e74-bf2047b29f93-Dua Lipa - Room For 2.mp3', '2018-10-25'); INSERT INTO `tb_song` VALUES (89, 67, 'Running', 'Dua Lipa (Complete Edition', NULL, '221.61', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/ba763d94-5668-462f-9490-f066f9fefb11-blob', 'http://localhost:9000/vibe-music-data/songs/f4b5de57-ac14-404a-a993-df800c8213ae-Dua Lipa - Running.mp3', '2018-10-25'); INSERT INTO `tb_song` VALUES (90, 67, 'Swan Song', 'Swan Song (From Alita: Battle Angel', NULL, '180.14', '欧美流行,原声带', 'http://localhost:9000/vibe-music-data/songCovers/1eca7535-22ed-44b9-b01e-57ca613443cd-blob', 'http://localhost:9000/vibe-music-data/songs/4bf909d5-5cf1-4c5a-9058-009228ea72e7-Dua Lipa - Swan Song.mp3', '2019-01-24'); INSERT INTO `tb_song` VALUES (91, 67, 'Thinking \'Bout You', 'Dua Lipa (Complete Edition', NULL, '172.34', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/ba763d94-5668-462f-9490-f066f9fefb11-blob', 'http://localhost:9000/vibe-music-data/songs/98d671bb-59a2-401b-9f63-dde11d494d38-Dua Lipa - Thinking \'Bout You.mp3', '2018-10-25'); INSERT INTO `tb_song` VALUES (92, 67, 'Want To', 'Dua Lipa (Complete Edition', NULL, '211.35', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/ba763d94-5668-462f-9490-f066f9fefb11-blob', 'http://localhost:9000/vibe-music-data/songs/3d7b8bb5-4885-47fd-a6e1-6043f2d33b6a-Dua Lipa - Want To.mp3', '2018-10-25'); INSERT INTO `tb_song` VALUES (93, 67, 'Kiss and Make Up', 'Dua Lipa (Complete Edition', NULL, '188.76', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/ba763d94-5668-462f-9490-f066f9fefb11-blob', 'http://localhost:9000/vibe-music-data/songs/e599a028-2fde-4bc8-b631-b95dd4810347-Dua Lipa,BLACKPINK - Kiss and Make Up.mp3', '2018-10-25'); INSERT INTO `tb_song` VALUES (94, 67, 'Scared to Be Lonely', 'Dua Lipa (Complete Edition', NULL, '221.61', '电子', 'http://localhost:9000/vibe-music-data/songCovers/ba763d94-5668-462f-9490-f066f9fefb11-blob', 'http://localhost:9000/vibe-music-data/songs/357e1f11-fde3-4bfa-af45-f2f36cb41aea-Dua Lipa,Martin Garrix - Scared to Be Lonely.mp3', '2018-10-25'); INSERT INTO `tb_song` VALUES (95, 67, 'Lost In Your Light', 'Dua Lipa (Complete Edition', NULL, '203.13', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/ba763d94-5668-462f-9490-f066f9fefb11-blob', 'http://localhost:9000/vibe-music-data/songs/ec92bc07-4533-4933-921b-6d8d627d904b-Dua Lipa,Miguel - Lost In Your Light.mp3', '2018-10-25'); INSERT INTO `tb_song` VALUES (96, 93, 'Afire Love', 'X (Deluxe Edition', NULL, '314.63', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/f6523218-578a-4f58-8536-df92a145dbe4-blob', 'http://localhost:9000/vibe-music-data/songs/dbd21a2a-fc46-46a8-9ec1-d645f3bd85b1-Ed Sheeran - Afire Love.mp3', '2014-06-20'); INSERT INTO `tb_song` VALUES (97, 93, 'All Of the Stars', 'X (Deluxe Edition', NULL, '237.43', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/f6523218-578a-4f58-8536-df92a145dbe4-blob', 'http://localhost:9000/vibe-music-data/songs/46cd6639-8598-4bd9-8651-cd97e4cd6e06-Ed Sheeran - All of the Stars.mp3', '2014-06-20'); INSERT INTO `tb_song` VALUES (98, 93, 'Barcelona', '÷ (Deluxe', NULL, '190.82', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/e8bd4886-df06-402a-8104-7e8905e9100e-blob', 'http://localhost:9000/vibe-music-data/songs/1ff9e7a3-7af9-4ad4-ad42-8c33a7b597ef-Ed Sheeran - Barcelona.mp3', '2017-03-03'); INSERT INTO `tb_song` VALUES (99, 93, 'Bibia Be Ye Ye', '÷ (Deluxe', NULL, '176.45', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/e8bd4886-df06-402a-8104-7e8905e9100e-blob', 'http://localhost:9000/vibe-music-data/songs/3eb7b91e-c610-40b9-9f8e-7596723f58f6-Ed Sheeran - Bibia Be Ye Ye.mp3', '2017-03-03'); INSERT INTO `tb_song` VALUES (100, 93, 'Bloodstream', 'X (Deluxe Edition', NULL, '300.59', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/f6523218-578a-4f58-8536-df92a145dbe4-blob', 'http://localhost:9000/vibe-music-data/songs/09aed4d8-311b-4825-b963-5c1f8116bf9b-Ed Sheeran - Bloodstream.mp3', '2014-06-20'); INSERT INTO `tb_song` VALUES (101, 93, 'Castle on the Hill', '÷ (Deluxe', NULL, '260.61', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/e8bd4886-df06-402a-8104-7e8905e9100e-blob', 'http://localhost:9000/vibe-music-data/songs/ff86670b-97de-48ef-a863-3c89a7c9e558-Ed Sheeran - Castle on the Hill.mp3', '2017-03-03'); INSERT INTO `tb_song` VALUES (102, 93, 'Dive', '÷ (Deluxe', NULL, '238.03', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/e8bd4886-df06-402a-8104-7e8905e9100e-blob', 'http://localhost:9000/vibe-music-data/songs/60158ee3-b3d3-44d5-94d6-23e073d3c660-Ed Sheeran - Dive.mp3', '2017-03-03'); INSERT INTO `tb_song` VALUES (103, 93, 'Don\'t', 'X (Deluxe Edition', NULL, '220.07', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/f6523218-578a-4f58-8536-df92a145dbe4-blob', 'http://localhost:9000/vibe-music-data/songs/19c48f74-87ba-4427-94e5-862d3cc168ef-Ed Sheeran - Don\'t.mp3', '2014-06-20'); INSERT INTO `tb_song` VALUES (104, 93, 'Eraser', '÷ (Deluxe', NULL, '227.77', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/e8bd4886-df06-402a-8104-7e8905e9100e-blob', 'http://localhost:9000/vibe-music-data/songs/90c7e93f-60a7-4a49-a4a6-5a8825bd5a36-Ed Sheeran - Eraser.mp3', '2017-03-03'); INSERT INTO `tb_song` VALUES (105, 93, 'Even My Dad Does Sometimes', 'X (Deluxe Edition', NULL, '227.77', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/f6523218-578a-4f58-8536-df92a145dbe4-blob', 'http://localhost:9000/vibe-music-data/songs/be905901-c005-41ed-9d79-108dc3355b31-Ed Sheeran - Even My Dad Does Sometimes.mp3', '2014-06-20'); INSERT INTO `tb_song` VALUES (106, 93, 'Galway Girl', '÷ (Deluxe', NULL, '170.29', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/e8bd4886-df06-402a-8104-7e8905e9100e-blob', 'http://localhost:9000/vibe-music-data/songs/b7ba5e1d-3f6f-484f-9239-abd216f95491-Ed Sheeran - Galway Girl.mp3', '2017-03-03'); INSERT INTO `tb_song` VALUES (107, 93, 'Happier', '÷ (Deluxe', NULL, '207.24', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/e8bd4886-df06-402a-8104-7e8905e9100e-blob', 'http://localhost:9000/vibe-music-data/songs/0937bfc4-f958-45d7-89d2-148849c6527d-Ed Sheeran - Happier.mp3', '2017-03-03'); INSERT INTO `tb_song` VALUES (108, 93, 'Hearts Don\'t Break Around Here', '÷ (Deluxe', NULL, '248.3', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/e8bd4886-df06-402a-8104-7e8905e9100e-blob', 'http://localhost:9000/vibe-music-data/songs/97b9583a-91c5-4b83-9121-8769fb14d9fb-Ed Sheeran - Hearts Don\'t Break Around Here.mp3', '2017-03-03'); INSERT INTO `tb_song` VALUES (109, 93, 'How Would You Feel (Paean', '÷ (Deluxe', NULL, '280.85', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/e8bd4886-df06-402a-8104-7e8905e9100e-blob', 'http://localhost:9000/vibe-music-data/songs/de2854e6-0a80-4742-9f9e-7d843f05c0a6-Ed Sheeran - How Would You Feel (Paean).mp3', '2017-03-03'); INSERT INTO `tb_song` VALUES (110, 93, 'I See Fire', 'X (Deluxe Edition', NULL, '301.17', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/f6523218-578a-4f58-8536-df92a145dbe4-blob', 'http://localhost:9000/vibe-music-data/songs/d54df814-2abf-46dc-be1f-0547d7783335-Ed Sheeran - I See Fire.mp3', '2014-06-20'); INSERT INTO `tb_song` VALUES (111, 93, 'I\'m A Mess', 'X (Deluxe Edition', NULL, '244.85', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/f6523218-578a-4f58-8536-df92a145dbe4-blob', 'http://localhost:9000/vibe-music-data/songs/63e18979-8799-4570-ab1e-0c4ebce2632a-Ed Sheeran - I\'m a Mess.mp3', '2014-06-20'); INSERT INTO `tb_song` VALUES (112, 93, 'Nancy Mulligan', '÷ (Deluxe', NULL, '178.5', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/e8bd4886-df06-402a-8104-7e8905e9100e-blob', 'http://localhost:9000/vibe-music-data/songs/9ff68ddc-7db3-444f-bf11-0be0925640e9-Ed Sheeran - Nancy Mulligan.mp3', '2017-03-03'); INSERT INTO `tb_song` VALUES (113, 93, 'New Man', '÷ (Deluxe', NULL, '188.77', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/e8bd4886-df06-402a-8104-7e8905e9100e-blob', 'http://localhost:9000/vibe-music-data/songs/ccafa05a-6199-421b-8ba0-04b087ccb7d4-Ed Sheeran - New Man.mp3', '2017-03-03'); INSERT INTO `tb_song` VALUES (114, 93, 'Nina', 'X (Deluxe Edition', NULL, '225.77', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/f6523218-578a-4f58-8536-df92a145dbe4-blob', 'http://localhost:9000/vibe-music-data/songs/25d49903-acc0-41e8-aa92-cc8a9dc52c7b-Ed Sheeran - Nina.mp3', '2014-06-20'); INSERT INTO `tb_song` VALUES (115, 93, 'One', 'X (Deluxe Edition', NULL, '252.4', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/f6523218-578a-4f58-8536-df92a145dbe4-blob', 'http://localhost:9000/vibe-music-data/songs/04f2c5ac-895b-463d-9fef-3a44ba9c5938-Ed Sheeran - One.mp3', '2014-06-20'); INSERT INTO `tb_song` VALUES (116, 93, 'Perfect', '÷ (Deluxe', NULL, '263.94', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/e8bd4886-df06-402a-8104-7e8905e9100e-blob', 'http://localhost:9000/vibe-music-data/songs/3c27b136-d0cd-474c-b232-3c28b1879885-Ed Sheeran - Perfect.mp3', '2017-03-03'); INSERT INTO `tb_song` VALUES (117, 93, 'Photograph', 'X (Deluxe Edition', NULL, '259.28', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/f6523218-578a-4f58-8536-df92a145dbe4-blob', 'http://localhost:9000/vibe-music-data/songs/247ff2f8-f8a7-49c3-a2a2-53ca788fd0a9-Ed Sheeran - Photograph.mp3', '2014-06-20'); INSERT INTO `tb_song` VALUES (118, 93, 'Runaway', 'X (Deluxe Edition', NULL, '205.37', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/f6523218-578a-4f58-8536-df92a145dbe4-blob', 'http://localhost:9000/vibe-music-data/songs/96e8162a-ac88-48d8-9531-8c58211e1d19-Ed Sheeran - Runaway.mp3', '2014-06-20'); INSERT INTO `tb_song` VALUES (119, 93, 'Save Myself', '÷ (Deluxe', NULL, '246.24', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/e8bd4886-df06-402a-8104-7e8905e9100e-blob', 'http://localhost:9000/vibe-music-data/songs/efeb4b11-908f-41de-92ca-5299321a716d-Ed Sheeran - Save Myself.mp3', '2017-03-03'); INSERT INTO `tb_song` VALUES (120, 93, 'Shape of You', '÷ (Deluxe', NULL, '233.93', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/e8bd4886-df06-402a-8104-7e8905e9100e-blob', 'http://localhost:9000/vibe-music-data/songs/cc6373cd-9725-4891-8645-77382460b281-Ed Sheeran - Shape of You.mp3', '2017-03-03'); INSERT INTO `tb_song` VALUES (121, 93, 'Shirtsleeves', 'X (Deluxe Edition', NULL, '190.47', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/f6523218-578a-4f58-8536-df92a145dbe4-blob', 'http://localhost:9000/vibe-music-data/songs/6ec6a7f5-61f1-4f27-8332-fc5c2ad3a087-Ed Sheeran - Shirtsleeves.mp3', '2014-06-20'); INSERT INTO `tb_song` VALUES (122, 93, 'Sing', 'X (Deluxe Edition', NULL, '235.98', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/f6523218-578a-4f58-8536-df92a145dbe4-blob', 'http://localhost:9000/vibe-music-data/songs/99cf0560-b4ac-42f1-9876-ee94ad92a192-Ed Sheeran - Sing.mp3', '2014-06-20'); INSERT INTO `tb_song` VALUES (123, 93, 'Supermarket Flowers', '÷ (Deluxe', NULL, '221.61', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/e8bd4886-df06-402a-8104-7e8905e9100e-blob', 'http://localhost:9000/vibe-music-data/songs/0069fd3d-9a12-4011-bee1-6e61c4812bc8-Ed Sheeran - Supermarket Flowers.mp3', '2017-03-03'); INSERT INTO `tb_song` VALUES (124, 93, 'Take It Back', 'X (Deluxe Edition', NULL, '208.64', '欧美流行,嘻哈说唱', 'http://localhost:9000/vibe-music-data/songCovers/f6523218-578a-4f58-8536-df92a145dbe4-blob', 'http://localhost:9000/vibe-music-data/songs/5d61ba2e-245e-4e83-b6df-31d62c7afd05-Ed Sheeran - Take It Back.mp3', '2014-06-20'); INSERT INTO `tb_song` VALUES (125, 93, 'Tenerife Sea', 'X (Deluxe Edition', NULL, '241.62', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/f6523218-578a-4f58-8536-df92a145dbe4-blob', 'http://localhost:9000/vibe-music-data/songs/11c9b90d-584c-47d2-9b89-4d708162d832-Ed Sheeran - Tenerife Sea.mp3', '2014-06-20'); INSERT INTO `tb_song` VALUES (126, 93, 'The Man', 'X (Deluxe Edition', NULL, '250.71', '欧美流行,嘻哈说唱', 'http://localhost:9000/vibe-music-data/songCovers/f6523218-578a-4f58-8536-df92a145dbe4-blob', 'http://localhost:9000/vibe-music-data/songs/542ef4a6-7c7a-4db4-af93-d993c0882c81-Ed Sheeran - The Man.mp3', '2014-06-20'); INSERT INTO `tb_song` VALUES (127, 93, 'Thinking Out Loud', 'X (Deluxe Edition', NULL, '281.87', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/f6523218-578a-4f58-8536-df92a145dbe4-blob', 'http://localhost:9000/vibe-music-data/songs/7d522b26-d6e9-4d3e-87ab-f3cff0182c5c-Ed Sheeran - Thinking out Loud.mp3', '2014-06-20'); INSERT INTO `tb_song` VALUES (128, 93, 'What Do I Know?', '÷ (Deluxe', NULL, '235.98', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/e8bd4886-df06-402a-8104-7e8905e9100e-blob', 'http://localhost:9000/vibe-music-data/songs/b71f8ec7-9892-416a-a32a-6b4603ec4d9a-Ed Sheeran - What Do I Know.mp3', '2017-03-03'); INSERT INTO `tb_song` VALUES (129, 68, 'Mozart: The Magic Flute, Queen of the Night - Aria N° 14', 'Murmurs of Earth', NULL, '178.59', '古典', 'http://localhost:9000/vibe-music-data/songCovers/69252898-8e02-4ffe-9ad4-3e59b4e0e18d-blob', 'http://localhost:9000/vibe-music-data/songs/fbe0e1e8-cd48-41f2-8cc3-6578ff5b68db-Edda Moser,Wolfgang Sawallisch - Mozart The Magic Flute, Queen of the Night - Aria N° 14.mp3', '1992-01-01'); INSERT INTO `tb_song` VALUES (130, 41, 'Slow Grenade', 'Brightest Blue', NULL, '217.51', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/ee2a85af-006f-41ba-8ac1-fd294c586252-blob', 'http://localhost:9000/vibe-music-data/songs/800a051b-4a27-4e34-ae99-faabfac408dc-Ellie Goulding,Lauv - Slow Grenade.mp3', '2020-07-17'); INSERT INTO `tb_song` VALUES (132, 80, 'The Golden Harp', 'Emerald Valley', NULL, '252.4', '古典', 'http://localhost:9000/vibe-music-data/songCovers/f71361dd-0b7e-4c59-9824-2c384ff7d7bf-blob', 'http://localhost:9000/vibe-music-data/songs/945322bc-8f40-4ac9-9430-832a0def0c42-Ethno Music Project - The Golden Harp.mp3', '2007-05-01'); INSERT INTO `tb_song` VALUES (133, 80, 'Woodland Night', 'Bandari 20th Anniversary Collection', NULL, '265.94', '轻音乐', 'http://localhost:9000/vibe-music-data/songCovers/ac0c7f13-8c8d-42f2-9a5b-1be8ea4c7f7b-blob', 'http://localhost:9000/vibe-music-data/songs/7ce4fe32-c4e1-4280-9499-b59f17b383f9-Ethno Music Project - Woodland Night.mp3', '2010-02-01'); INSERT INTO `tb_song` VALUES (134, 18, 'Where Did U Go', 'G.E.M.', NULL, '235.98', '粤语流行', 'http://localhost:9000/vibe-music-data/songCovers/5908e03f-e1ea-483f-9036-8aca6caebd50-blob', 'http://localhost:9000/vibe-music-data/songs/51b13dbc-8e6f-49e8-af37-d8b2fc410669-G.E.M.邓紫棋 - Where Did U Go.mp3', '2008-10-15'); INSERT INTO `tb_song` VALUES (135, 18, '你把我灌醉', 'The Best of G.E.M. 2008 - 2012 (Deluxe Version', NULL, '285.24', '华语流行', 'http://localhost:9000/vibe-music-data/songCovers/14b9397a-e313-493b-b3ac-a4304d5d70b6-blob', 'http://localhost:9000/vibe-music-data/songs/985a1b03-ef51-4419-9ac9-505917d10d43-G.E.M.邓紫棋 - 你把我灌醉.mp3', '2013-06-21'); INSERT INTO `tb_song` VALUES (136, 18, '倒数', '另一个童话', NULL, '229.6', '华语流行', 'http://localhost:9000/vibe-music-data/songCovers/cfbd3eac-3b4c-4af5-bc61-38ee52d72e89-blob', 'http://localhost:9000/vibe-music-data/songs/2bb762a1-1d14-4c18-bd70-357d650754ee-G.E.M.邓紫棋 - 倒数.mp3', '2018-08-16'); INSERT INTO `tb_song` VALUES (137, 18, '光年之外', '光年之外', NULL, '235.77', '华语流行,原声带', 'http://localhost:9000/vibe-music-data/songCovers/8f20dd0c-f102-4d19-8192-35f6600893a5-blob', 'http://localhost:9000/vibe-music-data/songs/22fe07c2-52f2-4581-aed0-2eb6856120fa-G.E.M.邓紫棋 - 光年之外.mp3', '2016-12-30'); INSERT INTO `tb_song` VALUES (138, 18, '句号', '摩天动物园', NULL, '235.98', '华语流行', 'http://localhost:9000/vibe-music-data/songCovers/ed7f43af-44a9-448e-be04-fd41da8b7986-blob', 'http://localhost:9000/vibe-music-data/songs/92fdb8b5-8161-4000-9d30-4bcd344c74f4-G.E.M.邓紫棋 - 句号.mp3', '2019-12-14'); INSERT INTO `tb_song` VALUES (139, 18, '喜欢你', '喜欢你', NULL, '238.04', '粤语流行', 'http://localhost:9000/vibe-music-data/songCovers/fa76d9f1-08c7-4e3f-a6a1-79a32971d391-blob', 'http://localhost:9000/vibe-music-data/songs/86953551-5cf8-431b-9f86-c149edcdb9b1-G.E.M.邓紫棋 - 喜欢你.mp3', '2014-08-15'); INSERT INTO `tb_song` VALUES (140, 18, '多远都要在一起', '新的心跳', NULL, '215.46', '华语流行', 'http://localhost:9000/vibe-music-data/songCovers/23232633-92dc-4831-9025-64dd9bc7382b-blob', 'http://localhost:9000/vibe-music-data/songs/dae6088c-2e3d-46ad-a2dc-6dd5db5cd774-G.E.M.邓紫棋 - 多远都要在一起.mp3', '2015-11-06'); INSERT INTO `tb_song` VALUES (141, 18, '天空没有极限', '启示录', NULL, '278.45', '华语流行', 'http://localhost:9000/vibe-music-data/songCovers/62199b04-4ba7-4149-82a3-bf1498a302f3-blob', 'http://localhost:9000/vibe-music-data/songs/090a7e16-4cd4-4d3a-b7c3-b9fa3f66e21d-G.E.M.邓紫棋 - 天空没有极限.mp3', '2022-09-23'); INSERT INTO `tb_song` VALUES (142, 18, '我的秘密', 'My Secret', NULL, '252.41', '华语流行', 'http://localhost:9000/vibe-music-data/songCovers/c231d6d3-4fd3-4d6a-8dd5-af6006c4b987-blob', 'http://localhost:9000/vibe-music-data/songs/cc3bc25f-23bb-4bbe-8777-18ccda9f8a1c-G.E.M.邓紫棋 - 我的秘密.mp3', '2010-10-29'); INSERT INTO `tb_song` VALUES (143, 18, '摩天动物园', '摩天动物园', NULL, '270.87', '华语流行', 'http://localhost:9000/vibe-music-data/songCovers/ed7f43af-44a9-448e-be04-fd41da8b7986-blob', 'http://localhost:9000/vibe-music-data/songs/89038926-1c6c-4250-8840-c19c0a7649ae-G.E.M.邓紫棋 - 摩天动物园.mp3', '2019-12-14'); INSERT INTO `tb_song` VALUES (144, 18, '新的心跳', '新的心跳', NULL, '215.46', '华语流行', 'http://localhost:9000/vibe-music-data/songCovers/23232633-92dc-4831-9025-64dd9bc7382b-blob', 'http://localhost:9000/vibe-music-data/songs/35dbd04d-293b-44b8-b93c-efb8b23b2413-G.E.M.邓紫棋 - 新的心跳.mp3', '2015-11-06'); INSERT INTO `tb_song` VALUES (145, 18, '来自天堂的魔鬼', '新的心跳', NULL, '245.76', '华语流行', 'http://localhost:9000/vibe-music-data/songCovers/23232633-92dc-4831-9025-64dd9bc7382b-blob', 'http://localhost:9000/vibe-music-data/songs/bd1ce54c-857f-4790-bd9d-e4093c17e65b-G.E.M.邓紫棋 - 来自天堂的魔鬼.mp3', '2015-11-06'); INSERT INTO `tb_song` VALUES (146, 18, '泡沫', 'Xposed', NULL, '258.56', '华语流行', 'http://localhost:9000/vibe-music-data/songCovers/4a06bd1b-ccd5-4b84-b029-a457c83c7b4c-blob', 'http://localhost:9000/vibe-music-data/songs/626b8a80-642d-475c-81b0-9994d275adab-G.E.M.邓紫棋 - 泡沫.mp3', '2012-07-05'); INSERT INTO `tb_song` VALUES (147, 18, '画 (Live Piano Session II', '再见', NULL, '168.95', '华语流行', 'http://localhost:9000/vibe-music-data/songCovers/515cd8dc-8fc9-4a6c-9f6b-373a538a972d-blob', 'http://localhost:9000/vibe-music-data/songs/98c2bc40-f910-4858-9682-0d86a09df7c1-G.E.M.邓紫棋 - 画 (Live Piano Session II).mp3', '2016-05-23'); INSERT INTO `tb_song` VALUES (148, 18, '睡公主', 'G.E.M.', NULL, '283.2', '粤语流行', 'http://localhost:9000/vibe-music-data/songCovers/5908e03f-e1ea-483f-9036-8aca6caebd50-blob', 'http://localhost:9000/vibe-music-data/songs/5f60b449-3a05-40dd-91f3-00006b829513-G.E.M.邓紫棋 - 睡公主.mp3', '2008-10-15'); INSERT INTO `tb_song` VALUES (149, 117, '《费加罗的婚礼》序曲', '世界著名交响乐团演奏的古典音乐系列之五 世界著名序曲', NULL, '241.12', '古典', 'http://localhost:9000/vibe-music-data/songCovers/ad6a4c2f-d890-4f7e-8b09-b0cb2039d1e5-blob', 'http://localhost:9000/vibe-music-data/songs/993cf8aa-31ef-4738-8797-3b7ca8354466-George Szell,The Cleveland Orchestra - 《费加罗的婚礼》序曲.mp3', '2005-01-01'); INSERT INTO `tb_song` VALUES (150, 32, 'D小调托卡塔与赋格 作品565', 'Swinging Bach', NULL, '358.89', '古典', 'http://localhost:9000/vibe-music-data/songCovers/f48f6e07-bbd0-47dd-9883-cfb90502a9d5-blob', 'http://localhost:9000/vibe-music-data/songs/c37699f3-baa6-48d6-8493-55a78cbc327d-Gewandhausorchester Leipzig - D小调托卡塔与赋格 作品565.mp3', '2003-01-01'); INSERT INTO `tb_song` VALUES (151, 52, '罗西尼威廉泰尔序曲', '星专辑之Only Chow', NULL, '212.5', '古典,原声带', 'http://localhost:9000/vibe-music-data/songCovers/955cd99d-209f-40ad-9fb6-f4561db16a82-blob', 'http://localhost:9000/vibe-music-data/songs/90e55736-be75-4ebb-9a5e-b93b191af0ef-Gioachino Rossini - 罗西尼威廉泰尔序曲.mp3', '2008-03-27'); INSERT INTO `tb_song` VALUES (152, 62, 'Castle', 'BADLANDS (Deluxe Edition', NULL, '277.03', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/257bc6e0-a97e-4825-b798-b4d8976c3ecb-blob', 'http://localhost:9000/vibe-music-data/songs/f77d35e5-f2c8-429c-8ea4-c7c144d80327-Halsey - Castle.mp3', '2015-08-28'); INSERT INTO `tb_song` VALUES (153, 62, 'Colors, Pt. 2', 'BADLANDS (Deluxe Edition', NULL, '96.4', '欧美流行,电子', 'http://localhost:9000/vibe-music-data/songCovers/257bc6e0-a97e-4825-b798-b4d8976c3ecb-blob', 'http://localhost:9000/vibe-music-data/songs/bd9b10cd-9ad4-4b7e-bae0-b4e5cf61af4d-Halsey - Colors, Pt. 2.mp3', '2015-08-28'); INSERT INTO `tb_song` VALUES (154, 62, 'Colors', 'BADLANDS (Deluxe Edition', NULL, '248.3', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/257bc6e0-a97e-4825-b798-b4d8976c3ecb-blob', 'http://localhost:9000/vibe-music-data/songs/e23ce8f0-0b39-491b-bd6f-b01628911324-Halsey - Colors.mp3', '2015-08-28'); INSERT INTO `tb_song` VALUES (155, 62, 'Coming Down', 'BADLANDS (Deluxe Edition', NULL, '223.66', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/257bc6e0-a97e-4825-b798-b4d8976c3ecb-blob', 'http://localhost:9000/vibe-music-data/songs/9f64afef-c5aa-4dc2-bdc6-e1b4ce9f486c-Halsey - Coming Down.mp3', '2015-08-28'); INSERT INTO `tb_song` VALUES (156, 62, 'Control', 'BADLANDS (Deluxe Edition', NULL, '213.4', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/257bc6e0-a97e-4825-b798-b4d8976c3ecb-blob', 'http://localhost:9000/vibe-music-data/songs/490add85-db27-456d-859b-1e8b0442a334-Halsey - Control.mp3', '2015-08-28'); INSERT INTO `tb_song` VALUES (157, 62, 'Drive', 'BADLANDS (Deluxe Edition', NULL, '258.56', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/257bc6e0-a97e-4825-b798-b4d8976c3ecb-blob', 'http://localhost:9000/vibe-music-data/songs/e03c446e-6a25-4fad-b3d0-cf5911ac8798-Halsey - Drive.mp3', '2015-08-28'); INSERT INTO `tb_song` VALUES (158, 62, 'Gasoline', 'BADLANDS (Deluxe Edition', NULL, '199.2', '欧美流行,电子', 'http://localhost:9000/vibe-music-data/songCovers/257bc6e0-a97e-4825-b798-b4d8976c3ecb-blob', 'http://localhost:9000/vibe-music-data/songs/444302cf-efb3-40b8-b21b-6959145ea024-Halsey - Gasoline.mp3', '2015-08-28'); INSERT INTO `tb_song` VALUES (159, 62, 'Ghost', 'BADLANDS (Deluxe Edition', NULL, '153.87', '欧美流行,电子', 'http://localhost:9000/vibe-music-data/songCovers/257bc6e0-a97e-4825-b798-b4d8976c3ecb-blob', 'http://localhost:9000/vibe-music-data/songs/2b0eb266-3c60-485c-aad8-4c7efffb7e22-Halsey - Ghost.mp3', '2015-08-28'); INSERT INTO `tb_song` VALUES (160, 62, 'Haunting', 'BADLANDS (Deluxe Edition', NULL, '260.61', '欧美流行,电子', 'http://localhost:9000/vibe-music-data/songCovers/257bc6e0-a97e-4825-b798-b4d8976c3ecb-blob', 'http://localhost:9000/vibe-music-data/songs/6e7ea291-170b-46b8-b07d-5face48fb6f4-Halsey - Haunting.mp3', '2015-08-28'); INSERT INTO `tb_song` VALUES (161, 62, 'Hold Me Down', 'BADLANDS (Deluxe Edition', NULL, '205.19', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/257bc6e0-a97e-4825-b798-b4d8976c3ecb-blob', 'http://localhost:9000/vibe-music-data/songs/d0093471-e6b1-4d1f-bc47-bd1a946b7d38-Halsey - Hold Me Down.mp3', '2015-08-28'); INSERT INTO `tb_song` VALUES (162, 62, 'Hurricane', 'BADLANDS (Deluxe Edition', NULL, '221.61', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/257bc6e0-a97e-4825-b798-b4d8976c3ecb-blob', 'http://localhost:9000/vibe-music-data/songs/07ec67e7-22cd-426c-8b6a-4d910a03e3aa-Halsey - Hurricane.mp3', '2015-08-28'); INSERT INTO `tb_song` VALUES (163, 62, 'I Walk the Line', 'BADLANDS (Deluxe Edition', NULL, '164.14', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/257bc6e0-a97e-4825-b798-b4d8976c3ecb-blob', 'http://localhost:9000/vibe-music-data/songs/c260595b-4dc1-41cb-b6e1-97e9127b4034-Halsey - I Walk the Line.mp3', '2015-08-28'); INSERT INTO `tb_song` VALUES (164, 62, 'New Americana', 'BADLANDS (Deluxe Edition', NULL, '182.61', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/257bc6e0-a97e-4825-b798-b4d8976c3ecb-blob', 'http://localhost:9000/vibe-music-data/songs/566b4e94-8699-40c3-ac64-0ef2d843454b-Halsey - New Americana.mp3', '2015-08-28'); INSERT INTO `tb_song` VALUES (165, 62, 'Roman Holiday', 'BADLANDS (Deluxe Edition', NULL, '201.08', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/257bc6e0-a97e-4825-b798-b4d8976c3ecb-blob', 'http://localhost:9000/vibe-music-data/songs/00d618bd-0358-445d-872c-3fcc4a10dd3b-Halsey - Roman Holiday.mp3', '2015-08-28'); INSERT INTO `tb_song` VALUES (166, 62, 'Strange Love', 'BADLANDS (Deluxe Edition', NULL, '246.24', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/257bc6e0-a97e-4825-b798-b4d8976c3ecb-blob', 'http://localhost:9000/vibe-music-data/songs/01871da1-8976-43e6-a5b7-d79d382c0632-Halsey - Strange Love.mp3', '2015-08-28'); INSERT INTO `tb_song` VALUES (167, 62, 'Young God', 'BADLANDS (Deluxe Edition', NULL, '180.56', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/257bc6e0-a97e-4825-b798-b4d8976c3ecb-blob', 'http://localhost:9000/vibe-music-data/songs/874f21bf-162b-4a0b-89cc-34d12dd6dfc2-Halsey - Young God.mp3', '2015-08-28'); INSERT INTO `tb_song` VALUES (168, 9, 'Brandenburg Concerto No.3 In G BWV 1048:1. (Allegro', 'J.S. Bach: Brandenburg Concertos Nos. 1 - 6 · Concertos BWV 1055 & 1060', NULL, '323.49', '古典', 'http://localhost:9000/vibe-music-data/songCovers/f8d4c94a-6750-4a41-aab6-49dd5cc54093-blob', 'http://localhost:9000/vibe-music-data/songs/410365d5-2303-4df0-b256-ccbfbd12ec97-Hedwig Bilgram,Karl Richter,Münchener Bach-Orchester - Brandenburg Concerto No.3 In G BWV 10481. (Allegro).mp3', '1989-01-01'); INSERT INTO `tb_song` VALUES (169, 41, 'Paris In The Rain (HYE SUNG Remix', 'Paris In The Rain (HYE SUNG Remix', NULL, '199.33', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/15aa348f-7036-4d15-8384-f0ef022bd9fc-blob', 'http://localhost:9000/vibe-music-data/songs/22dc6f67-2f9d-47e1-ac78-66dbe87cf18d-HYE SUNG,Lauv - Paris In The Rain (Hye Sung Remix).mp3', '2018-02-10'); INSERT INTO `tb_song` VALUES (170, 69, 'Believer', 'Believer', NULL, '204.04', '摇滚', 'http://localhost:9000/vibe-music-data/songCovers/ae2b59b1-8e5e-4412-8676-467a5db74a76-blob', 'http://localhost:9000/vibe-music-data/songs/1acf0805-1542-4bb2-91ed-b785fa04b8c6-Imagine Dragons - Believer.mp3', '2017-06-23'); INSERT INTO `tb_song` VALUES (171, 69, 'Demons', 'Continued Silence', NULL, '175.88', '摇滚', 'http://localhost:9000/vibe-music-data/songCovers/80495089-236b-4a8b-8ffd-4f8d45568084-blob', 'http://localhost:9000/vibe-music-data/songs/fc6e23ae-9fd2-48c8-accd-1d9e1f579bb9-Imagine Dragons - Demons.mp3', '2012-03-06'); INSERT INTO `tb_song` VALUES (172, 69, 'It\'s Time', 'It’s Time EP', NULL, '240.09', '摇滚', 'http://localhost:9000/vibe-music-data/songCovers/368dd4d5-c4e8-4161-b250-7355cb785bb0-blob', 'http://localhost:9000/vibe-music-data/songs/2f4b5252-2080-4a11-9f9e-e4b8d81d065e-Imagine Dragons - It\'s Time.mp3', '2011-03-12'); INSERT INTO `tb_song` VALUES (173, 69, 'Levitate', 'Levitate (From the Original Motion Picture “Passengers”', NULL, '198.38', '摇滚', 'http://localhost:9000/vibe-music-data/songCovers/8d4373b5-d257-45d1-b486-6cdc386773fd-blob', 'http://localhost:9000/vibe-music-data/songs/f5900e00-066e-4db2-afd8-1172b3a40be5-Imagine Dragons - Levitate.mp3', '2016-12-02'); INSERT INTO `tb_song` VALUES (174, 69, 'Whatever It Takes', 'Whatever It Takes', NULL, '201.84', '摇滚,嘻哈说唱', 'http://localhost:9000/vibe-music-data/songCovers/780291b5-4fe1-4b72-81d9-64199d897669-blob', 'http://localhost:9000/vibe-music-data/songs/1e26a9ce-ffd4-4567-8c33-51306408e655-Imagine Dragons - Whatever It Takes.mp3', '2017-06-23'); INSERT INTO `tb_song` VALUES (175, 69, 'Shots (Broiler Remix', 'Shots', NULL, '191', '电子', 'http://localhost:9000/vibe-music-data/songCovers/14d14283-c5af-474b-ab96-333713f80af9-blob', 'http://localhost:9000/vibe-music-data/songs/62d66602-95f7-4d17-b35d-ccea1ed5c879-Imagine Dragons,Broiler - Shots (Broiler Remix).mp3', '2015-05-04'); INSERT INTO `tb_song` VALUES (176, 17, 'Blueming', 'Love poem', NULL, '217.01', '韩国流行', 'http://localhost:9000/vibe-music-data/songCovers/9ffe18f1-d130-4fec-9179-582c6abfa71e-blob', 'http://localhost:9000/vibe-music-data/songs/d83d479f-9bb8-4ecd-ae3c-bab7564d9ec1-IU - Blueming.mp3', '2019-11-18'); INSERT INTO `tb_song` VALUES (177, 17, 'Celebrity', 'Celebrity', NULL, '194.93', '韩国流行', 'http://localhost:9000/vibe-music-data/songCovers/c1c16407-474a-4401-8c01-a5c0bd86a74d-blob', 'http://localhost:9000/vibe-music-data/songs/78ee21bb-85fb-4b0b-96be-dd022914dc05-IU - Celebrity.mp3', '2021-01-27'); INSERT INTO `tb_song` VALUES (178, 17, 'Into the I-LAND', 'I-LAND Part.1 Signal Song', NULL, '217.01', '韩国流行', 'http://localhost:9000/vibe-music-data/songCovers/d98de49b-6289-45fa-913c-57319b12bf20-blob', 'http://localhost:9000/vibe-music-data/songs/bba600b5-f28f-4e00-81c1-c7156714f97b-IU - Into the I-LAND.mp3', '2020-06-19'); INSERT INTO `tb_song` VALUES (179, 17, 'twenty three', 'Covers & Unreleased Songs', NULL, '209.99', '韩国流行', 'http://localhost:9000/vibe-music-data/songCovers/9f79d2a8-eb02-4dae-b4e3-eac7b7e9f8fb-blob', 'http://localhost:9000/vibe-music-data/songs/20f18edf-2323-49d6-a5c1-ffce3257b823-IU - twenty three.mp3', '2011-01-01'); INSERT INTO `tb_song` VALUES (180, 22, '天堂与地狱序曲', '最新热歌慢摇63', NULL, '561.25', '古典', 'http://localhost:9000/vibe-music-data/songCovers/e26d746c-0d5d-4207-a475-8ce4b0a857e3-blob', 'http://localhost:9000/vibe-music-data/songs/cecc5cf5-a46c-4b29-abc9-b8f2d7dc4b53-Jacques Offenbach - 天堂与地狱序曲.mp3', '2014-01-01'); INSERT INTO `tb_song` VALUES (181, 66, 'Back to the Start', '2:00am in LA', NULL, '240.09', '欧美流行,嘻哈说唱', 'http://localhost:9000/vibe-music-data/songCovers/ad4e4c39-f7e5-4598-b984-392158ee296a-blob', 'http://localhost:9000/vibe-music-data/songs/7b755ff8-26e2-4779-8145-aae7228b2424-Jake Miller - Back to the Start.mp3', '2017-06-16'); INSERT INTO `tb_song` VALUES (182, 66, 'COULD HAVE BEEN YOU', 'SUMMER 19', NULL, '201.09', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/87650d61-269a-4b57-9e2d-3583596e7399-blob', 'http://localhost:9000/vibe-music-data/songs/d7f3cd92-6c36-4cf4-9a0e-a812c2f38f80-Jake Miller - COULD HAVE BEEN YOU.mp3', '2019-09-20'); INSERT INTO `tb_song` VALUES (183, 66, 'Halfway', '2:00am in LA', NULL, '145.66', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/ad4e4c39-f7e5-4598-b984-392158ee296a-blob', 'http://localhost:9000/vibe-music-data/songs/c2e010f7-189c-40a1-9fb7-05002ef30136-Jake Miller - Halfway.mp3', '2017-06-16'); INSERT INTO `tb_song` VALUES (184, 66, 'LAST TEXT', 'LAST TEXT', NULL, '174', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/87024378-5107-4540-96e3-ac9150549ad7-blob', 'http://localhost:9000/vibe-music-data/songs/70f64ef0-6493-43c5-9d03-acb7c69c6924-Jake Miller - LAST TEXT.mp3', '2019-08-23'); INSERT INTO `tb_song` VALUES (185, 66, 'Palm Blvd', '2:00am in LA', NULL, '199.03', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/ad4e4c39-f7e5-4598-b984-392158ee296a-blob', 'http://localhost:9000/vibe-music-data/songs/6577f5d5-735f-4e85-aa3a-11dae7a77faf-Jake Miller - Palm Blvd.mp3', '2017-06-16'); INSERT INTO `tb_song` VALUES (186, 66, 'Parties', '2:00am in LA', NULL, '170.3', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/ad4e4c39-f7e5-4598-b984-392158ee296a-blob', 'http://localhost:9000/vibe-music-data/songs/d9c54054-a390-4fbf-969a-1af4d149496d-Jake Miller - Parties.mp3', '2017-06-16'); INSERT INTO `tb_song` VALUES (187, 66, 'Permanent', 'Silver Lining', NULL, '199.03', '嘻哈说唱', 'http://localhost:9000/vibe-music-data/songCovers/4e5f5828-233d-4a66-860d-7ebbcf45cc6c-blob', 'http://localhost:9000/vibe-music-data/songs/f36fd7bb-cc72-4445-bd24-5d9c5e3a2f20-Jake Miller - Permanent.mp3', '2018-03-09'); INSERT INTO `tb_song` VALUES (188, 66, 'ROSS AND RACHEL', 'ROSS AND RACHEL', NULL, '192.87', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/deb33fdf-05cb-4937-8ebb-06100fe6e867-blob', 'http://localhost:9000/vibe-music-data/songs/daaebeca-d9fe-42bb-ae27-b16678c6235a-Jake Miller - ROSS AND RACHEL.mp3', '2020-08-21'); INSERT INTO `tb_song` VALUES (189, 66, 'Rumors', 'Rumors', NULL, '186.33', '欧美流行,嘻哈说唱', 'http://localhost:9000/vibe-music-data/songCovers/3c5b0e0d-9179-4b34-a8ff-94325c710ddb-blob', 'http://localhost:9000/vibe-music-data/songs/a3519926-c510-4bdd-934e-b6f99a19e0c0-Jake Miller - Rumors.mp3', '2015-07-08'); INSERT INTO `tb_song` VALUES (190, 66, 'Showing You Off', 'Silver Lining', NULL, '189.37', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/99b97c39-b04e-46a4-82c5-c9ad959a6045-blob', 'http://localhost:9000/vibe-music-data/songs/efbb6cf8-b602-4e4a-a1fb-cd00f8233d7e-Jake Miller - Showing You Off.mp3', '2018-03-09'); INSERT INTO `tb_song` VALUES (191, 66, 'WHAT IF YOU FELL IN LOVE?', 'Based on a True Story.', NULL, '198.75', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/969fc05b-c2f3-4731-8f9a-81107de95cd9-blob', 'http://localhost:9000/vibe-music-data/songs/a39e9751-1114-448f-9c75-f3866e145b3b-Jake Miller - WHAT IF YOU FELL IN LOVE.mp3', '2019-06-28'); INSERT INTO `tb_song` VALUES (192, 48, 'Only Human', 'Happiness Begins', NULL, '182.61', '欧美流行,电子', 'http://localhost:9000/vibe-music-data/songCovers/dd4bca5e-a684-4efa-9084-3f1a730324f7-blob', 'http://localhost:9000/vibe-music-data/songs/f3711491-5adc-4871-9819-6cd7d35ccde3-Jonas Brothers - Only Human.mp3', '2019-06-07'); INSERT INTO `tb_song` VALUES (193, 91, 'Come Around Me', 'Changes', NULL, '201.09', '欧美流行,节奏布鲁斯', 'http://localhost:9000/vibe-music-data/songCovers/fcd6e185-56db-469d-adad-27faf5f107fe-blob', 'http://localhost:9000/vibe-music-data/songs/5aa1dc7a-e9fe-470e-9362-1cded5659bef-Justin Bieber - Come Around Me.mp3', '2020-02-14'); INSERT INTO `tb_song` VALUES (194, 91, 'Yummy', 'Changes', NULL, '207.25', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/fcd6e185-56db-469d-adad-27faf5f107fe-blob', 'http://localhost:9000/vibe-music-data/songs/5625a334-c021-4c8e-8db8-d595eb14306c-Justin Bieber - Yummy.mp3', '2020-02-14'); INSERT INTO `tb_song` VALUES (195, 91, 'I\'m the One', 'I\'m the One', NULL, '289.35', '嘻哈说唱', 'http://localhost:9000/vibe-music-data/songCovers/1d86689a-073d-4f4c-b4cb-2ddd04e2d3f5-blob', 'http://localhost:9000/vibe-music-data/songs/a96f881a-d709-44f4-9ec8-62e0570d5f03-Justin Bieber,Lil Wayne,Chance the Rapper - I\'m the One.mp3', '2017-04-28'); INSERT INTO `tb_song` VALUES (196, 91, 'Intentions', 'Changes', NULL, '213.4', '欧美流行,嘻哈说唱', 'http://localhost:9000/vibe-music-data/songCovers/fcd6e185-56db-469d-adad-27faf5f107fe-blob', 'http://localhost:9000/vibe-music-data/songs/1c469084-e7ba-4444-9c4d-e6579c32e5aa-Justin Bieber,Quavo - Intentions.mp3', '2020-02-14'); INSERT INTO `tb_song` VALUES (197, 87, 'Harleys In Hawaii', 'Smile', NULL, '184.66', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/ef95fa6d-6572-40b0-9c3f-8344a462535f-blob', 'http://localhost:9000/vibe-music-data/songs/408cd19e-d73f-45fd-878b-9f357b95150d-Katy Perry - Harleys In Hawaii.mp3', '2019-10-16'); INSERT INTO `tb_song` VALUES (198, 87, 'Never Really Over', 'Never Really Over', NULL, '222.98', '电子', 'http://localhost:9000/vibe-music-data/songCovers/b727b77f-3828-48eb-947a-04cd5fc7d892-blob', 'http://localhost:9000/vibe-music-data/songs/d61085fd-284e-4365-86a7-371b28418cd5-Katy Perry - Never Really Over.mp3', '2019-05-31'); INSERT INTO `tb_song` VALUES (199, 87, 'Dark Horse', 'Dark Horse', NULL, '215.45', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/19969c66-dafe-4579-8393-d697f4664002-blob', 'http://localhost:9000/vibe-music-data/songs/31c551a5-0d91-488c-addc-cde8b69016cc-Katy Perry,TEE - Dark Horse.mp3', '2014-03-02'); INSERT INTO `tb_song` VALUES (200, 29, '8TEEN', 'American Teen', NULL, '227.77', '欧美流行,节奏布鲁斯', 'http://localhost:9000/vibe-music-data/songCovers/6e588608-cbc3-4b89-8568-9518ca71970f-blob', 'http://localhost:9000/vibe-music-data/songs/35d7865c-245a-4c79-970f-2cbf6ea90f62-Khalid - 8TEEN.mp3', '2017-03-03'); INSERT INTO `tb_song` VALUES (201, 29, 'Talk', 'Free Spirit', NULL, '197.57', '节奏布鲁斯', 'http://localhost:9000/vibe-music-data/songCovers/7dd420c5-4c5f-4476-bc8b-598a42f11e60-blob', 'http://localhost:9000/vibe-music-data/songs/91bcd6ae-58e1-44ee-b33b-c7964f8492b0-Khalid - Talk.mp3', '2019-04-05'); INSERT INTO `tb_song` VALUES (202, 29, 'Young Dumb & Broke', 'American Teen', NULL, '199.03', '欧美流行,节奏布鲁斯', 'http://localhost:9000/vibe-music-data/songCovers/6e588608-cbc3-4b89-8568-9518ca71970f-blob', 'http://localhost:9000/vibe-music-data/songs/fff07baa-34c4-4485-97f1-3fa2e6029982-Khalid - Young Dumb & Broke.mp3', '2017-03-03'); INSERT INTO `tb_song` VALUES (203, 99, 'Born To Be Yours', 'Born To Be Yours', NULL, '193.46', '电子', 'http://localhost:9000/vibe-music-data/songCovers/9dac8f2e-e238-4a26-8b50-0606ede7dd29-blob', 'http://localhost:9000/vibe-music-data/songs/c729b40b-18fe-4e4a-9a81-25ad3500e5d1-Kygo,Imagine Dragons - Born to Be Yours.mp3', '2018-06-15'); INSERT INTO `tb_song` VALUES (204, 113, 'It Ain\'t Me', 'It Ain\'t Me', NULL, '219.7', '电子', 'http://localhost:9000/vibe-music-data/songCovers/03f8c038-55c9-43c8-a890-27583d30ef06-blob', 'http://localhost:9000/vibe-music-data/songs/5edac4db-ab33-4bd9-8823-76fe7475a84c-Kygo,Selena Gomez - It Ain\'t Me.mp3', '2017-02-16'); INSERT INTO `tb_song` VALUES (205, 4, '13', 'LANY', NULL, '234.46', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/def7025e-e20f-491f-b2c7-4c33c6b44d98-blob', 'http://localhost:9000/vibe-music-data/songs/1b8eccd5-d9ef-4d2a-896b-3b17ffa0badf-LANY - 13.mp3', '2017-06-30'); INSERT INTO `tb_song` VALUES (206, 4, 'current location', 'kinda', NULL, '188.77', '电子', 'http://localhost:9000/vibe-music-data/songCovers/5763f45d-b4da-4d20-8c58-32f5f5f6d910-blob', 'http://localhost:9000/vibe-music-data/songs/7726b11e-cd89-4bbb-8199-2efd782414b6-LANY - current location.mp3', '2016-06-24'); INSERT INTO `tb_song` VALUES (207, 4, 'dna', 'gg bb xx', NULL, '176.46', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/afb13b39-71e5-4486-813c-05ff898add14-blob', 'http://localhost:9000/vibe-music-data/songs/08802686-6339-4517-b347-2ef2d607b89d-LANY - dna.mp3', '2021-09-03'); INSERT INTO `tb_song` VALUES (208, 4, 'I Don\'t Wanna Love You Anymore', 'Thru These Tears / I Don’t Wanna Love You Anymore', NULL, '200.84', '欧美流行,电子', 'http://localhost:9000/vibe-music-data/songCovers/6a09e903-7f9e-489b-a867-0e9c5e4ea7df-blob', 'http://localhost:9000/vibe-music-data/songs/11b9a716-682f-4ed9-9c3b-b934c88172a6-LANY - I Don\'t Wanna Love You Anymore.mp3', '2018-08-22'); INSERT INTO `tb_song` VALUES (209, 4, 'pink skies', 'kinda', NULL, '184.67', '电子', 'http://localhost:9000/vibe-music-data/songCovers/5763f45d-b4da-4d20-8c58-32f5f5f6d910-blob', 'http://localhost:9000/vibe-music-data/songs/3b30cf20-a647-4959-9c87-7cb1d4d46dcb-LANY - pink skies.mp3', '2016-06-24'); INSERT INTO `tb_song` VALUES (210, 4, 'Super Far', 'Super Far', NULL, '203.14', '欧美流行,电子', 'http://localhost:9000/vibe-music-data/songCovers/def7025e-e20f-491f-b2c7-4c33c6b44d98-blob', 'http://localhost:9000/vibe-music-data/songs/e18381c8-9b45-4070-879b-cd387e0217f6-LANY - Super Far (1).mp3', '2017-06-30'); INSERT INTO `tb_song` VALUES (211, 4, 'Super Far', 'LANY', NULL, '203.14', '欧美流行,电子', 'http://localhost:9000/vibe-music-data/songCovers/def7025e-e20f-491f-b2c7-4c33c6b44d98-blob', 'http://localhost:9000/vibe-music-data/songs/7da768ea-75b2-493e-9d9f-4d73695f4da7-LANY - Super Far.mp3', '2017-06-30'); INSERT INTO `tb_song` VALUES (212, 41, 'Adrenaline', 'Lost in the Light', NULL, '205.19', '欧美流行,电子', 'http://localhost:9000/vibe-music-data/songCovers/e926fc35-c75f-4999-88b1-404a4b35acc5-blob', 'http://localhost:9000/vibe-music-data/songs/5a3cb887-58ec-4b69-a634-47957c115775-Lauv - Adrenaline.mp3', '2015-09-25'); INSERT INTO `tb_song` VALUES (213, 41, 'Breathe', 'Breathe', NULL, '238.04', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/1e590a6c-326c-4e56-a688-dd5b6d7b158d-blob', 'http://localhost:9000/vibe-music-data/songs/d6bbfc74-1913-4e36-8728-527b92ac3a5f-Lauv - Breathe.mp3', '2016-10-07'); INSERT INTO `tb_song` VALUES (214, 41, 'Chasing Fire', 'Chasing Fire', NULL, '205.19', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/ad6abce0-41b2-4c15-ac05-30d533ac2e33-blob', 'http://localhost:9000/vibe-music-data/songs/22767d84-523f-4408-9f2f-fd5ae82ced05-Lauv - Chasing Fire.mp3', '2018-03-29'); INSERT INTO `tb_song` VALUES (215, 41, 'Enemies', 'I met you when I was 18. (the playlist', NULL, '194.93', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/eca8f316-3987-4213-85c5-6fa3d476a3db-blob', 'http://localhost:9000/vibe-music-data/songs/dc25ba76-bc24-46c7-a1d2-8e6e74d4e494-Lauv - Enemies.mp3', '2018-05-31'); INSERT INTO `tb_song` VALUES (216, 41, 'I Like Me Better', 'I Like Me Better', NULL, '196.98', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/bd4d3b4b-c54d-4518-be47-57f55c36fe51-blob', 'http://localhost:9000/vibe-music-data/songs/7a511320-87aa-4c8c-96f4-d769fcd5ceaa-Lauv - I Like Me Better.mp3', '2017-05-19'); INSERT INTO `tb_song` VALUES (217, 41, 'Never Not', 'I met you when I was 18. (the playlist', NULL, '207.24', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/eca8f316-3987-4213-85c5-6fa3d476a3db-blob', 'http://localhost:9000/vibe-music-data/songs/92a2b5c8-898b-4d36-a3f0-f68b8b01eb22-Lauv - Never Not.mp3', '2018-05-31'); INSERT INTO `tb_song` VALUES (218, 41, 'Reforget', 'I met you when I was 18. (the playlist', NULL, '231.87', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/eca8f316-3987-4213-85c5-6fa3d476a3db-blob', 'http://localhost:9000/vibe-music-data/songs/bb5af7f6-a16a-4a24-ac63-af9dcb679009-Lauv - Reforget.mp3', '2018-05-31'); INSERT INTO `tb_song` VALUES (219, 41, 'Sims', '~how i\'m feeling~', NULL, '153.87', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/87a72d2e-0361-41ef-a50f-2f1931f36d06-blob', 'http://localhost:9000/vibe-music-data/songs/51251da4-9bcb-4bfc-8609-38e4d769665c-Lauv - Sims.mp3', '2020-03-06'); INSERT INTO `tb_song` VALUES (220, 41, '****, i\'m lonely (from “13 Reasons Why: Season 3”', '****, i\'m lonely (from “13 Reasons Why: Season 3”', NULL, '199.02', '欧美流行,原声带', 'http://localhost:9000/vibe-music-data/songCovers/649455c0-9430-423a-8eb8-db3e257e3c1f-blob', 'http://localhost:9000/vibe-music-data/songs/0cab8798-389c-4f5d-88d5-71da048a97f5-Lauv,Anne-Marie - , i\'m lonely (from “13 Reasons Why Season 3”).mp3', '2019-08-02'); INSERT INTO `tb_song` VALUES (221, 41, 'Who', '~how i\'m feeling~', NULL, '180.56', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/16808c2f-9c23-4c63-ba3d-c574b049c0a1-blob', 'http://localhost:9000/vibe-music-data/songs/6ecf6174-f7e1-4030-813a-31aa8c52ab42-Lauv,BTS (防弹少年团) - Who.mp3', '2020-03-06'); INSERT INTO `tb_song` VALUES (222, 41, 'Fake', 'Fake', NULL, '145.66', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/5329a04d-aed0-4be1-b944-1d9da6dcf80b-blob', 'http://localhost:9000/vibe-music-data/songs/be0e7a87-57a0-4cc2-a6b0-82c81e65db57-Lauv,Conan Gray - Fake.mp3', '2020-10-13'); INSERT INTO `tb_song` VALUES (223, 41, 'There\'s No Way', 'There\'s No Way', NULL, '174.4', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/6741fa70-b61f-4ba5-a2d1-ab77891411bb-blob', 'http://localhost:9000/vibe-music-data/songs/e449a950-fa8a-4c4b-ae4e-d6840d87d62d-Lauv,Julia Michaels - There\'s No Way.mp3', '2018-09-27'); INSERT INTO `tb_song` VALUES (224, 41, 'i\'m so tired...', 'i\'m so tired...', NULL, '162.08', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/f828936b-3df2-46c4-8c5f-db72b9930c35-blob', 'http://localhost:9000/vibe-music-data/songs/070900cd-f731-479b-91cc-dce522cb89fd-Lauv,Troye Sivan - i\'m so tired.mp3', '2019-01-24'); INSERT INTO `tb_song` VALUES (225, 86, 'Time to Pretend', 'Time to Pretend', NULL, '313.98', '电子', 'http://localhost:9000/vibe-music-data/songCovers/5de80d32-6675-4789-a30d-698227641119-blob', 'http://localhost:9000/vibe-music-data/songs/8781726f-2b8e-491a-ae5a-46b6df5f4589-Lazer Boomerang - Time to Pretend.mp3', '2019-07-19'); INSERT INTO `tb_song` VALUES (226, 36, '土耳其进行曲', '世界著名交响乐团演奏的古典音乐系列之一 世界著名抒情音乐小品', NULL, '118.97', '古典', 'http://localhost:9000/vibe-music-data/songCovers/9771baa4-544e-430d-a875-387b6300afcd-blob', 'http://localhost:9000/vibe-music-data/songs/8993c0db-48f3-40e4-8419-ad0493d79cd2-Ludwig van Beethoven - 土耳其进行曲.mp3', '2005-01-01'); INSERT INTO `tb_song` VALUES (227, 36, '月光奏鸣曲第一乐章', '世界名曲 爱的梦', NULL, '335.98', '古典', 'http://localhost:9000/vibe-music-data/songCovers/c532423e-3864-4960-bb87-1a4dd132ad9b-blob', 'http://localhost:9000/vibe-music-data/songs/6f18dd65-7e63-4692-b79f-731a0a8dfb5a-Ludwig van Beethoven - 月光奏鸣曲第一乐章.mp3', '2007-01-01'); INSERT INTO `tb_song` VALUES (228, 36, '第五交响曲命运: 第一乐章', '贝多芬-西方乐圣', NULL, '440.16', '古典', 'http://localhost:9000/vibe-music-data/songCovers/8be68663-d64a-41b2-85c9-ba0201740f74-blob', 'http://localhost:9000/vibe-music-data/songs/3bcb9037-dc10-4b20-bb89-14be76d34999-Ludwig van Beethoven - 第五交响曲命运 第一乐章.mp3', '2007-01-01'); INSERT INTO `tb_song` VALUES (229, 36, '致艾丽丝', '世界著名交响乐团演奏的古典音乐系列之一 世界著名抒情音乐小品', NULL, '208.36', '古典', 'http://localhost:9000/vibe-music-data/songCovers/9771baa4-544e-430d-a875-387b6300afcd-blob', 'http://localhost:9000/vibe-music-data/songs/21eca643-ac14-49fe-9e8a-b5c5e1cbc45b-Ludwig van Beethoven - 致艾丽丝.mp3', '2005-01-01'); INSERT INTO `tb_song` VALUES (230, 100, '李斯特第二号匈牙利狂想曲', '最新热歌慢摇111', NULL, '601.47', '古典', 'http://localhost:9000/vibe-music-data/songCovers/9f57064e-2f79-40a5-b7b5-72b224d4bda6-blob', 'http://localhost:9000/vibe-music-data/songs/1f15a49d-7878-4537-9526-b4bd07e438fc-Maksim Mrvica - 李斯特第二号匈牙利狂想曲.mp3', '2014-01-01'); INSERT INTO `tb_song` VALUES (231, 122, 'Animals (Live in Manchester', 'Red Pill Blues (Deluxe', NULL, '271.14', '欧美流行,节奏布鲁斯,摇滚', 'http://localhost:9000/vibe-music-data/songCovers/0946a4b2-9185-4a64-9e39-78f361efc14d-blob', 'http://localhost:9000/vibe-music-data/songs/f0f8adb5-3400-4af4-89b3-ea6692e70b7a-Maroon 5 - Animals (Live In Manchester).mp3', '2017-11-03'); INSERT INTO `tb_song` VALUES (232, 122, 'Animals', 'V', NULL, '229.83', '欧美流行,摇滚', 'http://localhost:9000/vibe-music-data/songCovers/642adf1e-458a-4033-af5e-a948ef2909f2-blob', 'http://localhost:9000/vibe-music-data/songs/9f33d2e3-5a59-44c2-9bad-15c6b596a696-Maroon 5 - Animals.mp3', '2014-09-02'); INSERT INTO `tb_song` VALUES (233, 122, 'Best 4 U', 'Red Pill Blues (Deluxe', NULL, '240.01', '欧美流行,节奏布鲁斯,摇滚', 'http://localhost:9000/vibe-music-data/songCovers/0946a4b2-9185-4a64-9e39-78f361efc14d-blob', 'http://localhost:9000/vibe-music-data/songs/9e341746-4cb6-4e73-88b6-cdc1646ab26b-Maroon 5 - Best 4 U.mp3', '2017-11-03'); INSERT INTO `tb_song` VALUES (234, 122, 'Bet My Heart', 'Red Pill Blues (Deluxe', NULL, '196.35', '欧美流行,节奏布鲁斯,摇滚', 'http://localhost:9000/vibe-music-data/songCovers/0946a4b2-9185-4a64-9e39-78f361efc14d-blob', 'http://localhost:9000/vibe-music-data/songs/c1cfeccc-88b0-4f95-bfe6-98acd2c4c06b-Maroon 5 - Bet My Heart.mp3', '2017-11-03'); INSERT INTO `tb_song` VALUES (235, 122, 'Closure', 'Red Pill Blues (Deluxe', NULL, '689.39', '欧美流行,节奏布鲁斯,摇滚', 'http://localhost:9000/vibe-music-data/songCovers/0946a4b2-9185-4a64-9e39-78f361efc14d-blob', 'http://localhost:9000/vibe-music-data/songs/a4b470c6-9eee-4616-bea5-97045f79d339-Maroon 5 - Closure.mp3', '2017-11-03'); INSERT INTO `tb_song` VALUES (236, 122, 'Coming Back For You', 'V', NULL, '225.2', '欧美流行,摇滚', 'http://localhost:9000/vibe-music-data/songCovers/642adf1e-458a-4033-af5e-a948ef2909f2-blob', 'http://localhost:9000/vibe-music-data/songs/f418c9c4-ae52-4612-a658-9661c69cc814-Maroon 5 - Coming Back For You.mp3', '2014-09-02'); INSERT INTO `tb_song` VALUES (237, 122, 'Daylight (Live in Manchester', 'Red Pill Blues (Deluxe', NULL, '416.82', '欧美流行,节奏布鲁斯,摇滚', 'http://localhost:9000/vibe-music-data/songCovers/0946a4b2-9185-4a64-9e39-78f361efc14d-blob', 'http://localhost:9000/vibe-music-data/songs/44546829-735b-416a-a622-766f61e84965-Maroon 5 - Daylight (Live In Manchester).mp3', '2017-11-03'); INSERT INTO `tb_song` VALUES (238, 122, 'Denim Jacket (Explicit', 'Red Pill Blues (Deluxe', NULL, '232.82', '欧美流行,节奏布鲁斯,摇滚', 'http://localhost:9000/vibe-music-data/songCovers/0946a4b2-9185-4a64-9e39-78f361efc14d-blob', 'http://localhost:9000/vibe-music-data/songs/81832ab4-57db-48a0-95cb-602450b9c582-Maroon 5 - Denim Jacket.mp3', '2017-11-03'); INSERT INTO `tb_song` VALUES (239, 122, 'Feelings', 'V', NULL, '194.93', '欧美流行,摇滚', 'http://localhost:9000/vibe-music-data/songCovers/642adf1e-458a-4033-af5e-a948ef2909f2-blob', 'http://localhost:9000/vibe-music-data/songs/153fcd3c-9293-43b2-97b0-dad051a4e5c2-Maroon 5 - Feelings.mp3', '2014-09-02'); INSERT INTO `tb_song` VALUES (240, 122, 'Girls Like You', 'Red Pill Blues (Deluxe', NULL, '215.49', '欧美流行,节奏布鲁斯,摇滚', 'http://localhost:9000/vibe-music-data/songCovers/0946a4b2-9185-4a64-9e39-78f361efc14d-blob', 'http://localhost:9000/vibe-music-data/songs/baf49385-1090-4910-b003-505f135c3935-Maroon 5 - Girls Like You.mp3', '2017-11-03'); INSERT INTO `tb_song` VALUES (241, 122, 'In Your Pocket', 'V', NULL, '219.56', '欧美流行,摇滚', 'http://localhost:9000/vibe-music-data/songCovers/642adf1e-458a-4033-af5e-a948ef2909f2-blob', 'http://localhost:9000/vibe-music-data/songs/10d98f86-7722-4776-8689-366823ca7978-Maroon 5 - In Your Pocket.mp3', '2014-09-02'); INSERT INTO `tb_song` VALUES (242, 122, 'It Was Always You', 'V', NULL, '239.54', '欧美流行,摇滚', 'http://localhost:9000/vibe-music-data/songCovers/642adf1e-458a-4033-af5e-a948ef2909f2-blob', 'http://localhost:9000/vibe-music-data/songs/feae15a2-3192-4bce-af43-be78328693fa-Maroon 5 - It Was Always You.mp3', '2014-09-02'); INSERT INTO `tb_song` VALUES (243, 122, 'Leaving California', 'V', NULL, '203.14', '欧美流行,摇滚', 'http://localhost:9000/vibe-music-data/songCovers/642adf1e-458a-4033-af5e-a948ef2909f2-blob', 'http://localhost:9000/vibe-music-data/songs/0f64e1c9-126c-4850-847b-515a6f7deecc-Maroon 5 - Leaving California.mp3', '2014-09-02'); INSERT INTO `tb_song` VALUES (244, 122, 'Lips On You', 'Red Pill Blues (Deluxe', NULL, '217.19', '欧美流行,节奏布鲁斯,摇滚', 'http://localhost:9000/vibe-music-data/songCovers/0946a4b2-9185-4a64-9e39-78f361efc14d-blob', 'http://localhost:9000/vibe-music-data/songs/d0ca1eb8-2697-4ff6-9e94-cedc2f7c0621-Maroon 5 - Lips On You.mp3', '2017-11-03'); INSERT INTO `tb_song` VALUES (245, 122, 'Lucky Strike', 'Overexposed (Deluxe', NULL, '184.66', '欧美流行,摇滚', 'http://localhost:9000/vibe-music-data/songCovers/6f7f52f8-7b99-402d-92bc-a61489c70412-blob', 'http://localhost:9000/vibe-music-data/songs/e12b0508-1872-4d77-addc-dc21dd7929b6-Maroon 5 - Lucky Strike.mp3', '2012-06-25'); INSERT INTO `tb_song` VALUES (246, 122, 'Maps', 'Maps', NULL, '188.77', '欧美流行,摇滚', 'http://localhost:9000/vibe-music-data/songCovers/4ca68e4b-6953-49e7-ae48-d816905cdd98-blob', 'http://localhost:9000/vibe-music-data/songs/2a8da2ff-d0b8-47b6-a066-4755e2ebe9e0-Maroon 5 - Maps (1).mp3', '2014-06-16'); INSERT INTO `tb_song` VALUES (247, 122, 'Maps (Live in Manchester', 'Red Pill Blues (Deluxe', NULL, '262.83', '欧美流行,节奏布鲁斯,摇滚', 'http://localhost:9000/vibe-music-data/songCovers/0946a4b2-9185-4a64-9e39-78f361efc14d-blob', 'http://localhost:9000/vibe-music-data/songs/9a6be7dd-8735-4d07-940b-3b51d60a0354-Maroon 5 - Maps (Live In Manchester).mp3', '2017-11-03'); INSERT INTO `tb_song` VALUES (248, 122, 'Maps', 'V', NULL, '188.77', '欧美流行,摇滚', 'http://localhost:9000/vibe-music-data/songCovers/642adf1e-458a-4033-af5e-a948ef2909f2-blob', 'http://localhost:9000/vibe-music-data/songs/75d4665e-703d-4089-b10c-493e53344612-Maroon 5 - Maps.mp3', '2014-09-02'); INSERT INTO `tb_song` VALUES (249, 122, 'Moves like Jagger (Live in Manchester', 'Red Pill Blues (Deluxe', NULL, '299.91', '欧美流行,节奏布鲁斯,摇滚', 'http://localhost:9000/vibe-music-data/songCovers/0946a4b2-9185-4a64-9e39-78f361efc14d-blob', 'http://localhost:9000/vibe-music-data/songs/16d3247f-c9d7-4f03-aef4-b6fde9efe5ad-Maroon 5 - Moves Like Jagger (Live In Manchester).mp3', '2017-11-03'); INSERT INTO `tb_song` VALUES (250, 122, 'New Love', 'V', NULL, '196.98', '欧美流行,摇滚', 'http://localhost:9000/vibe-music-data/songCovers/642adf1e-458a-4033-af5e-a948ef2909f2-blob', 'http://localhost:9000/vibe-music-data/songs/a64c4fad-8c50-4bfc-81ee-5709cf718075-Maroon 5 - New Love.mp3', '2014-09-02'); INSERT INTO `tb_song` VALUES (251, 122, 'Plastic Rose', 'Red Pill Blues (Deluxe', NULL, '223.15', '欧美流行,节奏布鲁斯,摇滚', 'http://localhost:9000/vibe-music-data/songCovers/0946a4b2-9185-4a64-9e39-78f361efc14d-blob', 'http://localhost:9000/vibe-music-data/songs/11451031-c28d-49bf-a0c8-34dbb63b429b-Maroon 5 - Plastic Rose.mp3', '2017-11-03'); INSERT INTO `tb_song` VALUES (252, 122, 'Sex and Candy', 'V', NULL, '264.11', '欧美流行,摇滚', 'http://localhost:9000/vibe-music-data/songCovers/642adf1e-458a-4033-af5e-a948ef2909f2-blob', 'http://localhost:9000/vibe-music-data/songs/fa43cd25-cf50-4b4f-b832-392c108f63c1-Maroon 5 - Sex and Candy.mp3', '2014-09-02'); INSERT INTO `tb_song` VALUES (253, 122, 'Shoot Love', 'V', NULL, '190.82', '欧美流行,摇滚', 'http://localhost:9000/vibe-music-data/songCovers/642adf1e-458a-4033-af5e-a948ef2909f2-blob', 'http://localhost:9000/vibe-music-data/songs/96f82b9f-7618-4596-82ea-e2263cb19f62-Maroon 5 - Shoot Love.mp3', '2014-09-02'); INSERT INTO `tb_song` VALUES (254, 122, 'Stereo Hearts (Live in Manchester', 'Red Pill Blues (Deluxe', NULL, '222.94', '欧美流行,节奏布鲁斯,摇滚', 'http://localhost:9000/vibe-music-data/songCovers/0946a4b2-9185-4a64-9e39-78f361efc14d-blob', 'http://localhost:9000/vibe-music-data/songs/0c523085-cd01-40c3-8dbb-b14ef266505c-Maroon 5 - Stereo Hearts (Live In Manchester).mp3', '2017-11-03'); INSERT INTO `tb_song` VALUES (255, 122, 'Sugar', 'V', NULL, '233.93', '欧美流行,摇滚', 'http://localhost:9000/vibe-music-data/songCovers/642adf1e-458a-4033-af5e-a948ef2909f2-blob', 'http://localhost:9000/vibe-music-data/songs/2717dabc-d4b9-4140-8f33-31247c4942b2-Maroon 5 - Sugar.mp3', '2014-09-02'); INSERT INTO `tb_song` VALUES (256, 122, 'This Love (Live in Manchester', 'Red Pill Blues (Deluxe', NULL, '302.29', '欧美流行,节奏布鲁斯,摇滚', 'http://localhost:9000/vibe-music-data/songCovers/0946a4b2-9185-4a64-9e39-78f361efc14d-blob', 'http://localhost:9000/vibe-music-data/songs/748ea7ea-ac47-497e-9808-bd942a99f4fc-Maroon 5 - This Love (Live In Manchester).mp3', '2017-11-03'); INSERT INTO `tb_song` VALUES (257, 122, 'Unkiss Me', 'V', NULL, '238.04', '欧美流行,摇滚', 'http://localhost:9000/vibe-music-data/songCovers/642adf1e-458a-4033-af5e-a948ef2909f2-blob', 'http://localhost:9000/vibe-music-data/songs/414b5121-6512-47f6-9008-9e3516468b43-Maroon 5 - Unkiss Me.mp3', '2014-09-02'); INSERT INTO `tb_song` VALUES (258, 122, 'Visions', 'Red Pill Blues (Deluxe', NULL, '230.99', '欧美流行,节奏布鲁斯,摇滚', 'http://localhost:9000/vibe-music-data/songCovers/0946a4b2-9185-4a64-9e39-78f361efc14d-blob', 'http://localhost:9000/vibe-music-data/songs/5dc80a89-1bc7-454f-8100-b3aea044e850-Maroon 5 - Visions.mp3', '2017-11-03'); INSERT INTO `tb_song` VALUES (259, 122, 'Wait', 'Red Pill Blues (Deluxe', NULL, '190.89', '欧美流行,节奏布鲁斯,摇滚', 'http://localhost:9000/vibe-music-data/songCovers/0946a4b2-9185-4a64-9e39-78f361efc14d-blob', 'http://localhost:9000/vibe-music-data/songs/025936ed-d5c6-422e-803a-b865bee5a5e8-Maroon 5 - Wait.mp3', '2017-11-03'); INSERT INTO `tb_song` VALUES (260, 122, 'Whiskey', 'Red Pill Blues (Deluxe', NULL, '210.68', '欧美流行,节奏布鲁斯,摇滚', 'http://localhost:9000/vibe-music-data/songCovers/0946a4b2-9185-4a64-9e39-78f361efc14d-blob', 'http://localhost:9000/vibe-music-data/songs/e52dc602-49ea-4a97-a466-a10976a6ddf3-Maroon 5,A$AP Rocky - Whiskey.mp3', '2017-11-03'); INSERT INTO `tb_song` VALUES (261, 122, 'Girls Like You', 'Red Pill Blues (Deluxe', NULL, '235.98', '欧美流行,节奏布鲁斯,摇滚', 'http://localhost:9000/vibe-music-data/songCovers/0946a4b2-9185-4a64-9e39-78f361efc14d-blob', 'http://localhost:9000/vibe-music-data/songs/69af5899-48f8-4a48-9d1b-4d09459bcebe-Maroon 5,Cardi B - Girls Like You.mp3', '2017-11-03'); INSERT INTO `tb_song` VALUES (262, 122, 'Cold (Explicit', 'Red Pill Blues (Deluxe', NULL, '234.58', '欧美流行,节奏布鲁斯,摇滚', 'http://localhost:9000/vibe-music-data/songCovers/0946a4b2-9185-4a64-9e39-78f361efc14d-blob', 'http://localhost:9000/vibe-music-data/songs/b4f475ce-5103-4d32-bebb-84ec5fa7790c-Maroon 5,Future - Cold.mp3', '2017-11-03'); INSERT INTO `tb_song` VALUES (263, 122, 'My Heart Is Open', 'V', NULL, '238.03', '欧美流行,摇滚', 'http://localhost:9000/vibe-music-data/songCovers/642adf1e-458a-4033-af5e-a948ef2909f2-blob', 'http://localhost:9000/vibe-music-data/songs/1ff86c62-fc9d-4f8e-8af2-a86f423e223a-Maroon 5,Gwen Stefani - My Heart Is Open.mp3', '2014-09-02'); INSERT INTO `tb_song` VALUES (264, 122, 'Help Me Out', 'Red Pill Blues (Deluxe', NULL, '193.84', '欧美流行,节奏布鲁斯,摇滚', 'http://localhost:9000/vibe-music-data/songCovers/0946a4b2-9185-4a64-9e39-78f361efc14d-blob', 'http://localhost:9000/vibe-music-data/songs/477c50b9-464d-4bbe-9c6e-51c4bf8f071b-Maroon 5,Julia Michaels - Help Me Out.mp3', '2017-11-03'); INSERT INTO `tb_song` VALUES (265, 122, 'Don\'t Wanna Know', 'Red Pill Blues (Deluxe', NULL, '214.73', '欧美流行,节奏布鲁斯,摇滚', 'http://localhost:9000/vibe-music-data/songCovers/0946a4b2-9185-4a64-9e39-78f361efc14d-blob', 'http://localhost:9000/vibe-music-data/songs/369c81c6-0273-4520-ab5e-d9cebe8b1e11-Maroon 5,Kendrick Lamar - Don\'t Wanna Know.mp3', '2017-11-03'); INSERT INTO `tb_song` VALUES (266, 122, 'Who I Am', 'Red Pill Blues (Deluxe', NULL, '183.65', '欧美流行,节奏布鲁斯,摇滚', 'http://localhost:9000/vibe-music-data/songCovers/0946a4b2-9185-4a64-9e39-78f361efc14d-blob', 'http://localhost:9000/vibe-music-data/songs/96725725-77d3-4c1f-abcb-9f31ca854313-Maroon 5,LunchMoney Lewis - Who I Am.mp3', '2017-11-03'); INSERT INTO `tb_song` VALUES (267, 49, 'In The Name Of Love', 'In The Name Of Love', NULL, '198.38', '电子', 'http://localhost:9000/vibe-music-data/songCovers/66da2724-650e-4d04-a4c7-b41d88b91d91-blob', 'http://localhost:9000/vibe-music-data/songs/efef8794-44ef-41cd-8b08-f54b72221fc8-Martin Garrix,Bebe Rexha - In the Name of Love.mp3', '2016-07-29'); INSERT INTO `tb_song` VALUES (268, 49, 'Drown (feat. Clinton Kane', 'Drown (feat. Clinton Kane', NULL, '174.4', '电子', 'http://localhost:9000/vibe-music-data/songCovers/e7d49249-4fdb-467f-88cc-4097ac511a21-blob', 'http://localhost:9000/vibe-music-data/songs/db74392d-e422-4c0b-a341-b04ef3f1c82e-Martin Garrix,Clinton Kane - Drown (feat. Clinton Kane).mp3', '2020-02-27'); INSERT INTO `tb_song` VALUES (269, 49, 'So Far Away', 'So Far Away', NULL, '183.85', '电子', 'http://localhost:9000/vibe-music-data/songCovers/d6ceeffb-770a-46d5-b9a4-dffea429e851-blob', 'http://localhost:9000/vibe-music-data/songs/d1c042ee-a9ec-4af5-ad1a-ed7b9b2706e5-Martin Garrix,David Guetta,Jamie Scott - So Far Away.mp3', '2017-12-01'); INSERT INTO `tb_song` VALUES (270, 49, 'There For You', 'There For You', NULL, '221.25', '电子', 'http://localhost:9000/vibe-music-data/songCovers/083cfe96-aaf3-4f6a-a841-9371702edc1d-blob', 'http://localhost:9000/vibe-music-data/songs/ca5788f3-9593-4eeb-a7b3-095bcf75fae5-Martin Garrix,Troye Sivan - There For You.mp3', '2017-05-26'); INSERT INTO `tb_song` VALUES (271, 81, 'Hungarian Dance No.5 in G Minor', 'Martynas', NULL, '164.13', '古典', 'http://localhost:9000/vibe-music-data/songCovers/6f587922-06be-42e7-b9d2-1830001a0e2a-blob', 'http://localhost:9000/vibe-music-data/songs/61a743da-1729-48b1-badc-101dd841da0d-Martynas - Hungarian Dance No.5 in G Minor.mp3', '2013-01-01'); INSERT INTO `tb_song` VALUES (272, 81, 'Carlos Gardel, Alfredo Le Pera: Por Una Cabeza', 'Martynas', NULL, '180.55', '古典', 'http://localhost:9000/vibe-music-data/songCovers/2a5780f7-cd6e-45c2-867b-dc93766a64e5-blob', 'http://localhost:9000/vibe-music-data/songs/a80e5588-266b-4a75-a508-ad3c0b04ce88-Martynas,David Garrett - Carlos Gardel, Alfredo Le Pera Por Una Cabeza.mp3', '2013-01-01'); INSERT INTO `tb_song` VALUES (273, 72, 'Home', 'Bright: The Album', NULL, '202.48', '原声带,嘻哈说唱', 'http://localhost:9000/vibe-music-data/songCovers/2f81e9b7-ddcb-45b5-a5ed-5f935bc48287-blob', 'http://localhost:9000/vibe-music-data/songs/0b7856c9-ed08-4f47-a0af-f270d7e986e9-mgk,X Ambassadors,Bebe Rexha - Home.mp3', '2017-12-15'); INSERT INTO `tb_song` VALUES (274, 74, 'Big Big World', 'Relaxation - Fortune', NULL, '207.81', '轻音乐', 'http://localhost:9000/vibe-music-data/songCovers/c982f910-58b3-4d46-9634-2eca7311468d-blob', 'http://localhost:9000/vibe-music-data/songs/64c30047-8a11-4d99-b249-0010311daf57-Michael Cramtu,Bandari - Big Big World.mp3', '2004-02-28'); INSERT INTO `tb_song` VALUES (275, 103, 'Trouble (Mike Williams Remix', 'Trouble (Mike Williams Remix', NULL, '216.45', '电子', 'http://localhost:9000/vibe-music-data/songCovers/b37985b0-50e3-468d-8e69-a39ee631e7d1-blob', 'http://localhost:9000/vibe-music-data/songs/2c6e31d8-1ae4-492f-b404-749f69400d49-Mike Williams,VÉRITÉ,R3HAB - Trouble (Mike Williams Remix).mp3', '2017-06-30'); INSERT INTO `tb_song` VALUES (276, 57, 'Prelude (Motohiko Hirami & Yann', 'Tree Sings, And Wind Surrounded Tree (2013 Version', NULL, '90.86', '轻音乐', 'http://localhost:9000/vibe-music-data/songCovers/05ee6ea4-2e82-45da-b15c-89114b4f37da-blob', 'http://localhost:9000/vibe-music-data/songs/b81e0b52-1094-400e-a739-20a014c9e53d-Motohiko Hirami - Prelude (Motohiko Hirami & Yann).mp3', '2013-11-25'); INSERT INTO `tb_song` VALUES (277, 21, '克罗地亚狂想曲(Cali Remix', 'Electric 2014', NULL, '184.85', '古典', 'http://localhost:9000/vibe-music-data/songCovers/2b7eaf19-722b-4127-a893-29cc4252f3c4-blob', 'http://localhost:9000/vibe-music-data/songs/f42b5148-e91c-4cf0-a811-7dfd41730d2a-Mr.Cali - 克罗地亚狂想曲(Cali Remix).mp3', '2015-01-05'); INSERT INTO `tb_song` VALUES (278, 102, '倾心恋曲 恋与制作人', 'MrLi小哥个人演奏全收录', NULL, '110.77', '古典', 'http://localhost:9000/vibe-music-data/songCovers/1cade29e-08f4-4493-acea-504c3d6dce2c-blob', 'http://localhost:9000/vibe-music-data/songs/cefe0c1c-672f-460d-88dc-926ad9c945e2-MrLi小哥 - 倾心恋曲 恋与制作人.mp3', '2018-08-03'); INSERT INTO `tb_song` VALUES (279, 71, 'Battles and Wastelands', 'Listen to your leader', NULL, '170.29', '摇滚', 'http://localhost:9000/vibe-music-data/songCovers/cb9e07c2-afd8-4750-8535-fe5b8d0bd54e-blob', 'http://localhost:9000/vibe-music-data/songs/5a99ca84-5a4c-46af-8dcf-6aaa5697b652-Neo Retros - Battles and Wastelands.mp3', '2011-05-09'); INSERT INTO `tb_song` VALUES (280, 10, 'Apologize', 'Dreaming Out Loud (Tour Edition', NULL, '208.35', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/631d1b9a-9e09-43c8-8920-949e8c44e916-blob', 'http://localhost:9000/vibe-music-data/songs/5d7a12a4-0e81-4e2b-b584-7e5f45e25f63-OneRepublic - Apologize.mp3', '2007-11-20'); INSERT INTO `tb_song` VALUES (281, 10, 'Connection', 'Connection', NULL, '148.37', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/7c8508bc-7276-4f4b-bc41-c3b61d4f31ab-blob', 'http://localhost:9000/vibe-music-data/songs/bac97177-fc29-4975-a2d5-08e08c04c6b9-OneRepublic - Connection.mp3', '2018-06-26'); INSERT INTO `tb_song` VALUES (282, 10, 'Counting Stars', 'Native (Deluxe Version', NULL, '257.56', '摇滚,电子', 'http://localhost:9000/vibe-music-data/songCovers/99b98024-60dd-483e-94d7-fe2cf2502f05-blob', 'http://localhost:9000/vibe-music-data/songs/954de155-91e3-4896-b741-366f8f3436a7-OneRepublic - Counting Stars.mp3', '2014-01-01'); INSERT INTO `tb_song` VALUES (283, 10, 'I Ain\'t Worried', 'I Ain’t Worried (Music From The Motion Picture \"Top Gun: Maverick\"', NULL, '147.71', '欧美流行,原声带', 'http://localhost:9000/vibe-music-data/songCovers/3d1fd85c-2f91-4a53-9463-1787bebfa235-blob', 'http://localhost:9000/vibe-music-data/songs/1867c0f8-641f-4d71-8529-8d406294e809-OneRepublic - I Ain\'t Worried.mp3', '2022-05-13'); INSERT INTO `tb_song` VALUES (284, 10, 'If I Lose Myself', 'Native (Deluxe Version', NULL, '242.14', '摇滚,电子', 'http://localhost:9000/vibe-music-data/songCovers/353107e2-a35e-417e-998f-e631055bc32a-blob', 'http://localhost:9000/vibe-music-data/songs/a93c3570-db11-4b19-9f31-c04d81a337c0-OneRepublic - If I Lose Myself.mp3', '2014-01-01'); INSERT INTO `tb_song` VALUES (285, 10, 'Kids', 'Kids', NULL, '238.04', '摇滚', 'http://localhost:9000/vibe-music-data/songCovers/ef53d596-2266-437b-b9b2-c55b001c7dc8-blob', 'http://localhost:9000/vibe-music-data/songs/bd558420-4f98-477f-9f49-c3d8648cea65-OneRepublic - Kids.mp3', '2016-08-12'); INSERT INTO `tb_song` VALUES (286, 10, 'No Vacancy', 'No Vacancy', NULL, '221.61', '欧美流行,摇滚', 'http://localhost:9000/vibe-music-data/songCovers/736228f2-e1f4-458c-adf6-196ded05269c-blob', 'http://localhost:9000/vibe-music-data/songs/f25507f8-2074-4148-b127-7dd0bc2dcdb1-OneRepublic - No Vacancy.mp3', '2017-04-28'); INSERT INTO `tb_song` VALUES (287, 10, 'Rescue Me', 'Rescue Me', NULL, '160.03', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/293369e0-39b5-4f0c-8042-1c4941edd5a3-blob', 'http://localhost:9000/vibe-music-data/songs/e61397ba-8789-47fd-bb56-7eb34e6c6301-OneRepublic - Rescue Me.mp3', '2019-05-17'); INSERT INTO `tb_song` VALUES (288, 10, 'Secrets', 'Secrets', NULL, '225.44', '摇滚', 'http://localhost:9000/vibe-music-data/songCovers/6e645926-32ba-4f27-b745-36538a1b8781-blob', 'http://localhost:9000/vibe-music-data/songs/012a93f6-48a0-4f18-b2c2-aaac3c112b3a-OneRepublic - Secrets.mp3', '2009-09-21'); INSERT INTO `tb_song` VALUES (289, 10, 'Somebody To Love', 'Somebody To Love', NULL, '180.56', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/d20fb788-097d-4d20-883a-a4d1af90cc7e-blob', 'http://localhost:9000/vibe-music-data/songs/388bee99-e693-49bd-8428-dcb6d2140c51-OneRepublic - Somebody To Love.mp3', '2019-09-04'); INSERT INTO `tb_song` VALUES (290, 10, 'Sunshine', 'Sunshine', NULL, '164.14', '欧美流行,嘻哈说唱', 'http://localhost:9000/vibe-music-data/songCovers/4eb55ac4-a870-487d-8df6-7debfc7a7523-blob', 'http://localhost:9000/vibe-music-data/songs/9826d6a4-f3ca-465c-bb65-d38767bbfc3f-OneRepublic - Sunshine.mp3', '2021-11-10'); INSERT INTO `tb_song` VALUES (291, 10, 'Start Again', 'Start Again', NULL, '165.59', '欧美流行,原声带', 'http://localhost:9000/vibe-music-data/songCovers/003a89c9-70d4-43c4-9af2-40a842d8e093-blob', 'http://localhost:9000/vibe-music-data/songs/7a5886bc-f0d0-4b8b-ab8a-784b08237401-OneRepublic,Logic - Start Again.mp3', '2018-05-16'); INSERT INTO `tb_song` VALUES (292, 26, 'Piano Concerto No.1 In B Flat Minor, Op.23, TH.55:1. Allegro non troppo e molto maestoso - Allegro con spirito', 'Tchaikovsky Overture 1812', NULL, '1216.86', '古典', 'http://localhost:9000/vibe-music-data/songCovers/fe519e24-da4b-466d-8e28-c2c408e8e8ec-blob', 'http://localhost:9000/vibe-music-data/songs/30fc9800-07bf-4b28-b31c-d9d3e2bce436-Oregon Symphony,James DePriest - Piano Concerto No.1 In B Flat Minor, Op.23, TH.551. Allegro non troppo e molto maestoso - Allegro con spirito.mp3', '1996-01-01'); INSERT INTO `tb_song` VALUES (293, 11, 'Bolero - Maurice Ravel (拉威尔:波莱罗舞曲)Arr. Piggy Chu', 'Midi Demos for Rehearsals (NotePerformer', NULL, '119.84', '古典', 'http://localhost:9000/vibe-music-data/songCovers/8457a2a3-488b-4372-ab07-bca83307581b-blob', 'http://localhost:9000/vibe-music-data/songs/6b40628b-8d29-41c4-bbbf-e7d1a2f17128-Piggy Chu - Bolero - Maurice Ravel (拉威尔:波莱罗舞曲)Arr. Piggy Chu).mp3', '2017-05-04'); INSERT INTO `tb_song` VALUES (294, 60, '《1812序曲》OP.49', '金色大厅中的柴可夫斯基', NULL, '890.79', '古典', 'http://localhost:9000/vibe-music-data/songCovers/dd5d3c60-c4fe-4d33-901c-adfc99f3fb41-blob', 'http://localhost:9000/vibe-music-data/songs/1303437f-bf5d-4f8c-8571-f33c9f64b333-Pyotr Ilyich Tchaikovsky - 《1812序曲》OP.49.mp3', '2008-08-08'); INSERT INTO `tb_song` VALUES (295, 60, '花之圆舞曲 第二幕第三场第13首', '金色大厅中的柴可夫斯基', NULL, '417.69', '古典', 'http://localhost:9000/vibe-music-data/songCovers/6f7d9c10-31fa-47b8-8a2a-26cbbbb10bc4-blob', 'http://localhost:9000/vibe-music-data/songs/03af41b3-f7a9-44fa-a77a-292c42df0d0c-Pyotr Ilyich Tchaikovsky - 花之圆舞曲 第二幕第三场第13首.mp3', '2008-08-08'); INSERT INTO `tb_song` VALUES (296, 103, 'I Just Can\'t', 'I Just Can\'t', NULL, '156.19', '电子', 'http://localhost:9000/vibe-music-data/songCovers/159a09a8-f9f4-4324-9a38-e7663851ba03-blob', 'http://localhost:9000/vibe-music-data/songs/f769a81c-0b16-43d5-95db-4d902859c18b-R3HAB,Quintino - I Just Can\'t.mp3', '2017-09-08'); INSERT INTO `tb_song` VALUES (297, 103, 'Let It Go', 'Let It Go', NULL, '156.76', '电子', 'http://localhost:9000/vibe-music-data/songCovers/4d6ebc02-fb1e-453c-808d-383151cd32a9-blob', 'http://localhost:9000/vibe-music-data/songs/768c3a49-0cd3-4f0f-a642-a4aab549bc27-R3HAB,Skytech - Let It Go.mp3', '2018-06-08'); INSERT INTO `tb_song` VALUES (298, 19, 'なんでもないや (没什么大不了 (Movie ver.', '君の名は。 (《你的名字。》动画电影原声带', NULL, '344.41', '日本流行,原声带', 'http://localhost:9000/vibe-music-data/songCovers/01d20804-d35b-4744-aea9-f10fb1a74174-blob', 'http://localhost:9000/vibe-music-data/songs/2b5f1542-f79c-4c7c-b7aa-a27f1f10b9f3-RADWIMPS - なんでもないや (movie ver.).mp3', '2016-08-24'); INSERT INTO `tb_song` VALUES (299, 113, 'Calm Down', 'Calm Down', NULL, '238.03', '非洲节拍,电子', 'http://localhost:9000/vibe-music-data/songCovers/8cd0d06d-7091-475d-ae6c-bc8c47cdf627-blob', 'http://localhost:9000/vibe-music-data/songs/53b14c82-0120-4a6f-a798-00c4270c02b1-Rema,Selena Gomez - Calm Down.mp3', '2022-08-25'); INSERT INTO `tb_song` VALUES (300, 94, '查拉图斯特拉如是说', '星专辑之Only Chow', NULL, '88.19', '古典,原声带', 'http://localhost:9000/vibe-music-data/songCovers/e46421b8-b413-4634-a1f7-e22b0f1efbb2-blob', 'http://localhost:9000/vibe-music-data/songs/7824a029-b8da-4346-a237-c6747190297a-Richard Strauss - 查拉图斯特拉如是说.mp3', '2008-03-27'); INSERT INTO `tb_song` VALUES (301, 67, 'No Lie', 'Dua Lipa (Complete Edition', NULL, '221.61', '欧美流行,电子', 'http://localhost:9000/vibe-music-data/songCovers/ba763d94-5668-462f-9490-f066f9fefb11-blob', 'http://localhost:9000/vibe-music-data/songs/d3d5b7f2-07ee-44e7-9169-7b7106af5143-Sean Paul,Dua Lipa - No Lie.mp3', '2018-10-25'); INSERT INTO `tb_song` VALUES (302, 113, 'Back to You', 'Back to You', NULL, '207.4', '欧美流行,原声带', 'http://localhost:9000/vibe-music-data/songCovers/2878ddbb-9f63-4f3a-9613-7d48d4622b5c-blob', 'http://localhost:9000/vibe-music-data/songs/01e41be0-700f-4827-914d-036ee8e9586c-Selena Gomez - Back to You.mp3', '2018-05-10'); INSERT INTO `tb_song` VALUES (303, 113, 'Hands To Myself', 'Revival (Deluxe Edition', NULL, '201.08', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/fc5153f5-65e8-41f2-b55c-dfd844c461ce-blob', 'http://localhost:9000/vibe-music-data/songs/ae6488c6-02fe-4507-b152-ca3fa0869a91-Selena Gomez - Hands To Myself.mp3', '2015-10-09'); INSERT INTO `tb_song` VALUES (304, 113, 'Kill Em With Kindness', 'Revival (Deluxe Edition', NULL, '217.5', '欧美流行,电子', 'http://localhost:9000/vibe-music-data/songCovers/fc5153f5-65e8-41f2-b55c-dfd844c461ce-blob', 'http://localhost:9000/vibe-music-data/songs/363ab97f-c921-4e1d-b348-b25f7906a824-Selena Gomez - Kill Em With Kindness.mp3', '2015-10-09'); INSERT INTO `tb_song` VALUES (305, 113, 'My Dilemma 2.0', 'For You', NULL, '188.77', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/379ded75-ed66-417e-aca5-0a9600549f75-blob', 'http://localhost:9000/vibe-music-data/songs/844a3760-5424-439d-aa90-8e9791d4c103-Selena Gomez - My Dilemma 2.0.mp3', '2014-11-21'); INSERT INTO `tb_song` VALUES (306, 113, 'Same Old Love', 'Revival (Deluxe Edition', NULL, '227.77', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/fc5153f5-65e8-41f2-b55c-dfd844c461ce-blob', 'http://localhost:9000/vibe-music-data/songs/fe45f05f-796c-4ca5-b6ae-1a46f0d7826b-Selena Gomez - Same Old Love.mp3', '2015-10-09'); INSERT INTO `tb_song` VALUES (307, 113, 'Who Says', 'For You', NULL, '194.93', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/379ded75-ed66-417e-aca5-0a9600549f75-blob', 'http://localhost:9000/vibe-music-data/songs/900898ca-d38c-43c5-bc40-f87d603a66f5-Selena Gomez - Who Says.mp3', '2014-11-21'); INSERT INTO `tb_song` VALUES (308, 113, 'Fetish', 'Fetish', NULL, '186.34', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/f4dd394e-2ae7-44a3-a3e8-6d1654c4e7be-blob', 'http://localhost:9000/vibe-music-data/songs/19c58d91-ebd7-49db-9b81-16488c9b733a-Selena Gomez,Gucci Mane - Fetish.mp3', '2017-07-13'); INSERT INTO `tb_song` VALUES (309, 113, 'Wolves', 'Wolves', NULL, '197.57', '电子', 'http://localhost:9000/vibe-music-data/songCovers/9fd2ea09-b5c6-4c5b-9620-fa7ce4ec73e6-blob', 'http://localhost:9000/vibe-music-data/songs/7a7af524-25d3-4dad-90bb-60a0a3bc9101-Selena Gomez,Marshmello - Wolves.mp3', '2017-10-25'); INSERT INTO `tb_song` VALUES (310, 67, 'Electricity', 'Dua Lipa (Complete Edition', NULL, '238.03', '欧美流行,电子', 'http://localhost:9000/vibe-music-data/songCovers/ba763d94-5668-462f-9490-f066f9fefb11-blob', 'http://localhost:9000/vibe-music-data/songs/f258d062-bfca-4d64-809d-4898b7ddc1a3-Silk City,Dua Lipa - Electricity.mp3', '2018-10-25'); INSERT INTO `tb_song` VALUES (311, 75, '20090729', 'What\'s my name?', NULL, '235.98', '韩国流行', 'http://localhost:9000/vibe-music-data/songCovers/c68e6fec-0976-4603-8541-b8059772c99b-blob', 'http://localhost:9000/vibe-music-data/songs/b227212e-ab65-45af-ad53-14e0c1664d6c-T-ara - 20090729.mp3', '2017-06-14'); INSERT INTO `tb_song` VALUES (312, 75, 'Reload', 'What\'s my name?', NULL, '180.56', '韩国流行', 'http://localhost:9000/vibe-music-data/songCovers/c68e6fec-0976-4603-8541-b8059772c99b-blob', 'http://localhost:9000/vibe-music-data/songs/3880343c-0bde-4df3-b586-4f373d48eb72-T-ara - Reload.mp3', '2017-06-14'); INSERT INTO `tb_song` VALUES (313, 75, '내 이름은', 'What\'s my name?', NULL, '212.58', '韩国流行', 'http://localhost:9000/vibe-music-data/songCovers/c68e6fec-0976-4603-8541-b8059772c99b-blob', 'http://localhost:9000/vibe-music-data/songs/b787adc4-ddbc-4533-a42b-6a8253cb9e9b-T-ara - 내 이름은.mp3', '2017-06-14'); INSERT INTO `tb_song` VALUES (314, 108, '...Ready For It?', 'reputation', NULL, '208.46', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/45e4f2a7-a662-43fa-85d8-4b9fcc2a9d8e-blob', 'http://localhost:9000/vibe-music-data/songs/631244d4-c2d3-4542-9d72-7fac0654acec-Taylor Swift - ...Ready For It.mp3', '2017-11-10'); INSERT INTO `tb_song` VALUES (315, 108, '22', 'Red', NULL, '231.88', '乡村', 'http://localhost:9000/vibe-music-data/songCovers/2e3de8f5-9d91-4e0e-81df-136018847900-blob', 'http://localhost:9000/vibe-music-data/songs/81bed88f-df70-4dfd-a8ac-70be149455e7-Taylor Swift - 22.mp3', '2012-10-22'); INSERT INTO `tb_song` VALUES (316, 108, 'All You Had To Do Was Stay', '1989 (Deluxe', NULL, '193.48', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/bbc52517-4ba1-4bfb-bcaf-138d4f532a17-blob', 'http://localhost:9000/vibe-music-data/songs/1ac54883-871a-43e0-a3af-d8fa2c5e2a79-Taylor Swift - All You Had To Do Was Stay.mp3', '2014-10-27'); INSERT INTO `tb_song` VALUES (317, 108, 'Bad Blood', '1989 (Deluxe', NULL, '211.35', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/bbc52517-4ba1-4bfb-bcaf-138d4f532a17-blob', 'http://localhost:9000/vibe-music-data/songs/e384ccc6-1d80-4106-80fe-004b5ed0dc94-Taylor Swift - Bad Blood.mp3', '2014-10-27'); INSERT INTO `tb_song` VALUES (318, 108, 'Blank Space (Voice Memo', '1989 (Deluxe', NULL, '131.29', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/bbc52517-4ba1-4bfb-bcaf-138d4f532a17-blob', 'http://localhost:9000/vibe-music-data/songs/e263262b-07d2-4280-bd81-33af5dbb9aa1-Taylor Swift - Blank Space (Voice Memo).mp3', '2014-10-27'); INSERT INTO `tb_song` VALUES (319, 108, 'Blank Space', '1989 (Deluxe', NULL, '232.06', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/bbc52517-4ba1-4bfb-bcaf-138d4f532a17-blob', 'http://localhost:9000/vibe-music-data/songs/9b363912-d484-429c-b180-1dccb53e27a0-Taylor Swift - Blank Space.mp3', '2014-10-27'); INSERT INTO `tb_song` VALUES (320, 108, 'Call It What You Want', 'reputation', NULL, '201.79', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/45e4f2a7-a662-43fa-85d8-4b9fcc2a9d8e-blob', 'http://localhost:9000/vibe-music-data/songs/dd795826-eab1-4b13-9eac-76b988c58318-Taylor Swift - Call It What You Want.mp3', '2017-11-10'); INSERT INTO `tb_song` VALUES (321, 108, 'Clean', '1989 (Deluxe', NULL, '270.88', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/bbc52517-4ba1-4bfb-bcaf-138d4f532a17-blob', 'http://localhost:9000/vibe-music-data/songs/f0020d11-bf8b-46fa-9768-944b6f2e2720-Taylor Swift - Clean.mp3', '2014-10-27'); INSERT INTO `tb_song` VALUES (322, 108, 'Cruel Summer', 'Lover', NULL, '178.51', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/616b76f5-7dc7-4ca1-a51b-7ca528e173dc-blob', 'http://localhost:9000/vibe-music-data/songs/dd0074a8-fb2d-4c33-929f-ad160301b742-Taylor Swift - Cruel Summer.mp3', '2019-08-23'); INSERT INTO `tb_song` VALUES (323, 108, 'Dress', 'reputation', NULL, '230.65', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/45e4f2a7-a662-43fa-85d8-4b9fcc2a9d8e-blob', 'http://localhost:9000/vibe-music-data/songs/43b17c74-f443-4453-8fcc-27d638d63ec8-Taylor Swift - Dress.mp3', '2017-11-10'); INSERT INTO `tb_song` VALUES (324, 108, 'Gorgeous', 'reputation', NULL, '209.92', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/45e4f2a7-a662-43fa-85d8-4b9fcc2a9d8e-blob', 'http://localhost:9000/vibe-music-data/songs/1dde0b1f-52ea-45fe-998b-7aa27d9d716a-Taylor Swift - Gorgeous.mp3', '2017-11-10'); INSERT INTO `tb_song` VALUES (325, 108, 'How You Get The Girl', '1989 (Deluxe', NULL, '246.24', '乡村', 'http://localhost:9000/vibe-music-data/songCovers/bbc52517-4ba1-4bfb-bcaf-138d4f532a17-blob', 'http://localhost:9000/vibe-music-data/songs/30694b82-ada5-4450-9851-29288077acbe-Taylor Swift - How You Get The Girl.mp3', '2014-10-27'); INSERT INTO `tb_song` VALUES (326, 108, 'I Knew You Were Trouble.', 'I Knew You Were Trouble.', NULL, '219.56', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/09879a3c-a64d-462d-9a2c-90acb6267361-blob', 'http://localhost:9000/vibe-music-data/songs/e7242f9a-c69d-4ba4-848a-b001d9f85c81-Taylor Swift - I Knew You Were Trouble.mp3', '2012-10-09'); INSERT INTO `tb_song` VALUES (327, 108, 'I Know Places (Voice Memo', '1989 (Deluxe', NULL, '215.45', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/bbc52517-4ba1-4bfb-bcaf-138d4f532a17-blob', 'http://localhost:9000/vibe-music-data/songs/fa1b5eec-ed50-43ab-80c0-2b170dc078ec-Taylor Swift - I Know Places (Voice Memo).mp3', '2014-10-27'); INSERT INTO `tb_song` VALUES (328, 108, 'I Know Places', '1989 (Deluxe', NULL, '194.93', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/bbc52517-4ba1-4bfb-bcaf-138d4f532a17-blob', 'http://localhost:9000/vibe-music-data/songs/64c298e5-b8d4-4a02-8a9e-8d424fed7902-Taylor Swift - I Know Places.mp3', '2014-10-27'); INSERT INTO `tb_song` VALUES (329, 108, 'I Wish You Would (Voice Memo', '1989 (Deluxe', NULL, '106.66', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/bbc52517-4ba1-4bfb-bcaf-138d4f532a17-blob', 'http://localhost:9000/vibe-music-data/songs/1f7fc1c1-609c-490e-b222-2dea7564a4c9-Taylor Swift - I Wish You Would (Voice Memo).mp3', '2014-10-27'); INSERT INTO `tb_song` VALUES (330, 108, 'I Wish You Would', '1989 (Deluxe', NULL, '207.24', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/bbc52517-4ba1-4bfb-bcaf-138d4f532a17-blob', 'http://localhost:9000/vibe-music-data/songs/30886981-3a5b-4f27-b5a0-50baffd861eb-Taylor Swift - I Wish You Would.mp3', '2014-10-27'); INSERT INTO `tb_song` VALUES (331, 108, 'Look What You Made Me Do', 'reputation', NULL, '212.12', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/45e4f2a7-a662-43fa-85d8-4b9fcc2a9d8e-blob', 'http://localhost:9000/vibe-music-data/songs/9267b047-f57f-48a6-a4b8-5e2c12cb228f-Taylor Swift - Look What You Made Me Do.mp3', '2017-11-10'); INSERT INTO `tb_song` VALUES (332, 108, 'Love Story', 'Fearless', NULL, '235.98', '欧美流行,乡村', 'http://localhost:9000/vibe-music-data/songCovers/50ae6cd4-cf66-4bc0-b025-f38e206f9f55-blob', 'http://localhost:9000/vibe-music-data/songs/9361a7a4-4fca-4c41-b47a-f6dd17471f9f-Taylor Swift - Love Story.mp3', '2009-01-01'); INSERT INTO `tb_song` VALUES (333, 108, 'Lover', 'Lover', NULL, '221.61', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/616b76f5-7dc7-4ca1-a51b-7ca528e173dc-blob', 'http://localhost:9000/vibe-music-data/songs/43408439-063f-4d1c-9259-5a79b6b67b5c-Taylor Swift - Lover.mp3', '2019-08-23'); INSERT INTO `tb_song` VALUES (334, 108, 'New Romantics', '1989 (Deluxe', NULL, '229.82', '欧美流行,电子', 'http://localhost:9000/vibe-music-data/songCovers/bbc52517-4ba1-4bfb-bcaf-138d4f532a17-blob', 'http://localhost:9000/vibe-music-data/songs/f7235cb3-a984-48fb-9ab4-5cff6fa7f1dc-Taylor Swift - New Romantics.mp3', '2014-10-27'); INSERT INTO `tb_song` VALUES (335, 108, 'Out Of The Woods', '1989 (Deluxe', NULL, '235.98', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/bbc52517-4ba1-4bfb-bcaf-138d4f532a17-blob', 'http://localhost:9000/vibe-music-data/songs/e5678e17-3054-4acb-8380-146ce6cf666c-Taylor Swift - Out Of The Woods.mp3', '2014-10-27'); INSERT INTO `tb_song` VALUES (336, 108, 'Red', 'Red', NULL, '223.35', '乡村', 'http://localhost:9000/vibe-music-data/songCovers/2e3de8f5-9d91-4e0e-81df-136018847900-blob', 'http://localhost:9000/vibe-music-data/songs/7476b00d-fa5d-4785-9ac6-539ba3e9226b-Taylor Swift - Red.mp3', '2012-10-22'); INSERT INTO `tb_song` VALUES (337, 108, 'Style', '1989 (Deluxe', NULL, '231.23', '欧美流行,电子', 'http://localhost:9000/vibe-music-data/songCovers/bbc52517-4ba1-4bfb-bcaf-138d4f532a17-blob', 'http://localhost:9000/vibe-music-data/songs/a3966219-3b8d-4b18-a585-23db67467f16-Taylor Swift - Style.mp3', '2014-10-27'); INSERT INTO `tb_song` VALUES (338, 108, 'This Love', '1989 (Deluxe', NULL, '250.34', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/bbc52517-4ba1-4bfb-bcaf-138d4f532a17-blob', 'http://localhost:9000/vibe-music-data/songs/eb45293e-60d5-4ad8-926d-78a4e2dab872-Taylor Swift - This Love.mp3', '2014-10-27'); INSERT INTO `tb_song` VALUES (339, 108, 'Welcome To New York', '1989 (Deluxe', NULL, '211.35', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/bbc52517-4ba1-4bfb-bcaf-138d4f532a17-blob', 'http://localhost:9000/vibe-music-data/songs/55db4ae5-3a70-4aa3-adf2-e12065d13d5b-Taylor Swift - Welcome To New York.mp3', '2014-10-27'); INSERT INTO `tb_song` VALUES (340, 108, 'Wildest Dreams', '1989 (Deluxe', NULL, '219.56', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/bbc52517-4ba1-4bfb-bcaf-138d4f532a17-blob', 'http://localhost:9000/vibe-music-data/songs/ea424109-7f7a-4287-b939-ed4f538bfb02-Taylor Swift - Wildest Dreams.mp3', '2014-10-27'); INSERT INTO `tb_song` VALUES (341, 108, 'Wonderland', '1989 (Deluxe', NULL, '245.79', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/bbc52517-4ba1-4bfb-bcaf-138d4f532a17-blob', 'http://localhost:9000/vibe-music-data/songs/d4e53e21-f248-4ace-be98-e507de099405-Taylor Swift - Wonderland.mp3', '2014-10-27'); INSERT INTO `tb_song` VALUES (342, 108, 'You Are In Love', '1989 (Deluxe', NULL, '267.36', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/bbc52517-4ba1-4bfb-bcaf-138d4f532a17-blob', 'http://localhost:9000/vibe-music-data/songs/bb2b4e0b-9e6e-4e28-ad9a-dd109f92ab23-Taylor Swift - You Are In Love.mp3', '2014-10-27'); INSERT INTO `tb_song` VALUES (343, 108, 'You Belong With Me', 'Fearless', NULL, '229.3', '欧美流行,乡村', 'http://localhost:9000/vibe-music-data/songCovers/d080e0f2-aed3-488e-9397-3ed321f26b8f-blob', 'http://localhost:9000/vibe-music-data/songs/2317d2da-ac73-45e0-89a8-9add25966f7a-Taylor Swift - You Belong With Me.mp3', '2009-01-01'); INSERT INTO `tb_song` VALUES (344, 108, 'You Need To Calm Down', 'You Need To Calm Down', NULL, '171.33', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/edcdc49c-d525-4b76-8e6a-af21f25dcab8-blob', 'http://localhost:9000/vibe-music-data/songs/d2314d36-e34e-4d5f-864d-f02d95b1c4f7-Taylor Swift - You Need To Calm Down.mp3', '2019-08-23'); INSERT INTO `tb_song` VALUES (345, 50, 'Everybody Hates Me', 'Sick Boy', NULL, '223.66', '欧美流行,电子', 'http://localhost:9000/vibe-music-data/songCovers/72e2743b-683d-4e7b-ad31-0247c2a02410-blob', 'http://localhost:9000/vibe-music-data/songs/e923f3a6-0dbe-4628-a6af-c6cd73658146-The Chainsmokers - Everybody Hates Me.mp3', '2018-04-20'); INSERT INTO `tb_song` VALUES (346, 50, 'High', 'High', NULL, '174.4', '电子', 'http://localhost:9000/vibe-music-data/songCovers/c9b0448e-b56e-4899-9d92-22087a6f3749-blob', 'http://localhost:9000/vibe-music-data/songs/561a6069-9adb-45e6-b249-90662dea9415-The Chainsmokers - High.mp3', '2022-01-28'); INSERT INTO `tb_song` VALUES (347, 50, 'Paris', 'Paris', NULL, '221.34', '电子', 'http://localhost:9000/vibe-music-data/songCovers/5ec1cb3d-9249-4c1b-b657-018da35fe719-blob', 'http://localhost:9000/vibe-music-data/songs/d3345a9c-8e0d-42d6-a922-b990da637873-The Chainsmokers - Paris.mp3', '2017-01-13'); INSERT INTO `tb_song` VALUES (348, 50, 'Sick Boy', 'Sick Boy', NULL, '192.88', '欧美流行,电子', 'http://localhost:9000/vibe-music-data/songCovers/72e2743b-683d-4e7b-ad31-0247c2a02410-blob', 'http://localhost:9000/vibe-music-data/songs/31ceb25b-8b5e-49a6-a4ab-0d02521bb68d-The Chainsmokers - Sick Boy.mp3', '2018-04-20'); INSERT INTO `tb_song` VALUES (349, 50, 'You Owe Me', 'Sick Boy', NULL, '190.82', '欧美流行,电子', 'http://localhost:9000/vibe-music-data/songCovers/72e2743b-683d-4e7b-ad31-0247c2a02410-blob', 'http://localhost:9000/vibe-music-data/songs/49f0c3c2-68aa-4a22-b45a-7168afa64493-The Chainsmokers - You Owe Me.mp3', '2018-04-20'); INSERT INTO `tb_song` VALUES (350, 50, 'Who Do You Love', 'Who Do You Love', NULL, '228.81', '电子', 'http://localhost:9000/vibe-music-data/songCovers/ae08d2d9-ce5b-490c-82dc-2cb50ca20fed-blob', 'http://localhost:9000/vibe-music-data/songs/07170e13-e1ce-49f4-be4a-2f69dbfac092-The Chainsmokers,5 Seconds of Summer - Who Do You Love.mp3', '2019-11-08'); INSERT INTO `tb_song` VALUES (351, 50, 'Call You Mine', 'World War Joy...Takeaway', NULL, '217.24', '电子', 'http://localhost:9000/vibe-music-data/songCovers/86286f63-0411-4fac-920b-78bf52549e9b-blob', 'http://localhost:9000/vibe-music-data/songs/4ba27ada-ba55-448e-8454-fcc38cac9f3f-The Chainsmokers,Bebe Rexha - Call You Mine.mp3', '2019-07-24'); INSERT INTO `tb_song` VALUES (352, 50, 'Something Just Like This', 'Something Just Like This', NULL, '247.58', '摇滚,节奏布鲁斯', 'http://localhost:9000/vibe-music-data/songCovers/6a3e6be8-776a-418c-9f7e-5c8532f3679b-blob', 'http://localhost:9000/vibe-music-data/songs/ef9d45a8-9b6e-490f-aa52-93cdb6334a64-The Chainsmokers,Coldplay - Something Just Like This.mp3', '2017-02-22'); INSERT INTO `tb_song` VALUES (353, 50, 'Somebody', 'Sick Boy', NULL, '223.41', '欧美流行,电子', 'http://localhost:9000/vibe-music-data/songCovers/72e2743b-683d-4e7b-ad31-0247c2a02410-blob', 'http://localhost:9000/vibe-music-data/songs/6e8e2468-67bb-4822-bbb7-696d70e9d926-The Chainsmokers,Drew Love - Somebody.mp3', '2018-04-20'); INSERT INTO `tb_song` VALUES (354, 50, 'Don\'t Say', 'Memories...Do Not Open', NULL, '227.77', '电子', 'http://localhost:9000/vibe-music-data/songCovers/63f1a629-e97f-4688-a168-429d41c22a50-blob', 'http://localhost:9000/vibe-music-data/songs/6b269cee-4781-43d0-a57f-5efa97842996-The Chainsmokers,Emily Warren - Don\'t Say.mp3', '2017-07-07'); INSERT INTO `tb_song` VALUES (355, 50, 'My Type', 'Memories...Do Not Open', NULL, '217.5', '电子', 'http://localhost:9000/vibe-music-data/songCovers/63f1a629-e97f-4688-a168-429d41c22a50-blob', 'http://localhost:9000/vibe-music-data/songs/c18e9a37-f701-49d6-ac25-5bd9afc001ef-The Chainsmokers,Emily Warren - My Type.mp3', '2017-07-07'); INSERT INTO `tb_song` VALUES (356, 50, 'Closer', 'Closer', NULL, '245.24', '电子,节奏布鲁斯', 'http://localhost:9000/vibe-music-data/songCovers/ebdd9dc6-a9df-45d5-83ea-113ca41d5386-blob', 'http://localhost:9000/vibe-music-data/songs/4b916e13-7420-46a8-a6be-4766a9852bd0-The Chainsmokers,Halsey - Closer.mp3', '2016-07-29'); INSERT INTO `tb_song` VALUES (357, 50, 'Wake Up Alone', 'Memories...Do Not Open', NULL, '215.45', '电子', 'http://localhost:9000/vibe-music-data/songCovers/63f1a629-e97f-4688-a168-429d41c22a50-blob', 'http://localhost:9000/vibe-music-data/songs/ef21be2b-0617-4fc3-ba83-973953edcff3-The Chainsmokers,Jhené Aiko - Wake Up Alone.mp3', '2017-07-07'); INSERT INTO `tb_song` VALUES (358, 50, 'This Feeling', 'Sick Boy', NULL, '196.98', '欧美流行,电子', 'http://localhost:9000/vibe-music-data/songCovers/72e2743b-683d-4e7b-ad31-0247c2a02410-blob', 'http://localhost:9000/vibe-music-data/songs/95be98f8-9fb6-459b-bd9a-35cf6e3628b7-The Chainsmokers,Kelsea Ballerini - This Feeling.mp3', '2018-04-20'); INSERT INTO `tb_song` VALUES (359, 50, 'All We Know', 'All We Know', NULL, '194.28', '欧美流行,电子', 'http://localhost:9000/vibe-music-data/songCovers/f25bf485-45e1-4bbc-8bd6-85ca41dfe969-blob', 'http://localhost:9000/vibe-music-data/songs/eb5a70f0-2120-4c51-8589-565d7a0fae5b-The Chainsmokers,Phoebe Ryan - All We Know.mp3', '2016-09-29'); INSERT INTO `tb_song` VALUES (360, 50, 'Bloodstream', 'Memories...Do Not Open', NULL, '223.66', '电子', 'http://localhost:9000/vibe-music-data/songCovers/63f1a629-e97f-4688-a168-429d41c22a50-blob', 'http://localhost:9000/vibe-music-data/songs/6c733bc3-65d4-440c-87c5-9880c614b02d-The Chainsmokers,Phoebe Ryan - Bloodstream.mp3', '2017-07-07'); INSERT INTO `tb_song` VALUES (361, 50, 'Do You Mean', 'World War Joy...Takeaway', NULL, '192.87', '电子,节奏布鲁斯', 'http://localhost:9000/vibe-music-data/songCovers/3a045148-ee9c-4524-aa74-e94823eb6aac-blob', 'http://localhost:9000/vibe-music-data/songs/725f3c61-14bc-4e1e-92e6-27fbb7824bfe-The Chainsmokers,Ty Dolla $ign,Bülow - Do You Mean.mp3', '2019-07-24'); INSERT INTO `tb_song` VALUES (362, 50, 'Hope', 'Sick Boy', NULL, '180.56', '欧美流行,电子', 'http://localhost:9000/vibe-music-data/songCovers/72e2743b-683d-4e7b-ad31-0247c2a02410-blob', 'http://localhost:9000/vibe-music-data/songs/66078089-a644-4d39-a0cd-c5f65a1abe2a-The Chainsmokers,Winona Oak - Hope.mp3', '2018-04-20'); INSERT INTO `tb_song` VALUES (363, 76, 'A Million Dreams', 'A Million Dreams', NULL, '285.24', '古典,原声带', 'http://localhost:9000/vibe-music-data/songCovers/18464020-1a09-46db-be17-a82b928c5a30-blob', 'http://localhost:9000/vibe-music-data/songs/782aa681-562e-4d66-9e00-165a7383d457-The Piano Guys,Benj Pasek,Justin Paul - A Million Dreams.mp3', '2018-03-16'); INSERT INTO `tb_song` VALUES (364, 79, 'Farewell Shasha (Shanghai Restoration Project Remix', 'The Shanghai Restoration Project - Remixed and Restored, Vol. 1', NULL, '248.28', '电子', 'http://localhost:9000/vibe-music-data/songCovers/8c334301-decf-4c87-85af-1cbf90139d84-blob', 'http://localhost:9000/vibe-music-data/songs/065c63c0-26c7-4409-943f-9b7e17b3868d-The Shanghai Restoration Project - Farewell Shasha (Shanghai Restoration Project Remix).mp3', '2007-12-11'); INSERT INTO `tb_song` VALUES (365, 79, 'Night Life in Shanghai (Shanghai Restoration Project Remix', 'The Shanghai Restoration Project - Remixed and Restored Vol 1', NULL, '266.1', '电子', 'http://localhost:9000/vibe-music-data/songCovers/8c334301-decf-4c87-85af-1cbf90139d84-blob', 'http://localhost:9000/vibe-music-data/songs/5b275609-fc61-4cb5-a9e0-e297a3d81483-The Shanghai Restoration Project - Night Life in Shanghai (Shanghai Restoration Project Remix).mp3', '2007-12-11'); INSERT INTO `tb_song` VALUES (366, 79, 'Rose, Rose I Love You (Shanghai Restoration Project Remix', 'The Shanghai Restoration Project - Remixed and Restored, Vol. 1', NULL, '194.91', '电子', 'http://localhost:9000/vibe-music-data/songCovers/8c334301-decf-4c87-85af-1cbf90139d84-blob', 'http://localhost:9000/vibe-music-data/songs/390701bf-385d-463a-a0f7-f87625609eaa-The Shanghai Restoration Project - Rose, Rose I Love You (Shanghai Restoration Project Remix).mp3', '2007-12-11'); INSERT INTO `tb_song` VALUES (367, 79, 'The Evening Primrose (Shanghai Restoration Project Remix', 'The Shanghai Restoration Project - Remixed and Restored Vol 1', NULL, '192.06', '电子', 'http://localhost:9000/vibe-music-data/songCovers/8c334301-decf-4c87-85af-1cbf90139d84-blob', 'http://localhost:9000/vibe-music-data/songs/d95728c3-aa6d-4140-a79b-4c467cc57c9a-The Shanghai Restoration Project - The Evening Primrose (Shanghai Restoration Project Remix).mp3', '2007-12-11'); INSERT INTO `tb_song` VALUES (368, 79, 'The Fire of Love (Shanghai Restoration Project Remix', 'The Shanghai Restoration Project - Remixed and Restored, Vol. 1', NULL, '201.07', '电子', 'http://localhost:9000/vibe-music-data/songCovers/8c334301-decf-4c87-85af-1cbf90139d84-blob', 'http://localhost:9000/vibe-music-data/songs/e3b6b948-5140-4ca4-ae76-240c8edb00b7-The Shanghai Restoration Project - The Fire of Love (Shanghai Restoration Project Remix).mp3', '2007-12-11'); INSERT INTO `tb_song` VALUES (369, 58, 'BITE', 'Blue Neighbourhood (Deluxe', NULL, '184.66', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/24400e81-8195-4dc5-8fc3-30950f94acf7-blob', 'http://localhost:9000/vibe-music-data/songs/914508e9-3c04-4dcc-aebd-47b51f755faa-Troye Sivan - BITE.mp3', '2015-12-04'); INSERT INTO `tb_song` VALUES (370, 58, 'COOL', 'Blue Neighbourhood (Deluxe', NULL, '200.62', '欧美流行,电子', 'http://localhost:9000/vibe-music-data/songCovers/24400e81-8195-4dc5-8fc3-30950f94acf7-blob', 'http://localhost:9000/vibe-music-data/songs/fb049aa8-112b-4efc-b34b-e4c6d7df66ef-Troye Sivan - COOL.mp3', '2015-12-04'); INSERT INTO `tb_song` VALUES (371, 58, 'FOOLS', 'Blue Neighbourhood (Deluxe', NULL, '219.56', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/24400e81-8195-4dc5-8fc3-30950f94acf7-blob', 'http://localhost:9000/vibe-music-data/songs/a67e4cc2-865a-46de-960f-7ad2cbf06141-Troye Sivan - FOOLS.mp3', '2015-12-04'); INSERT INTO `tb_song` VALUES (372, 58, 'HAPPY LITTLE PILL (Live Version', 'Blue Neighbourhood (Deluxe', NULL, '242.13', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/24400e81-8195-4dc5-8fc3-30950f94acf7-blob', 'http://localhost:9000/vibe-music-data/songs/47013729-1cb3-4974-abf2-50769ab00406-Troye Sivan - HAPPY LITTLE PILL (Live Version).mp3', '2015-12-04'); INSERT INTO `tb_song` VALUES (373, 58, 'LOST BOY', 'Blue Neighbourhood (Deluxe', NULL, '223.66', '欧美流行,电子', 'http://localhost:9000/vibe-music-data/songCovers/24400e81-8195-4dc5-8fc3-30950f94acf7-blob', 'http://localhost:9000/vibe-music-data/songs/b3a162f5-ef37-4838-b0c9-94f700dd4ed8-Troye Sivan - LOST BOY.mp3', '2015-12-04'); INSERT INTO `tb_song` VALUES (374, 58, 'Strawberries & Cigarettes', 'Love, Simon (Original Motion Picture Soundtrack', NULL, '201.78', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/0f3c6bc6-3377-4d72-97c3-5072383899f5-blob', 'http://localhost:9000/vibe-music-data/songs/f71e9da6-4970-4345-866f-fc49b31c01f0-Troye Sivan - Strawberries & Cigarettes.mp3', '2021-08-04'); INSERT INTO `tb_song` VALUES (375, 58, 'SUBURBIA', 'Blue Neighbourhood (Deluxe', NULL, '233.39', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/24400e81-8195-4dc5-8fc3-30950f94acf7-blob', 'http://localhost:9000/vibe-music-data/songs/e51eb802-250c-41bc-9715-6c24d25ee589-Troye Sivan - SUBURBIA.mp3', '2015-12-04'); INSERT INTO `tb_song` VALUES (376, 58, 'SWIMMING POOLS', 'Blue Neighbourhood (Deluxe', NULL, '205.19', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/24400e81-8195-4dc5-8fc3-30950f94acf7-blob', 'http://localhost:9000/vibe-music-data/songs/b7ec44f8-ff21-4f0a-b45d-d2af90c32a91-Troye Sivan - SWIMMING POOLS.mp3', '2015-12-04'); INSERT INTO `tb_song` VALUES (377, 58, 'TALK ME DOWN', 'Blue Neighbourhood (Deluxe', NULL, '237.49', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/24400e81-8195-4dc5-8fc3-30950f94acf7-blob', 'http://localhost:9000/vibe-music-data/songs/a2fb8bd7-3e73-4120-80e8-51ef9cbf7379-Troye Sivan - TALK ME DOWN.mp3', '2015-12-04'); INSERT INTO `tb_song` VALUES (378, 58, 'THE QUIET', 'Blue Neighbourhood (Deluxe', NULL, '225.72', '欧美流行,电子', 'http://localhost:9000/vibe-music-data/songCovers/24400e81-8195-4dc5-8fc3-30950f94acf7-blob', 'http://localhost:9000/vibe-music-data/songs/95e22e38-3369-4fc9-98c9-12ecfce82e52-Troye Sivan - THE QUIET.mp3', '2015-12-04'); INSERT INTO `tb_song` VALUES (379, 58, 'TOO GOOD', 'Blue Neighbourhood (Deluxe', NULL, '223.66', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/24400e81-8195-4dc5-8fc3-30950f94acf7-blob', 'http://localhost:9000/vibe-music-data/songs/ed16b529-58ec-4583-ab22-62f51123e391-Troye Sivan - TOO GOOD.mp3', '2015-12-04'); INSERT INTO `tb_song` VALUES (380, 58, 'WILD', 'Blue Neighbourhood (Deluxe', NULL, '227.25', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/24400e81-8195-4dc5-8fc3-30950f94acf7-blob', 'http://localhost:9000/vibe-music-data/songs/0c86a3db-0429-41ef-b94d-93f42d247179-Troye Sivan - WILD.mp3', '2015-12-04'); INSERT INTO `tb_song` VALUES (381, 58, 'YOUTH', 'Blue Neighbourhood (Deluxe', NULL, '185.42', '欧美流行,电子', 'http://localhost:9000/vibe-music-data/songCovers/24400e81-8195-4dc5-8fc3-30950f94acf7-blob', 'http://localhost:9000/vibe-music-data/songs/f706b50e-66df-41a4-8f1a-632935f90460-Troye Sivan - YOUTH.mp3', '2015-12-04'); INSERT INTO `tb_song` VALUES (382, 58, 'BLUE', 'Blue Neighbourhood (Deluxe', NULL, '211.5', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/24400e81-8195-4dc5-8fc3-30950f94acf7-blob', 'http://localhost:9000/vibe-music-data/songs/0a074cce-5304-45ba-a74a-ce8cde70238f-Troye Sivan,Alex Hope - BLUE.mp3', '2015-12-04'); INSERT INTO `tb_song` VALUES (383, 58, 'for him.', 'Blue Neighbourhood (Deluxe', NULL, '208.22', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/24400e81-8195-4dc5-8fc3-30950f94acf7-blob', 'http://localhost:9000/vibe-music-data/songs/4ace76cb-6a62-4469-864b-8bd976fa54ae-Troye Sivan,Allday - for him.mp3', '2015-12-04'); INSERT INTO `tb_song` VALUES (384, 58, 'HEAVEN', 'Blue Neighbourhood (Deluxe', NULL, '260.01', '欧美流行,电子', 'http://localhost:9000/vibe-music-data/songCovers/24400e81-8195-4dc5-8fc3-30950f94acf7-blob', 'http://localhost:9000/vibe-music-data/songs/ecfbdd18-8c16-4009-9fbf-54b47ae47fc3-Troye Sivan,Betty Who - HEAVEN.mp3', '2015-12-04'); INSERT INTO `tb_song` VALUES (385, 58, 'EASE', 'Blue Neighbourhood (Deluxe', NULL, '213.4', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/24400e81-8195-4dc5-8fc3-30950f94acf7-blob', 'http://localhost:9000/vibe-music-data/songs/369574ae-9b75-4589-8a94-ae2730367609-Troye Sivan,BROODS - EASE.mp3', '2015-12-04'); INSERT INTO `tb_song` VALUES (386, 58, 'DKLA', 'Blue Neighbourhood (Deluxe', NULL, '256.51', '欧美流行,电子', 'http://localhost:9000/vibe-music-data/songCovers/24400e81-8195-4dc5-8fc3-30950f94acf7-blob', 'http://localhost:9000/vibe-music-data/songs/9cea1684-2c45-4665-86d2-1a20e89c06e0-Troye Sivan,Tkay Maidza - DKLA.mp3', '2015-12-04'); INSERT INTO `tb_song` VALUES (387, 58, 'WILD (XXYYXX Remix', 'Blue Neighbourhood (Deluxe', NULL, '213.4', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/24400e81-8195-4dc5-8fc3-30950f94acf7-blob', 'http://localhost:9000/vibe-music-data/songs/06763079-f46a-4810-84da-bd5b55bde0ba-Troye Sivan,XXYYXX - WILD (XXYYXX Remix).mp3', '2015-12-04'); INSERT INTO `tb_song` VALUES (388, 88, '恋与憧憬', '《恋与制作人:初心》原声音乐纪念册', NULL, '187.76', '轻音乐,原声带', 'http://localhost:9000/vibe-music-data/songCovers/a0e0ca5e-876a-48e0-98ca-e7733548d4bf-blob', 'http://localhost:9000/vibe-music-data/songs/9c73ed07-e0ce-4d7d-bb0e-ba8d55f2262c-V.K克 - 恋与憧憬.mp3', '2018-12-11'); INSERT INTO `tb_song` VALUES (389, 88, '恋语 (V.K克钢琴独奏版', '《恋与制作人:初心》原声音乐纪念册', NULL, '141.6', '轻音乐,原声带', 'http://localhost:9000/vibe-music-data/songCovers/7441841c-8e0e-437e-8346-ef19e256168c-blob', 'http://localhost:9000/vibe-music-data/songs/d203616a-d1d3-4bea-afbb-48346e727280-V.K克 - 恋语 (V.K克钢琴独奏版).mp3', '2018-12-11'); INSERT INTO `tb_song` VALUES (390, 25, 'Hallelujah', 'TAS: The Absolute Sound 2006', NULL, '321.1', '古典', 'http://localhost:9000/vibe-music-data/songCovers/44637574-6e91-4db4-b659-66da9451b123-blob', 'http://localhost:9000/vibe-music-data/songs/a04150ef-3893-423b-9d46-a755db0c91cd-Various Artists - Hallelujah.mp3', '2006-06-01'); INSERT INTO `tb_song` VALUES (391, 25, '巴赫:第一号无伴奏大提琴组曲前奏曲《寻羊冒险记》', '村上春树的音乐异想世界', NULL, '154.66', '古典', 'http://localhost:9000/vibe-music-data/songCovers/f1b1191f-4d57-4258-83aa-244947065e23-blob', 'http://localhost:9000/vibe-music-data/songs/9e628a62-028e-4676-95e0-0f5390058cd1-Various Artists - 巴赫第一号无伴奏大提琴组曲前奏曲《寻羊冒险记》.mp3', '2008-01-01'); INSERT INTO `tb_song` VALUES (392, 16, 'Lonely Dance', 'Lonely Dance', NULL, '207.75', '电子', 'http://localhost:9000/vibe-music-data/songCovers/785115bc-8a1c-46e9-86dd-e24e15ac5556-blob', 'http://localhost:9000/vibe-music-data/songs/2cc4d518-0aa9-4fa7-bf14-b39775fc2f05-Vexento - Lonely Dance.mp3', '2015-03-19'); INSERT INTO `tb_song` VALUES (393, 63, 'June Barcarolle Op.37 No.6', 'POWER OF PIANO Steinway & Sons and Pianists', NULL, '324.54', '古典', 'http://localhost:9000/vibe-music-data/songCovers/abb39830-52c6-4754-9cb5-54f287e13144-blob', 'http://localhost:9000/vibe-music-data/songs/716399b1-5cbe-4d23-bc4d-d069fd09db3c-Vladimir Ashkenazy - June Barcarolle Op.37 No.6.mp3', '2005-01-01'); INSERT INTO `tb_song` VALUES (394, 63, 'Piano Sonata No.14 In C Sharp Minor Op.27 No.2 -Moonlight:1. Adagio sostenuto', 'Ultimate Classical Piano', NULL, '365.29', '古典', 'http://localhost:9000/vibe-music-data/songCovers/c9c04b51-7c48-4ba8-9575-94d7c4918083-blob', 'http://localhost:9000/vibe-music-data/songs/06e9707c-89aa-496a-a14c-fdfafcf869fc-Vladimir Ashkenazy - Piano Sonata No.14 In C Sharp Minor Op.27 No.2 -Moonlight1. Adagio sostenuto.mp3', '2006-01-01'); INSERT INTO `tb_song` VALUES (395, 103, '8 Letters (R3HAB Remix', '8 Letters (R3HAB Remix', NULL, '131.29', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/acd6adae-f8b8-4259-9599-396fd60a9942-blob', 'http://localhost:9000/vibe-music-data/songs/070fd430-1de1-47ab-b47e-2840a81ceea0-Why Don\'t We,R3HAB - 8 Letters (R3HAB Remix).mp3', '2018-09-28'); INSERT INTO `tb_song` VALUES (396, 37, 'An der schönen, blauen Donau - Walzer, Op. 314', '100 Best Wiener Philharmoniker', NULL, '605.32', '古典', 'http://localhost:9000/vibe-music-data/songCovers/71a47209-5e9c-4e67-88dc-a7d5ec63b902-blob', 'http://localhost:9000/vibe-music-data/songs/8110890b-6c8e-4d96-99e6-20ea0a10148a-Wiener Philharmoniker - An der schönen, blauen Donau - Walzer, Op. 314.mp3', '2010-11-08'); INSERT INTO `tb_song` VALUES (397, 37, 'La Gioconda, Act III:Dance of the Hours', '100 Best Wiener Philharmoniker', NULL, '557.19', '古典', 'http://localhost:9000/vibe-music-data/songCovers/71a47209-5e9c-4e67-88dc-a7d5ec63b902-blob', 'http://localhost:9000/vibe-music-data/songs/cab27cd2-0d21-4dbe-a3ab-334a4c29c271-Wiener Philharmoniker - La Gioconda, Act IIIDance of the Hours.mp3', '2010-11-08'); INSERT INTO `tb_song` VALUES (398, 37, 'Tritsch-Tratsch, Op. 214', '100 Best Wiener Philharmoniker', NULL, '153.48', '古典', 'http://localhost:9000/vibe-music-data/songCovers/71a47209-5e9c-4e67-88dc-a7d5ec63b902-blob', 'http://localhost:9000/vibe-music-data/songs/899334dd-5afe-46aa-8202-b728da09adb1-Wiener Philharmoniker - Tritsch-Tratsch, Op. 214.mp3', '2010-11-08'); INSERT INTO `tb_song` VALUES (399, 37, 'Carmina Burana / Fortuna Imperatrix Mundi:\"O Fortuna\"', 'Orff: Carmina Burana', NULL, '166.18', '古典', 'http://localhost:9000/vibe-music-data/songCovers/72fc0d98-2807-4b51-a7d7-133b170dc7ff-blob', 'http://localhost:9000/vibe-music-data/songs/5ca2031a-6b91-478c-922b-d8e81654c6cf-Wiener Philharmoniker,André Previn,Arnold Schoenberg Chor - Carmina Burana Fortuna Imperatrix MundiO Fortuna.mp3', '1994-01-01'); INSERT INTO `tb_song` VALUES (400, 37, 'Die Walküre, Akt III: Vorspiel', 'Sommernachtskonzert 2013 / Summer Night Concert 2013', NULL, '367.34', '古典', 'http://localhost:9000/vibe-music-data/songCovers/1f58c90e-6e79-40de-9fb4-88bfcfbd2394-blob', 'http://localhost:9000/vibe-music-data/songs/2a4d33a8-030b-4330-a107-4d97c8317c90-Wiener Philharmoniker,Lorin Maazel - Die Walküre, Akt III Vorspiel.mp3', '2013-06-10'); INSERT INTO `tb_song` VALUES (401, 14, '小星星变奏曲', '史上最优美钢琴小品精华', NULL, '277.88', '古典', 'http://localhost:9000/vibe-music-data/songCovers/a7217856-5af2-417e-9768-cf8df3fc3b7e-blob', 'http://localhost:9000/vibe-music-data/songs/ccd25eb3-18af-45a8-b2d3-180bc6fa4a95-Wolfgang Amadeus Mozart - 小星星变奏曲.mp3', '2016-01-25'); INSERT INTO `tb_song` VALUES (402, 65, 'Bad Habit', 'Yes & No', NULL, '192.24', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/1e38c2f4-4349-4b52-b983-7663f41d32fb-blob', 'http://localhost:9000/vibe-music-data/songs/4eeff765-5ff8-46f9-8941-5a2a13c4d145-XYLØ - Bad Habit.mp3', '2019-05-31'); INSERT INTO `tb_song` VALUES (403, 65, 'Ordinary', 'Yes & No', NULL, '197.92', '欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/1e38c2f4-4349-4b52-b983-7663f41d32fb-blob', 'http://localhost:9000/vibe-music-data/songs/0ef6323b-5475-4c07-8419-45f1dfd04076-XYLØ - Ordinary.mp3', '2019-05-31'); INSERT INTO `tb_song` VALUES (404, 65, 'Ride Or Die', 'Yes & No', NULL, '165.73', '欧美流行,电子', 'http://localhost:9000/vibe-music-data/songCovers/1e38c2f4-4349-4b52-b983-7663f41d32fb-blob', 'http://localhost:9000/vibe-music-data/songs/8c19dc88-7892-4177-8426-745a16bcb097-XYLØ - Ride Or Die.mp3', '2019-05-31'); INSERT INTO `tb_song` VALUES (405, 92, '帕海贝尔-卡农 (钢琴三重奏', '爱的罗曼史', NULL, '211.35', '古典', 'http://localhost:9000/vibe-music-data/songCovers/50c2f39b-687b-4717-ae17-c81e9e2280b9-blob', 'http://localhost:9000/vibe-music-data/songs/7c22c3c5-5ac5-41a8-b135-6be1966906fb-丝国兰 - 帕海贝尔-卡农 (钢琴三重奏).mp3', '2017-06-08'); INSERT INTO `tb_song` VALUES (406, 64, '维瓦尔第: 四季·春 - 第一乐章 快板', '名家室内乐专辑2', NULL, '222.61', '古典', 'http://localhost:9000/vibe-music-data/songCovers/adae4893-68a8-4be0-821d-7d8d986f70c1-blob', 'http://localhost:9000/vibe-music-data/songs/9097f2e7-b142-4ee0-b8a3-e3bef5d7168d-中国交响乐团 - 维瓦尔第 四季·春 - 第一乐章 快板.mp3', '2015-01-20'); INSERT INTO `tb_song` VALUES (407, 125, '李斯特:匈牙利狂想曲第2号', '中国民族管弦乐系列·世界名曲(二-G大调弦乐小夜曲', NULL, '726.49', '古典', 'http://localhost:9000/vibe-music-data/songCovers/5c8789e9-383d-46f5-a738-898960b2aa76-blob', 'http://localhost:9000/vibe-music-data/songs/6a3346f7-fd4f-4528-84f6-df365fc4370c-中国广播民族乐团 - 李斯特:匈牙利狂想曲第2号.mp3', '1990-01-01'); INSERT INTO `tb_song` VALUES (408, 125, '莫扎特:G大调弦乐小夜曲', '中国民族管弦乐系列·世界名曲(二-G大调弦乐小夜曲', NULL, '1117.5', '古典', 'http://localhost:9000/vibe-music-data/songCovers/b70d3755-d2dd-4db8-8b20-b3232b38aa64-blob', 'http://localhost:9000/vibe-music-data/songs/764d7de7-160c-4503-aabe-88f5aa15138b-中国广播民族乐团 - 莫扎特:G大调弦乐小夜曲.mp3', '1990-01-01'); INSERT INTO `tb_song` VALUES (409, 59, '卡农', '重奏之美', NULL, '320.15', '古典', 'http://localhost:9000/vibe-music-data/songCovers/6e4b1906-405b-4c87-9340-062dac165ebe-blob', 'http://localhost:9000/vibe-music-data/songs/b835b882-bd42-4f24-8c9c-38f8532544c7-中国爱乐乐团,瑞鸣音乐 - 卡农.mp3', '2013-01-01'); INSERT INTO `tb_song` VALUES (410, 106, '倔强', '神的孩子都在跳舞', NULL, '1623.98', '华语流行,摇滚', 'http://localhost:9000/vibe-music-data/songCovers/67871814-1c81-4547-a2a4-c2b8a485d53c-blob', 'http://localhost:9000/vibe-music-data/songs/7cab95ef-f06b-417c-ab5b-d6061259fa6d-五月天 - 倔强.mp3', '2004-11-01'); INSERT INTO `tb_song` VALUES (411, 2, '彩蝶舞夏', '舌尖上的中国 番外篇', NULL, '265.89', '轻音乐,国风', 'http://localhost:9000/vibe-music-data/songCovers/60f99cc5-98c3-4cf7-b989-1d599e0d6bc3-blob', 'http://localhost:9000/vibe-music-data/songs/045a8016-d8e2-4f38-be9d-a1dda2d6008c-何真真 - 彩蝶舞夏.mp3', '2012-05-14'); INSERT INTO `tb_song` VALUES (412, 2, '秋诗', '京城四季 (二', NULL, '207.5', '轻音乐,国风', 'http://localhost:9000/vibe-music-data/songCovers/cef6b467-0c1e-478f-9f69-69e2d5ab8001-blob', 'http://localhost:9000/vibe-music-data/songs/4102025b-9af4-4fb6-ad7f-269f0c2f4472-何真真 - 秋诗.mp3', '2005-11-18'); INSERT INTO `tb_song` VALUES (413, 20, '洞箫吹奏《星月神话》by凤箫和鸣', '凤箫和鸣的日常乱吹1', NULL, '251.67', '轻音乐', 'http://localhost:9000/vibe-music-data/songCovers/93d046c9-59b0-4154-bd88-46deefa79e4b-blob', 'http://localhost:9000/vibe-music-data/songs/62f59dac-fe1a-42d7-a70e-e2d96a9b1389-凤箫和鸣 - 洞箫吹奏《星月神话》by凤箫和鸣.mp3', '2017-08-15'); INSERT INTO `tb_song` VALUES (414, 101, '哈尼宝贝', '6415', NULL, '209.5', '嘻哈说唱', 'http://localhost:9000/vibe-music-data/songCovers/311fea8e-8f24-4797-a38c-577d23afb5d2-blob', 'http://localhost:9000/vibe-music-data/songs/8f97effb-4b42-4533-8ab9-a0cd1335423e-南征北战NZBZ - 哈尼宝贝.mp3', '2016-02-18'); INSERT INTO `tb_song` VALUES (415, 46, '水墨青花', '水墨青花', NULL, '174.4', '电子,国风', 'http://localhost:9000/vibe-music-data/songCovers/ce14b34f-e5b7-445b-9321-fa283b746121-blob', 'http://localhost:9000/vibe-music-data/songs/a1816633-b689-4281-a2bb-c2ecba4b0ff0-叶健 - 水墨青花.mp3', '2017-10-09'); INSERT INTO `tb_song` VALUES (416, 8, '威风堂堂进行曲', '梁祝', NULL, '349.88', '古典', 'http://localhost:9000/vibe-music-data/songCovers/d05e8969-cb8f-414b-b848-ecadd3ec11dc-blob', 'http://localhost:9000/vibe-music-data/songs/aaef0550-95d8-4c09-96fd-9416c9021b59-吕思清 - 威风堂堂进行曲.mp3', '2010-04-06'); INSERT INTO `tb_song` VALUES (417, 121, '西塘古镇', '西塘古镇', NULL, '151.82', '轻音乐,国风', 'http://localhost:9000/vibe-music-data/songCovers/2ae17385-b516-40ea-a2be-87508f2efd23-blob', 'http://localhost:9000/vibe-music-data/songs/9f2d4f1c-6be0-476a-80f5-5a260b19b278-吴宇深 - 西塘古镇.mp3', '2017-07-30'); INSERT INTO `tb_song` VALUES (418, 121, '锦溪', '锦溪', NULL, '155.93', '轻音乐,国风', 'http://localhost:9000/vibe-music-data/songCovers/71cd4fd8-aa52-4de8-a3c0-ecf2e3d86474-blob', 'http://localhost:9000/vibe-music-data/songs/6aa85710-ef22-4df3-83a4-773e1f28ccc5-吴宇深 - 锦溪.mp3', '2018-04-28'); INSERT INTO `tb_song` VALUES (419, 120, 'Night Life in Shanghai', 'The Shanghai Restoration Project - Remixed and Restored, Vol. 1', NULL, '176.45', '电子', 'http://localhost:9000/vibe-music-data/songCovers/50ada214-508c-45e9-9cf4-1056ae04fa38-blob', 'http://localhost:9000/vibe-music-data/songs/b62ef5a1-0136-42ca-9025-dbdac4ca0065-周璇 - Night Life in Shanghai.mp3', '2007-12-11'); INSERT INTO `tb_song` VALUES (420, 47, '巴赫:G弦上的咏叹调(数字录音)', '古典乐选集:巴洛克篇', NULL, '300.76', '古典', 'http://localhost:9000/vibe-music-data/songCovers/2cdf5655-d1df-4e23-bda2-e60dcd3e8e95-blob', 'http://localhost:9000/vibe-music-data/songs/1f0d234c-78f9-4142-ba0c-512cf1ac67c6-土星皇家交响乐团 - 巴赫:G弦上的咏叹调(数字录音).mp3', '2017-02-08'); INSERT INTO `tb_song` VALUES (421, 123, 'Rose, Rose I Love You', 'The Shanghai Restoration Project - Remixed and Restored, Vol. 1', NULL, '151.81', '电子', 'http://localhost:9000/vibe-music-data/songCovers/18ed5bb5-d1a8-4da6-a284-c6121b7c92f0-blob', 'http://localhost:9000/vibe-music-data/songs/00f4aa18-c6a5-4842-98e9-8c9cc7df8a2e-姚莉 - Rose, Rose I Love You.mp3', '2007-12-11'); INSERT INTO `tb_song` VALUES (422, 5, 'Ooh La La (HYOMIN SOLO', 'What\'s my name?', NULL, '178.5', '韩国流行', 'http://localhost:9000/vibe-music-data/songCovers/5428e139-84f7-40ae-972b-65b1f0d89f2f-blob', 'http://localhost:9000/vibe-music-data/songs/2cf624dc-b0c9-42e1-8ad5-770811b54d10-孝敏 - Ooh La La (HYOMIN SOLO).mp3', '2017-06-14'); INSERT INTO `tb_song` VALUES (423, 111, '千与千寻(口琴版)(翻自 木村弓)', '迈向未来的我们', NULL, '169.72', '轻音乐', 'http://localhost:9000/vibe-music-data/songCovers/619fc92c-8183-40eb-a264-ae87e676fddd-blob', 'http://localhost:9000/vibe-music-data/songs/df2a29d9-dd75-4e06-9b8b-b44889677d0a-寻道树 - 千与千寻(口琴版)(翻自 木村弓).mp3', '2017-02-09'); INSERT INTO `tb_song` VALUES (424, 24, '贝多芬:献给爱丽丝', '世界钢琴名曲精选 少女的祈祷', NULL, '162.08', '古典', 'http://localhost:9000/vibe-music-data/songCovers/1bf8484f-8de8-4fc4-8416-e92ef49778b5-blob', 'http://localhost:9000/vibe-music-data/songs/f71e9283-a0c6-4f55-8e48-52d990344d00-尤大淳 - 贝多芬:献给爱丽丝.mp3', '1994-01-01'); INSERT INTO `tb_song` VALUES (425, 89, '淡若晨风', '荷香淡淡', NULL, '213.4', '轻音乐', 'http://localhost:9000/vibe-music-data/songCovers/6aafbd67-90da-4ed9-bbf1-4ef216dc2785-blob', 'http://localhost:9000/vibe-music-data/songs/ec71f09b-86a2-4c3e-825f-a045736e5152-巫娜 - 淡若晨风.mp3', '2012-05-20'); INSERT INTO `tb_song` VALUES (426, 34, '只想一生跟你走', '一生跟你走 年度代表作品辑', NULL, '313.99', '粤语流行', 'http://localhost:9000/vibe-music-data/songCovers/7dab8a60-56cb-4ce5-9179-93545b2b14c3-blob', 'http://localhost:9000/vibe-music-data/songs/2452c049-d320-4820-bb5c-298d46cc5210-张学友 - 只想一生跟你走.mp3', '1995-03-01'); INSERT INTO `tb_song` VALUES (427, 34, '吻别', '吻别', NULL, '301.67', '华语流行', 'http://localhost:9000/vibe-music-data/songCovers/2e18ab4b-56be-43b3-b441-38c96074bff4-blob', 'http://localhost:9000/vibe-music-data/songs/94aa28e7-6be4-455c-868f-297245943382-张学友 - 吻别.mp3', '1993-01-01'); INSERT INTO `tb_song` VALUES (428, 34, '烦恼歌', '在你身边', NULL, '254.46', '华语流行', 'http://localhost:9000/vibe-music-data/songCovers/41c0a6e6-c862-43e2-b9c6-008215cd9dae-blob', 'http://localhost:9000/vibe-music-data/songs/9a8ddc2a-aad2-4b3d-b144-ead79360d4ba-张学友 - 烦恼歌.mp3', '2007-01-01'); INSERT INTO `tb_song` VALUES (429, 34, '饿狼传说', '饿狼传说', NULL, '270.88', '粤语流行,摇滚', 'http://localhost:9000/vibe-music-data/songCovers/f3f97086-2898-42e3-abf5-0d891d0b560c-blob', 'http://localhost:9000/vibe-music-data/songs/bd09298c-337c-483a-961c-18708aaa58f9-张学友 - 饿狼传说.mp3', '1994-01-01'); INSERT INTO `tb_song` VALUES (430, 35, '月亮惹的祸', '月亮 太阳', NULL, '261.06', '华语流行,原声带', 'http://localhost:9000/vibe-music-data/songCovers/202ba060-9461-4082-8dcd-5cd91f4e0c9f-blob', 'http://localhost:9000/vibe-music-data/songs/c5ce66d1-9f7d-406d-9ac1-af4050bf55c5-张宇 - 月亮惹的祸.mp3', '1998-12-08'); INSERT INTO `tb_song` VALUES (431, 35, '雨一直下', '雨一直下', NULL, '290.63', '华语流行', 'http://localhost:9000/vibe-music-data/songCovers/0a69b205-cc10-4fef-af80-d0877638e0c6-blob', 'http://localhost:9000/vibe-music-data/songs/c0b8a40a-b9ef-4f3b-9d08-b27d9e3b103b-张宇 - 雨一直下.mp3', '1999-09-01'); INSERT INTO `tb_song` VALUES (432, 30, '他不懂', '爱,不解释', NULL, '231.35', '华语流行', 'http://localhost:9000/vibe-music-data/songCovers/0e1f0d37-b5da-4f1a-9c30-38dae6725cb0-blob', 'http://localhost:9000/vibe-music-data/songs/bd3881be-7854-41db-9d99-96e31a5119b9-张杰 - 他不懂.mp3', '2013-12-20'); INSERT INTO `tb_song` VALUES (433, 30, '这,就是爱', '这,就是爱', NULL, '293.46', '华语流行', 'http://localhost:9000/vibe-music-data/songCovers/db070323-cad6-47bb-8745-21bc53a83d69-blob', 'http://localhost:9000/vibe-music-data/songs/d67ccbbb-8dda-42b1-b935-5aca8f3ec673-张杰 - 这,就是爱.mp3', '2010-11-22'); INSERT INTO `tb_song` VALUES (434, 118, '会好的', '会好的', NULL, '210.86', '华语流行', 'http://localhost:9000/vibe-music-data/songCovers/8ed65622-8aa3-4fa0-b838-0f273a058628-blob', 'http://localhost:9000/vibe-music-data/songs/f82906ee-d7cc-4128-b38f-17527a632e63-张艺兴 - 会好的.mp3', '2020-02-20'); INSERT INTO `tb_song` VALUES (435, 118, '我不好', '我不好', NULL, '232.09', '华语流行,节奏布鲁斯', 'http://localhost:9000/vibe-music-data/songCovers/85b8c1ab-8610-4d7d-ab95-730a9ff35e56-blob', 'http://localhost:9000/vibe-music-data/songs/393d7223-7e77-42a6-a116-75a21b983456-张艺兴 - 我不好.mp3', '2019-09-09'); INSERT INTO `tb_song` VALUES (436, 118, '晚安', '晚安', NULL, '258.75', '华语流行', 'http://localhost:9000/vibe-music-data/songCovers/16909ec0-6c48-4e65-bfeb-ea5e387977de-blob', 'http://localhost:9000/vibe-music-data/songs/950bab08-4477-4394-8c53-13769fb1ec49-张艺兴 - 晚安.mp3', '2019-11-15'); INSERT INTO `tb_song` VALUES (437, 115, '再见', '再见', NULL, '182.61', '华语流行', 'http://localhost:9000/vibe-music-data/songCovers/073124e3-0bdc-487f-94e5-68ae9df27816-blob', 'http://localhost:9000/vibe-music-data/songs/263fa503-27d8-4b16-882c-3f7396973434-张震岳 - 再见.mp3', '2005-07-01'); INSERT INTO `tb_song` VALUES (438, 115, '迷途羔羊', '天兵', NULL, '270.88', '嘻哈说唱', 'http://localhost:9000/vibe-music-data/songCovers/764499ac-7ae7-4935-9201-3cb81d286c0d-blob', 'http://localhost:9000/vibe-music-data/songs/6c8dca3e-f630-4e85-aaee-2fac1ea0be14-张震岳 - 迷途羔羊.mp3', '2016-01-28'); INSERT INTO `tb_song` VALUES (439, 114, '殇', '武侠音乐系列之黯然消魂', NULL, '170.69', '轻音乐,国风,原声带', 'http://localhost:9000/vibe-music-data/songCovers/7c48334c-3446-4a55-8c53-8b9f2d076b07-blob', 'http://localhost:9000/vibe-music-data/songs/1180f7f7-51ed-48e5-9093-ace9f4efece9-徐嘉良 - 殇.mp3', '2013-03-08'); INSERT INTO `tb_song` VALUES (440, 23, 'China-X', 'Change', NULL, '226.26', '电子,国风', 'http://localhost:9000/vibe-music-data/songCovers/d95f1b3b-b5c1-44b4-ac39-4535e4b7d200-blob', 'http://localhost:9000/vibe-music-data/songs/91b78054-33d0-4db9-9c8a-a686cb03567a-徐梦圆 - China-X.mp3', '2015-12-13'); INSERT INTO `tb_song` VALUES (441, 3, '烟袋斜街', '烟袋斜街', NULL, '213.84', '电子,国风', 'http://localhost:9000/vibe-music-data/songCovers/7530cc12-20a2-4bae-8bae-ea341eb2d3e3-blob', 'http://localhost:9000/vibe-music-data/songs/91b62929-214e-43af-a04f-97cb2d222d67-接个吻,开一枪,SaMZIng - 烟袋斜街.mp3', '2017-03-11'); INSERT INTO `tb_song` VALUES (442, 6, 'Black And White', 'SENPASS', NULL, '208.82', '韩国流行', 'http://localhost:9000/vibe-music-data/songCovers/d7ca1237-9d62-448b-b6f1-e4ac58dfa77b-blob', 'http://localhost:9000/vibe-music-data/songs/27cb0372-badc-4c41-8689-871f4416ca94-智妍 - Black & White.mp3', '2019-12-26'); INSERT INTO `tb_song` VALUES (443, 6, 'I Wish', 'SENPASS', NULL, '188.34', '韩国流行', 'http://localhost:9000/vibe-music-data/songCovers/d7ca1237-9d62-448b-b6f1-e4ac58dfa77b-blob', 'http://localhost:9000/vibe-music-data/songs/8c7b26a5-3ceb-49f3-a2c2-58ff1f8d4e61-智妍 - I Wish.mp3', '2019-12-26'); INSERT INTO `tb_song` VALUES (444, 6, 'Lullaby (JIYEON SOLO', 'What\'s my name?', NULL, '199.03', '韩国流行', 'http://localhost:9000/vibe-music-data/songCovers/5428e139-84f7-40ae-972b-65b1f0d89f2f-blob', 'http://localhost:9000/vibe-music-data/songs/0010b11c-15f8-4b22-83f9-624837d163fa-智妍 - Lullaby (JIYEON SOLO).mp3', '2017-06-14'); INSERT INTO `tb_song` VALUES (445, 6, 'Take A Hike (CHN.Ver)', 'SENPASS', NULL, '180.14', '韩国流行', 'http://localhost:9000/vibe-music-data/songCovers/d7ca1237-9d62-448b-b6f1-e4ac58dfa77b-blob', 'http://localhost:9000/vibe-music-data/songs/14352e2c-f9f1-4f9d-9090-a8a98556369e-智妍 - Take A Hike (CHN.Ver).mp3', '2019-12-26'); INSERT INTO `tb_song` VALUES (446, 6, 'Take A Hike(Inst.)', 'SENPASS', NULL, '180.14', '韩国流行', 'http://localhost:9000/vibe-music-data/songCovers/d7ca1237-9d62-448b-b6f1-e4ac58dfa77b-blob', 'http://localhost:9000/vibe-music-data/songs/2b96daca-5734-492c-aab7-8202752cb987-智妍 - Take A Hike(Inst.).mp3', '2019-12-26'); INSERT INTO `tb_song` VALUES (447, 6, 'Take A Hike(KOR.Ver)', 'SENPASS', NULL, '180.14', '韩国流行', 'http://localhost:9000/vibe-music-data/songCovers/d7ca1237-9d62-448b-b6f1-e4ac58dfa77b-blob', 'http://localhost:9000/vibe-music-data/songs/3c42a47f-3a8e-4791-9c81-c50f13850c31-智妍 - Take A Hike(KOR.Ver).mp3', '2019-12-26'); INSERT INTO `tb_song` VALUES (448, 104, '一个人想着一个人', '终极一班2 电视原声带', NULL, '243.9', '华语流行,原声带', 'http://localhost:9000/vibe-music-data/songCovers/435bb957-5b5a-4fa4-86f7-0284fad4adbb-blob', 'http://localhost:9000/vibe-music-data/songs/2a9b8e2c-b9ef-4150-b87c-761f8e39dc18-曾沛慈 - 一个人想着一个人.mp3', '2013-01-18'); INSERT INTO `tb_song` VALUES (449, 27, '紫荆花盛开', '紫荆花盛开', NULL, '208.82', '华语流行,粤语流行', 'http://localhost:9000/vibe-music-data/songCovers/89ca578b-0b78-4903-921f-e560010ba52f-blob', 'http://localhost:9000/vibe-music-data/songs/a79fb2cf-c09a-4876-8a1c-c4811c5c114b-李荣浩,梁咏琪 - 紫荆花盛开.mp3', '2022-06-30'); INSERT INTO `tb_song` VALUES (450, 78, 'The Evening Primrose', 'The Shanghai Restoration Project - Remixed and Restored, Vol. 1', NULL, '192.87', '电子', 'http://localhost:9000/vibe-music-data/songCovers/6013b14d-7c1f-487c-bfe4-b340f23c5bda-blob', 'http://localhost:9000/vibe-music-data/songs/d27e4efd-8165-4cb9-8a6b-de97025d58b1-李香兰 - The Evening Primrose.mp3', '2007-12-11'); INSERT INTO `tb_song` VALUES (451, 39, '一千年以后', '编号89757', NULL, '227.77', '华语流行,原声带', 'http://localhost:9000/vibe-music-data/songCovers/69cd0067-8fa3-453a-b732-129df276c965-blob', 'http://localhost:9000/vibe-music-data/songs/c194aa3d-dd4d-4b61-b2a3-dd2d1b6beda3-林俊杰 - 一千年以后.mp3', '2005-04-01'); INSERT INTO `tb_song` VALUES (452, 39, '修炼爱情', '因你而在', NULL, '287.31', '华语流行', 'http://localhost:9000/vibe-music-data/songCovers/0d806557-9f4a-4017-be28-aac991aee181-blob', 'http://localhost:9000/vibe-music-data/songs/4d1de8d8-b835-4b0c-be7f-ca953469107f-林俊杰 - 修炼爱情.mp3', '2013-02-21'); INSERT INTO `tb_song` VALUES (453, 39, '曹操', '他是…JJ林俊杰', NULL, '242.14', '华语流行', 'http://localhost:9000/vibe-music-data/songCovers/ac60329e-40b4-410f-bd4a-78a6852f2982-blob', 'http://localhost:9000/vibe-music-data/songs/a9d8bfd2-6091-41c5-b2f5-637cdfa78688-林俊杰 - 曹操.mp3', '2012-12-21'); INSERT INTO `tb_song` VALUES (454, 39, '江南', '第二天堂\r\r\n(江南', NULL, '3171.59', '华语流行,国风流行,节奏布鲁斯', 'http://localhost:9000/vibe-music-data/songCovers/f3e66730-19c8-440d-9bdf-c05b52f76b9c-blob', 'http://localhost:9000/vibe-music-data/songs/48093283-0332-4251-85d5-19ac0d524bc1-林俊杰 - 江南.mp3', '2004-06-04'); INSERT INTO `tb_song` VALUES (455, 39, '进阶', '进阶', NULL, '218.28', '华语流行,原声带', 'http://localhost:9000/vibe-music-data/songCovers/b23bc956-e215-438a-b633-bf1b4b51a159-blob', 'http://localhost:9000/vibe-music-data/songs/36e49248-3701-46d3-a42e-c22985d37b37-林俊杰 - 进阶.mp3', '2018-12-27'); INSERT INTO `tb_song` VALUES (456, 45, '前世今生 / 白蛇缘起(翻自 FORMOSA)', '涛李TAOLEE的弹唱想法【贰】', NULL, '140.55', '国风', 'http://localhost:9000/vibe-music-data/songCovers/298aadc1-94fc-4ed7-9239-c1e288fc6e17-blob', 'http://localhost:9000/vibe-music-data/songs/3344ccab-1a8a-4f31-aaa3-edd252923cf7-涛李TAOLEE - 前世今生 白蛇缘起(翻自 FORMOSA).mp3', '2017-07-17'); INSERT INTO `tb_song` VALUES (457, 82, '爱的就是你', '音乐进化论', NULL, '289.63', '华语流行,原声带', 'http://localhost:9000/vibe-music-data/songCovers/8311b82b-c1df-4530-a4c4-63967ec95c3e-blob', 'http://localhost:9000/vibe-music-data/songs/5d4b7e76-3b66-4a7a-8ce2-728005ea0f00-王力宏 - 爱的就是你.mp3', '2002-09-23'); INSERT INTO `tb_song` VALUES (458, 51, '我心永恒', '流光浮影', NULL, '281.14', '轻音乐,国风', 'http://localhost:9000/vibe-music-data/songCovers/dc4f66d2-ddff-4b0b-a0c1-9a8c067bce91-blob', 'http://localhost:9000/vibe-music-data/songs/8e19be16-b4bc-4bc5-ada4-04d4ad9e0c5b-王华 - 我心永恒.mp3', '2013-01-30'); INSERT INTO `tb_song` VALUES (459, 124, '似水柔情', '倚天屠龙记 原声大碟', NULL, '201.09', '轻音乐,原声带', 'http://localhost:9000/vibe-music-data/songCovers/0fe9f6ae-f571-4f2f-975b-83002d96f13d-blob', 'http://localhost:9000/vibe-music-data/songs/d478838d-8009-4d4e-8b51-9c72b4cedc40-王备 - 似水柔情.mp3', '2003-07-01'); INSERT INTO `tb_song` VALUES (460, 54, '安和桥(笛子)', '笛子流行曲', NULL, '252.35', '轻音乐', 'http://localhost:9000/vibe-music-data/songCovers/f479900c-b962-471e-bebc-621a25833b5b-blob', 'http://localhost:9000/vibe-music-data/songs/e8f91427-2424-4cd1-ba07-ad2c7b568700-王華宇 - 安和桥(笛子).mp3', '2018-01-29'); INSERT INTO `tb_song` VALUES (461, 40, '容易受伤的女人', '阿菲正传', NULL, '258.56', '粤语流行', 'http://localhost:9000/vibe-music-data/songCovers/74438cc1-814e-4d19-8593-42145a0f5383-blob', 'http://localhost:9000/vibe-music-data/songs/cf1f5ef6-0a5d-42b8-8668-cc80a249fe1c-王菲 - 容易受伤的女人.mp3', '2009-01-01'); INSERT INTO `tb_song` VALUES (462, 40, '红豆', 'Eyes On Me', NULL, '5728.39', '华语流行', 'http://localhost:9000/vibe-music-data/songCovers/f16f69ed-bf2b-4f03-9a46-11ca705a33fc-blob', 'http://localhost:9000/vibe-music-data/songs/6859ae01-17f3-4bca-9946-eccdcd640113-王菲 - 红豆.mp3', '1999-02-01'); INSERT INTO `tb_song` VALUES (463, 61, '恋与制作人主题钢琴曲', '《恋与制作人》主题钢琴曲', NULL, '150.63', '轻音乐,原声带', 'http://localhost:9000/vibe-music-data/songCovers/3478e88f-d3ce-471f-b769-c558850ae8ac-blob', 'http://localhost:9000/vibe-music-data/songs/5b47cead-1663-44bb-b3a4-ed91e990fb57-琥珀琴师Louis - 恋与制作人主题钢琴曲.mp3', '2018-12-11'); INSERT INTO `tb_song` VALUES (464, 12, 'The Fire of Love', 'The Shanghai Restoration Project - Remixed and Restored, Vol. 1', NULL, '174.39', '电子', 'http://localhost:9000/vibe-music-data/songCovers/efe0e91f-b91e-43e3-8ea2-27f63bf6ebc7-blob', 'http://localhost:9000/vibe-music-data/songs/5d2c4c7e-5e9e-4913-9c3d-6003cf484e72-白光 - The Fire of Love.mp3', '2007-12-11'); INSERT INTO `tb_song` VALUES (465, 97, 'Farewell Shasha', 'The Shanghai Restoration Project - Remixed and Restored, Vol. 1', NULL, '182.6', '电子', 'http://localhost:9000/vibe-music-data/songCovers/5c146f10-740b-41e1-ad9b-7a34910a2cda-blob', 'http://localhost:9000/vibe-music-data/songs/454078d8-7609-48a9-8841-4dd131d146fb-白虹 - Farewell Shasha.mp3', '2007-12-11'); INSERT INTO `tb_song` VALUES (466, 44, '嘻唰唰', '花季王朝', NULL, '217.57', '朋克', 'http://localhost:9000/vibe-music-data/songCovers/d1c06b45-e8d5-4c3f-92da-90f445a879c1-blob', 'http://localhost:9000/vibe-music-data/songs/01af5b72-7ac4-4936-8f51-f1076e23980c-花儿乐队 - 嘻唰唰.mp3', '2005-01-01'); INSERT INTO `tb_song` VALUES (467, 44, '穷开心', '花龄盛会', NULL, '196.98', '华语流行', 'http://localhost:9000/vibe-music-data/songCovers/3442eb9a-12db-4499-86ad-df9e3e80c00e-blob', 'http://localhost:9000/vibe-music-data/songs/ec2763d1-a46d-4054-b64a-83667713e3ce-花儿乐队 - 穷开心.mp3', '2007-09-28'); INSERT INTO `tb_song` VALUES (468, 73, '一半', '一半', NULL, '286.32', '华语流行', 'http://localhost:9000/vibe-music-data/songCovers/75a24214-b385-41d7-a026-293d1736cd90-blob', 'http://localhost:9000/vibe-music-data/songs/4e624971-a1c9-44a3-bfd3-fd1c26e1f988-薛之谦 - 一半.mp3', '2015-10-19'); INSERT INTO `tb_song` VALUES (469, 73, '丑八怪', '意外', NULL, '248.72', '华语流行', 'http://localhost:9000/vibe-music-data/songCovers/8b20f881-e7cb-4a7d-aa14-85d8df8e93f0-blob', 'http://localhost:9000/vibe-music-data/songs/75208a63-a4c9-4017-8642-5df07942ca07-薛之谦 - 丑八怪.mp3', '2013-10-16'); INSERT INTO `tb_song` VALUES (470, 73, '你还要我怎样', '意外', NULL, '311.28', '华语流行', 'http://localhost:9000/vibe-music-data/songCovers/8b20f881-e7cb-4a7d-aa14-85d8df8e93f0-blob', 'http://localhost:9000/vibe-music-data/songs/572f00e3-9128-4cd3-94c2-86b62984245a-薛之谦 - 你还要我怎样.mp3', '2013-10-16'); INSERT INTO `tb_song` VALUES (471, 73, '像风一样', '像风一样', NULL, '255.39', '华语流行', 'http://localhost:9000/vibe-music-data/songCovers/49fc7926-835a-49a7-b283-ed6f18c4cc34-blob', 'http://localhost:9000/vibe-music-data/songs/65ed2dec-9ed3-444c-94bc-544290c37b45-薛之谦 - 像风一样.mp3', '2017-11-03'); INSERT INTO `tb_song` VALUES (472, 73, '刚刚好', '初学者', NULL, '250.76', '华语流行', 'http://localhost:9000/vibe-music-data/songCovers/ea8e2242-98b7-4adf-af79-c76c3dd08d0d-blob', 'http://localhost:9000/vibe-music-data/songs/9eadeb26-f007-4bdf-ba35-6767e62ecc8d-薛之谦 - 刚刚好.mp3', '2016-06-07'); INSERT INTO `tb_song` VALUES (473, 73, '别', '别', NULL, '215.91', '华语流行', 'http://localhost:9000/vibe-music-data/songCovers/04a08da8-61d4-49ba-9a67-7a9a8389c3ab-blob', 'http://localhost:9000/vibe-music-data/songs/639ec378-b9f9-4496-a061-74f3af2a7ac5-薛之谦 - 别.mp3', '2017-10-31'); INSERT INTO `tb_song` VALUES (474, 73, '动物世界', '动物世界', NULL, '230.73', '华语流行', 'http://localhost:9000/vibe-music-data/songCovers/bf659537-7a03-4b66-9834-e555325734fb-blob', 'http://localhost:9000/vibe-music-data/songs/96083fe0-3eae-40bf-974d-22673b8eb5fd-薛之谦 - 动物世界.mp3', '2017-03-29'); INSERT INTO `tb_song` VALUES (475, 73, '天外来物', '天外来物', NULL, '688.01', '华语流行', 'http://localhost:9000/vibe-music-data/songCovers/d20c3540-86dc-43c9-a0e4-8677f9f2785a-blob', 'http://localhost:9000/vibe-music-data/songs/dd0b516b-2e0d-4e34-bdd7-81c856b5a798-薛之谦 - 天外来物.mp3', '2020-07-17'); INSERT INTO `tb_song` VALUES (476, 73, '小孩', '一半', NULL, '321.74', '华语流行', 'http://localhost:9000/vibe-music-data/songCovers/75a24214-b385-41d7-a026-293d1736cd90-blob', 'http://localhost:9000/vibe-music-data/songs/c4e936a2-ba3e-4857-95f2-81e002a0cf4a-薛之谦 - 小孩.mp3', '2015-10-19'); INSERT INTO `tb_song` VALUES (477, 73, '我好像在哪见过你', '初学者', NULL, '279.46', '华语流行', 'http://localhost:9000/vibe-music-data/songCovers/ea8e2242-98b7-4adf-af79-c76c3dd08d0d-blob', 'http://localhost:9000/vibe-music-data/songs/a577829a-c340-4af8-8706-c0f515d7ee5f-薛之谦 - 我好像在哪见过你.mp3', '2016-06-23'); INSERT INTO `tb_song` VALUES (478, 73, '方圆几里', '意外', NULL, '263.86', '华语流行', 'http://localhost:9000/vibe-music-data/songCovers/8b20f881-e7cb-4a7d-aa14-85d8df8e93f0-blob', 'http://localhost:9000/vibe-music-data/songs/48ac6283-0343-4240-9a0e-7864fdf1c1bc-薛之谦 - 方圆几里.mp3', '2013-10-16'); INSERT INTO `tb_song` VALUES (479, 73, '演员', '绅士', NULL, '261.53', '华语流行', 'http://localhost:9000/vibe-music-data/songCovers/4eab89a1-9d5e-47cc-9fd6-aca673335313-blob', 'http://localhost:9000/vibe-music-data/songs/c88dd81b-f84b-451c-8a8b-a41fabec3c71-薛之谦 - 演员.mp3', '2015-06-05'); INSERT INTO `tb_song` VALUES (480, 73, '绅士', '绅士', NULL, '291.31', '华语流行', 'http://localhost:9000/vibe-music-data/songCovers/4eab89a1-9d5e-47cc-9fd6-aca673335313-blob', 'http://localhost:9000/vibe-music-data/songs/c5fd6ceb-7ac9-491f-8529-ba2fe1e22399-薛之谦 - 绅士.mp3', '2015-06-05'); INSERT INTO `tb_song` VALUES (481, 73, '野心', '天外来物', NULL, '220.41', '华语流行', 'http://localhost:9000/vibe-music-data/songCovers/d20c3540-86dc-43c9-a0e4-8677f9f2785a-blob', 'http://localhost:9000/vibe-music-data/songs/44b98ead-8325-43bc-ae4d-63a8e347697f-薛之谦 - 野心.mp3', '2020-07-17'); INSERT INTO `tb_song` VALUES (482, 73, '高尚', '高尚', NULL, '318.91', '华语流行', 'http://localhost:9000/vibe-music-data/songCovers/529565be-01e9-4546-af0b-ac3afe619aa6-blob', 'http://localhost:9000/vibe-music-data/songs/041525f5-783b-4c35-b5dc-b46d52f4a664-薛之谦 - 高尚.mp3', '2017-03-17'); INSERT INTO `tb_song` VALUES (483, 43, '如果当时', '自定义', NULL, '1732.29', '华语流行', 'http://localhost:9000/vibe-music-data/songCovers/09b759bd-ccd5-4a43-aa50-5ddbb6e84d75-blob', 'http://localhost:9000/vibe-music-data/songs/cb66bfb2-1a7a-43d6-9d91-63e1644f38b9-许嵩 - 如果当时.mp3', '2009-01-10'); INSERT INTO `tb_song` VALUES (484, 43, '有何不可', '自定义', NULL, '242.14', '华语流行', 'http://localhost:9000/vibe-music-data/songCovers/0fc53fb1-9906-4250-8c28-fbb0eeb2587c-blob', 'http://localhost:9000/vibe-music-data/songs/634d7dd3-ad56-44e3-aa48-b9aad08fa537-许嵩 - 有何不可.mp3', '2009-01-10'); INSERT INTO `tb_song` VALUES (485, 43, '雅俗共赏', '青年晚报', NULL, '248.3', '华语流行', 'http://localhost:9000/vibe-music-data/songCovers/e4997436-4b34-4e8b-979b-51a4c672a247-blob', 'http://localhost:9000/vibe-music-data/songs/60665454-f20e-4855-96f2-c9a1b63d46d5-许嵩 - 雅俗共赏.mp3', '2016-04-27'); INSERT INTO `tb_song` VALUES (486, 53, '初夏雨后', '舌尖上的中国 番外篇', NULL, '270.26', '轻音乐,国风', 'http://localhost:9000/vibe-music-data/songCovers/07c607e5-a6a4-4075-93fe-4609ef559553-blob', 'http://localhost:9000/vibe-music-data/songs/4d532df3-de77-4637-8fca-ed60ff8e778a-谢明祥 - 初夏雨后.mp3', '2012-05-14'); INSERT INTO `tb_song` VALUES (487, 53, '初夏雨後', '京城四季(一', NULL, '270.26', '轻音乐,国风', 'http://localhost:9000/vibe-music-data/songCovers/3056da57-bb77-44b5-8157-0b821bb11742-blob', 'http://localhost:9000/vibe-music-data/songs/83b3b8c2-f1bb-47df-97a9-4bcbb0183b5f-谢明祥 - 初夏雨後.mp3', '2005-12-05'); INSERT INTO `tb_song` VALUES (488, 85, '善变的女人', 'Classic Two-String Bowed', NULL, '113.64', '古典', 'http://localhost:9000/vibe-music-data/songCovers/ca107c57-c1b6-4373-98dd-288d8675d5c0-blob', 'http://localhost:9000/vibe-music-data/songs/1198e8a9-b4f0-427d-9f9b-55fef7498164-贵族乐团 - 善变的女人.mp3', '2004-05-18'); INSERT INTO `tb_song` VALUES (489, 112, '再飞行', '再飞行', NULL, '90.31', '华语流行,原声带', 'http://localhost:9000/vibe-music-data/songCovers/453da2c6-4e96-485e-a246-9c2366b8930c-blob', 'http://localhost:9000/vibe-music-data/songs/88602b4d-a70e-454c-9512-a5c9d03b1076-逃跑计划 - 再飞行.mp3', '2014-01-01'); INSERT INTO `tb_song` VALUES (490, 112, '夜空中最亮的星', '世界', NULL, '252.51', '摇滚', 'http://localhost:9000/vibe-music-data/songCovers/2beedf34-d75f-432c-a188-825bfc262a84-blob', 'http://localhost:9000/vibe-music-data/songs/6ff45591-b976-4998-86f8-7db17920cb04-逃跑计划 - 夜空中最亮的星.mp3', '2012-01-01'); INSERT INTO `tb_song` VALUES (491, 105, '大鱼 洞箫版', '羊圈小调', NULL, '339.38', '轻音乐,国风', 'http://localhost:9000/vibe-music-data/songCovers/7cbe3163-4d68-47f0-96de-17e29777bbc1-blob', 'http://localhost:9000/vibe-music-data/songs/825615cd-ddd6-4d75-905c-fb2313ceb0e1-那只肥羊 - 大鱼 洞箫版.mp3', '2018-07-15'); INSERT INTO `tb_song` VALUES (492, 31, '拉赫玛尼诺夫 帕格尼尼主题狂想曲第18变奏', 'The Best & Rarities', NULL, '167.85', '古典', 'http://localhost:9000/vibe-music-data/songCovers/5c14b34e-a77c-49e6-99ee-aef213b7f843-blob', 'http://localhost:9000/vibe-music-data/songs/84470802-5d67-4ad5-9aa3-772ae2cf663f-郎朗 - 拉赫玛尼诺夫 帕格尼尼主题狂想曲第18变奏.mp3', '2008-07-31'); INSERT INTO `tb_song` VALUES (493, 98, '对你爱不完', '对你爱不完', NULL, '281.14', '华语流行', 'http://localhost:9000/vibe-music-data/songCovers/e9524e8e-a51b-49e5-926d-b58d7f26f2ea-blob', 'http://localhost:9000/vibe-music-data/songs/2a977636-9cbf-49a0-aea4-f90861d46baf-郭富城 - 对你爱不完.mp3', '1990-09-01'); INSERT INTO `tb_song` VALUES (494, 98, '我是不是该安静的走开', '郭富城2', NULL, '242.14', '华语流行', 'http://localhost:9000/vibe-music-data/songCovers/413f53b9-1471-4794-9c29-697b28db9362-blob', 'http://localhost:9000/vibe-music-data/songs/0a5c4155-e988-4db7-b251-84b119b7e7ab-郭富城 - 我是不是该安静的走开.mp3', '1991-04-01'); INSERT INTO `tb_song` VALUES (495, 70, '孤独患者', '?', NULL, '270.88', '华语流行', 'http://localhost:9000/vibe-music-data/songCovers/9ea7d527-7720-463d-9015-dbd96ef81c0f-blob', 'http://localhost:9000/vibe-music-data/songs/8715871d-95fe-481f-91c1-bfd272d1d5b9-陈奕迅 - 孤独患者.mp3', '2011-11-11'); INSERT INTO `tb_song` VALUES (496, 70, '富士山下', 'What\'s Going On…?', NULL, '259.44', '粤语流行', 'http://localhost:9000/vibe-music-data/songCovers/824380a2-d641-455c-94c1-79fd81f90fdb-blob', 'http://localhost:9000/vibe-music-data/songs/590a57d7-8786-4de8-9e3f-2e5bc2305b25-陈奕迅 - 富士山下.mp3', '2006-11-23'); INSERT INTO `tb_song` VALUES (497, 70, '爱情转移', '认了吧', NULL, '260.62', '华语流行,原声带', 'http://localhost:9000/vibe-music-data/songCovers/00fe29c7-f0f9-44ce-98f9-87d761aaa1c3-blob', 'http://localhost:9000/vibe-music-data/songs/ebd1dce6-09eb-42a8-9f4b-ce4cf6120abb-陈奕迅 - 爱情转移.mp3', '2007-01-01'); INSERT INTO `tb_song` VALUES (498, 70, '白玫瑰', 'What\'s Going On…?', NULL, '240.09', '粤语流行', 'http://localhost:9000/vibe-music-data/songCovers/824380a2-d641-455c-94c1-79fd81f90fdb-blob', 'http://localhost:9000/vibe-music-data/songs/01726077-6b40-492f-8721-26509bc2483d-陈奕迅 - 白玫瑰.mp3', '2006-11-23'); INSERT INTO `tb_song` VALUES (499, 70, '红玫瑰', '认了吧', NULL, '240.25', '华语流行', 'http://localhost:9000/vibe-music-data/songCovers/00fe29c7-f0f9-44ce-98f9-87d761aaa1c3-blob', 'http://localhost:9000/vibe-music-data/songs/46d31335-36db-4660-9c47-5fc75c03c67d-陈奕迅 - 红玫瑰.mp3', '2007-01-01'); INSERT INTO `tb_song` VALUES (500, 96, '迴梦游仙', '仙剑奇侠传四 原声音乐CD', NULL, '126.31', '轻音乐,国风,原声带', 'http://localhost:9000/vibe-music-data/songCovers/8b75cf38-8227-405c-ac15-8524046b1b30-blob', 'http://localhost:9000/vibe-music-data/songs/e9f03241-90d2-4e67-87e2-596b0da46188-骆集益 - 迴梦游仙.mp3', '2007-08-01'); INSERT INTO `tb_song` VALUES (529, 134, 'Diamonds', 'Diamonds', NULL, NULL, '节奏布鲁斯,欧美流行', 'http://localhost:9000/vibe-music-data/songCovers/f21dcd37-df64-45f1-94e2-9cb7de94baa7-blob', 'http://localhost:9000/vibe-music-data/songs/b95c5d9a-6f3d-449d-bdce-2ee25da241b8-Rihanna - Diamonds.mp3', '2012-01-01'); -- ---------------------------- -- Table structure for tb_style -- ---------------------------- DROP TABLE IF EXISTS `tb_style`; CREATE TABLE `tb_style` ( `id` bigint(0) NOT NULL AUTO_INCREMENT COMMENT '风格 id', `name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '风格名称', PRIMARY KEY (`id`) USING BTREE, UNIQUE INDEX `name`(`name`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 17 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of tb_style -- ---------------------------- INSERT INTO `tb_style` VALUES (1, '乡村'); INSERT INTO `tb_style` VALUES (2, '华语流行'); INSERT INTO `tb_style` VALUES (3, '原声带'); INSERT INTO `tb_style` VALUES (4, '古典'); INSERT INTO `tb_style` VALUES (5, '嘻哈说唱'); INSERT INTO `tb_style` VALUES (6, '国风'); INSERT INTO `tb_style` VALUES (7, '国风流行'); INSERT INTO `tb_style` VALUES (8, '摇滚'); INSERT INTO `tb_style` VALUES (9, '日本流行'); INSERT INTO `tb_style` VALUES (10, '朋克'); INSERT INTO `tb_style` VALUES (11, '欧美流行'); INSERT INTO `tb_style` VALUES (12, '电子'); INSERT INTO `tb_style` VALUES (13, '粤语流行'); INSERT INTO `tb_style` VALUES (14, '节奏布鲁斯'); INSERT INTO `tb_style` VALUES (15, '轻音乐'); INSERT INTO `tb_style` VALUES (16, '非洲节拍'); INSERT INTO `tb_style` VALUES (17, '韩国流行'); -- ---------------------------- -- Table structure for tb_user -- ---------------------------- DROP TABLE IF EXISTS `tb_user`; CREATE TABLE `tb_user` ( `id` bigint(0) NOT NULL AUTO_INCREMENT COMMENT '用户 id', `username` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '用户名', `password` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '用户密码', `phone` varchar(11) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '用户手机号', `email` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '用户邮箱', `user_avatar` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '用户头像', `introduction` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '用户简介', `create_time` datetime(0) NOT NULL COMMENT '用户创建时间', `update_time` datetime(0) NOT NULL COMMENT '用户修改时间', `status` tinyint(0) NOT NULL COMMENT '用户状态:0-启用,1-禁用', PRIMARY KEY (`id`) USING BTREE, UNIQUE INDEX `username`(`username`) USING BTREE, UNIQUE INDEX `email`(`email`) USING BTREE, UNIQUE INDEX `phone`(`phone`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 148 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of tb_user -- ---------------------------- INSERT INTO `tb_user` VALUES (27, 'user_361', 'df10ef8509dc176d733d59549e7dbfaf', '13756780123', 'user651@example.com', NULL, '123456789', '2025-01-26 14:18:05', '2025-03-06 23:05:47', 0); INSERT INTO `tb_user` VALUES (28, 'user_172', 'df10ef8509dc176d733d59549e7dbfaf', '13966695168', 'user909@example.com', NULL, '172', '2025-01-26 14:18:05', '2025-03-06 23:06:13', 0); INSERT INTO `tb_user` VALUES (29, 'user_30', 'df10ef8509dc176d733d59549e7dbfaf', '18963795168', 'user421@example.com', NULL, NULL, '2025-01-26 14:18:05', '2025-01-26 14:18:05', 0); INSERT INTO `tb_user` VALUES (30, 'user_17', 'df10ef8509dc176d733d59549e7dbfaf', '13318403976', 'user823@example.com', NULL, NULL, '2025-01-26 14:18:05', '2025-01-26 14:18:05', 0); INSERT INTO `tb_user` VALUES (31, 'user_64', 'df10ef8509dc176d733d59549e7dbfaf', '18127998193', 'user853@example.com', NULL, NULL, '2025-01-26 14:18:05', '2025-01-26 14:18:05', 0); INSERT INTO `tb_user` VALUES (34, 'user_573', 'df10ef8509dc176d733d59549e7dbfaf', '18872523168', 'user405@example.com', NULL, NULL, '2025-01-26 14:19:42', '2025-01-26 14:19:42', 0); INSERT INTO `tb_user` VALUES (35, 'user_306', 'df10ef8509dc176d733d59549e7dbfaf', '13812345678', 'user317@example.com', NULL, NULL, '2025-01-26 14:19:42', '2025-01-26 14:19:42', 0); INSERT INTO `tb_user` VALUES (36, 'user_668', 'df10ef8509dc176d733d59549e7dbfaf', '13987654321', 'user389@example.com', NULL, NULL, '2025-01-26 14:19:42', '2025-01-26 14:19:42', 0); INSERT INTO `tb_user` VALUES (37, 'user_943', 'df10ef8509dc176d733d59549e7dbfaf', '13765432109', 'user546@example.com', NULL, NULL, '2025-01-26 14:19:42', '2025-01-26 14:19:42', 0); INSERT INTO `tb_user` VALUES (38, 'user_903', 'df10ef8509dc176d733d59549e7dbfaf', '13543210987', 'user876@example.com', NULL, NULL, '2025-01-26 14:19:42', '2025-01-26 14:19:42', 0); INSERT INTO `tb_user` VALUES (41, 'user_729', 'df10ef8509dc176d733d59549e7dbfaf', '13456789012', 'user917@example.com', NULL, NULL, '2025-01-26 14:25:56', '2025-01-26 14:25:56', 0); INSERT INTO `tb_user` VALUES (42, 'user_396', 'df10ef8509dc176d733d59549e7dbfaf', '13378901234', 'user231@example.com', NULL, NULL, '2025-01-26 14:25:56', '2025-01-26 14:25:56', 0); INSERT INTO `tb_user` VALUES (43, 'user_969', 'df10ef8509dc176d733d59549e7dbfaf', '13290123456', 'user153@example.com', NULL, NULL, '2025-01-26 14:25:56', '2025-01-26 14:25:56', 0); INSERT INTO `tb_user` VALUES (44, 'user_857', 'df10ef8509dc176d733d59549e7dbfaf', '13102345678', 'user826@example.com', NULL, NULL, '2025-01-26 14:25:56', '2025-01-26 14:25:56', 0); INSERT INTO `tb_user` VALUES (45, 'user_562', 'df10ef8509dc176d733d59549e7dbfaf', '13013456789', 'user332@example.com', NULL, NULL, '2025-01-26 14:25:56', '2025-01-26 14:25:56', 0); INSERT INTO `tb_user` VALUES (48, 'user_214', 'df10ef8509dc176d733d59549e7dbfaf', '15876543210', 'user122@example.com', NULL, NULL, '2025-01-26 14:28:13', '2025-01-26 14:28:13', 0); INSERT INTO `tb_user` VALUES (49, 'user_968', 'df10ef8509dc176d733d59549e7dbfaf', '15987654321', 'user475@example.com', NULL, NULL, '2025-01-26 14:28:13', '2025-01-26 14:28:13', 0); INSERT INTO `tb_user` VALUES (50, 'user_472', 'df10ef8509dc176d733d59549e7dbfaf', '15765432109', 'user934@example.com', NULL, NULL, '2025-01-26 14:28:13', '2025-01-26 14:28:13', 0); INSERT INTO `tb_user` VALUES (51, 'user_256', 'df10ef8509dc176d733d59549e7dbfaf', '15698765432', 'user476@example.com', NULL, NULL, '2025-01-26 14:28:13', '2025-01-26 14:28:13', 0); INSERT INTO `tb_user` VALUES (52, 'user_616', 'df10ef8509dc176d733d59549e7dbfaf', '15543210987', 'user649@example.com', NULL, NULL, '2025-01-26 14:28:13', '2025-01-26 14:28:13', 0); INSERT INTO `tb_user` VALUES (55, 'user_263', 'df10ef8509dc176d733d59549e7dbfaf', '15456789012', 'user511@example.com', NULL, NULL, '2025-01-26 14:28:58', '2025-01-26 14:28:58', 0); INSERT INTO `tb_user` VALUES (56, 'user_769', 'df10ef8509dc176d733d59549e7dbfaf', '15378901234', 'user311@example.com', NULL, NULL, '2025-01-26 14:28:58', '2025-01-26 14:28:58', 0); INSERT INTO `tb_user` VALUES (57, 'user_247', 'df10ef8509dc176d733d59549e7dbfaf', '15290123456', 'user305@example.com', NULL, NULL, '2025-01-26 14:28:58', '2025-01-26 14:28:58', 0); INSERT INTO `tb_user` VALUES (58, 'user_782', 'df10ef8509dc176d733d59549e7dbfaf', '15102345678', 'user996@example.com', NULL, NULL, '2025-01-26 14:28:58', '2025-01-26 14:28:58', 0); INSERT INTO `tb_user` VALUES (59, 'user_634', 'df10ef8509dc176d733d59549e7dbfaf', '15013456789', 'user182@example.com', NULL, NULL, '2025-01-26 14:28:58', '2025-01-26 14:28:58', 0); INSERT INTO `tb_user` VALUES (62, 'user_736', 'df10ef8509dc176d733d59549e7dbfaf', '18876543210', 'user497@example.com', NULL, NULL, '2025-01-26 14:29:52', '2025-01-26 14:29:52', 0); INSERT INTO `tb_user` VALUES (63, 'user_279', 'df10ef8509dc176d733d59549e7dbfaf', '18987654321', 'user902@example.com', NULL, NULL, '2025-01-26 14:29:52', '2025-01-26 14:29:52', 0); INSERT INTO `tb_user` VALUES (64, 'user_676', 'df10ef8509dc176d733d59549e7dbfaf', '18765432109', 'user674@example.com', NULL, NULL, '2025-01-26 14:29:52', '2025-01-26 14:29:52', 0); INSERT INTO `tb_user` VALUES (65, 'user_344', 'df10ef8509dc176d733d59549e7dbfaf', '18698765432', 'user695@example.com', NULL, NULL, '2025-01-26 14:29:52', '2025-01-26 14:29:52', 0); INSERT INTO `tb_user` VALUES (66, 'user_445', 'df10ef8509dc176d733d59549e7dbfaf', '18543210987', 'user141@example.com', NULL, NULL, '2025-01-26 14:29:52', '2025-01-26 14:29:52', 0); INSERT INTO `tb_user` VALUES (69, 'user_291', 'df10ef8509dc176d733d59549e7dbfaf', '13912345678', 'user852@example.com', NULL, NULL, '2025-01-26 14:29:57', '2025-01-26 14:29:57', 0); INSERT INTO `tb_user` VALUES (70, 'user_387', 'df10ef8509dc176d733d59549e7dbfaf', '15898765432', 'user380@example.com', NULL, NULL, '2025-01-26 14:29:57', '2025-01-26 14:29:57', 0); INSERT INTO `tb_user` VALUES (71, 'user_739', 'df10ef8509dc176d733d59549e7dbfaf', '17612345678', 'user557@example.com', NULL, NULL, '2025-01-26 14:29:57', '2025-01-26 14:29:57', 0); INSERT INTO `tb_user` VALUES (72, 'user_569', 'df10ef8509dc176d733d59549e7dbfaf', '18323456789', 'user172@example.com', NULL, NULL, '2025-01-26 14:29:57', '2025-01-26 14:29:57', 0); INSERT INTO `tb_user` VALUES (73, 'user_156', 'df10ef8509dc176d733d59549e7dbfaf', '19987654321', 'user264@example.com', NULL, NULL, '2025-01-26 14:29:57', '2025-01-26 14:29:57', 0); INSERT INTO `tb_user` VALUES (76, 'user_70', 'df10ef8509dc176d733d59549e7dbfaf', '19323456789', 'user727@example.com', NULL, NULL, '2025-01-26 14:31:33', '2025-01-26 14:31:33', 0); INSERT INTO `tb_user` VALUES (77, 'user_425', 'df10ef8509dc176d733d59549e7dbfaf', '13187654321', 'user948@example.com', NULL, NULL, '2025-01-26 14:31:33', '2025-01-26 14:31:33', 0); INSERT INTO `tb_user` VALUES (78, 'user_462', 'df10ef8509dc176d733d59549e7dbfaf', '15623456789', 'user469@example.com', NULL, NULL, '2025-01-26 14:31:33', '2025-01-26 14:31:33', 0); INSERT INTO `tb_user` VALUES (79, 'user_961', 'df10ef8509dc176d733d59549e7dbfaf', '17987654321', 'user395@example.com', NULL, NULL, '2025-01-26 14:31:33', '2025-01-26 14:31:33', 0); INSERT INTO `tb_user` VALUES (80, 'user_96', 'df10ef8509dc176d733d59549e7dbfaf', '18812345678', 'user293@example.com', NULL, NULL, '2025-01-26 14:31:33', '2025-01-26 14:31:33', 0); INSERT INTO `tb_user` VALUES (83, 'user_913', 'df10ef8509dc176d733d59549e7dbfaf', '19298765432', 'user537@example.com', NULL, NULL, '2025-01-26 14:31:33', '2025-01-26 14:31:33', 0); INSERT INTO `tb_user` VALUES (84, 'user_946', 'df10ef8509dc176d733d59549e7dbfaf', '13723456789', 'user119@example.com', NULL, NULL, '2025-01-26 14:31:33', '2025-01-26 14:31:33', 0); INSERT INTO `tb_user` VALUES (85, 'user_757', 'df10ef8509dc176d733d59549e7dbfaf', '15598765432', 'user430@example.com', NULL, NULL, '2025-01-26 14:31:33', '2025-01-26 14:31:33', 0); INSERT INTO `tb_user` VALUES (86, 'user_877', 'df10ef8509dc176d733d59549e7dbfaf', '17112345678', 'user99@example.com', NULL, NULL, '2025-01-26 14:31:33', '2025-01-26 14:31:33', 0); INSERT INTO `tb_user` VALUES (87, 'user_862', 'df10ef8509dc176d733d59549e7dbfaf', '18923456789', 'user15@example.com', NULL, NULL, '2025-01-26 14:31:33', '2025-01-26 14:31:33', 0); INSERT INTO `tb_user` VALUES (90, 'user_119', 'df10ef8509dc176d733d59549e7dbfaf', '19187654321', 'user816@example.com', NULL, NULL, '2025-01-26 14:35:28', '2025-01-26 14:35:28', 0); INSERT INTO `tb_user` VALUES (91, 'user_724', 'df10ef8509dc176d733d59549e7dbfaf', '13012345678', 'user174@example.com', NULL, NULL, '2025-01-26 14:35:28', '2025-01-26 14:35:28', 0); INSERT INTO `tb_user` VALUES (92, 'user_697', 'df10ef8509dc176d733d59549e7dbfaf', '15098765432', 'user964@example.com', NULL, NULL, '2025-01-26 14:35:28', '2025-01-26 14:35:28', 0); INSERT INTO `tb_user` VALUES (93, 'user_731', 'df10ef8509dc176d733d59549e7dbfaf', '17023456789', 'user764@example.com', NULL, NULL, '2025-01-26 14:35:28', '2025-01-26 14:35:28', 0); INSERT INTO `tb_user` VALUES (103, 'user_314', 'df10ef8509dc176d733d59549e7dbfaf', '19012345678', 'user867@example.com', NULL, NULL, '2025-01-26 14:54:51', '2025-01-26 14:54:51', 0); INSERT INTO `tb_user` VALUES (104, 'user_392', 'df10ef8509dc176d733d59549e7dbfaf', '15822653630', 'user361@example.com', NULL, NULL, '2025-01-26 14:54:51', '2025-01-26 14:54:51', 0); INSERT INTO `tb_user` VALUES (105, 'user_627', 'df10ef8509dc176d733d59549e7dbfaf', '18156124693', 'user55@example.com', NULL, NULL, '2025-01-26 14:54:51', '2025-01-26 14:54:51', 0); INSERT INTO `tb_user` VALUES (106, 'user_394', 'df10ef8509dc176d733d59549e7dbfaf', '17428609871', 'user803@example.com', NULL, NULL, '2025-01-26 14:54:51', '2025-01-26 14:54:51', 0); INSERT INTO `tb_user` VALUES (107, 'user_837', 'df10ef8509dc176d733d59549e7dbfaf', '17660170542', 'user775@example.com', NULL, NULL, '2025-01-26 14:54:51', '2025-01-26 14:54:51', 0); INSERT INTO `tb_user` VALUES (111, 'user_58', 'df10ef8509dc176d733d59549e7dbfaf', '19682455337', 'user616@example.com', NULL, NULL, '2025-01-26 14:54:51', '2025-01-26 14:54:51', 0); INSERT INTO `tb_user` VALUES (112, 'user_907', 'df10ef8509dc176d733d59549e7dbfaf', '17719005936', 'user687@example.com', NULL, NULL, '2025-01-26 14:54:51', '2025-01-26 14:54:51', 0); INSERT INTO `tb_user` VALUES (113, 'user_715', 'df10ef8509dc176d733d59549e7dbfaf', '14696311785', 'user515@example.com', NULL, NULL, '2025-01-26 14:54:51', '2025-01-26 14:54:51', 0); INSERT INTO `tb_user` VALUES (114, 'user_428', 'df10ef8509dc176d733d59549e7dbfaf', '14949448619', 'user595@example.com', NULL, NULL, '2025-01-26 14:54:51', '2025-01-26 14:54:51', 0); INSERT INTO `tb_user` VALUES (117, 'user_622', 'df10ef8509dc176d733d59549e7dbfaf', '18680531662', 'user531@example.com', NULL, NULL, '2025-01-26 14:55:14', '2025-01-26 14:55:14', 0); INSERT INTO `tb_user` VALUES (118, 'user_788', 'df10ef8509dc176d733d59549e7dbfaf', '13901126007', 'user347@example.com', NULL, NULL, '2025-01-26 14:55:14', '2025-01-26 14:55:14', 0); INSERT INTO `tb_user` VALUES (126, 'test_user_1', '0659c7992e268962384eb17fafe88364', '13711118888', 'vibe_music_service_1@163.com', 'http://localhost:9000/vibe-music-data/users/401fd47b-7cda-48d6-9cef-cc2eddd86582-avatar.png', 'test.', '2025-03-06 21:06:04', '2025-04-19 16:42:33', 0); INSERT INTO `tb_user` VALUES (127, 'test_user_2', '0659c7992e268962384eb17fafe88364', '13922228888', 'vibe_music_service_2@163.com', 'http://localhost:9000/vibe-music-data/users/a63196d6-e9c2-41a3-8e27-e112986267ce-avatar.png', 'test', '2025-03-06 21:30:32', '2025-03-19 17:33:53', 0); INSERT INTO `tb_user` VALUES (130, 'test_user_4', '814b66c5fa938c61324725b0495a5805', '13112345678', 'vibe_music_service_4@126.com', NULL, 'dawd', '2025-03-07 17:00:30', '2025-04-02 16:45:38', 1); INSERT INTO `tb_user` VALUES (133, 'test_user_5', '6141f591b7f67ae24b9acd983a279b15', '13212345678', 'vibe_music_service_5@126.com', NULL, 'dwa', '2025-03-07 17:15:43', '2025-04-02 16:45:20', 1); INSERT INTO `tb_user` VALUES (137, 'test_user_6', 'e47e2fe9abeb2edccea30669e04b2f16', '18312345678', 'vibe_music_service_6@126.com', NULL, 'dwa', '2025-03-07 18:01:57', '2025-04-02 16:45:40', 0); INSERT INTO `tb_user` VALUES (138, 'test_user_7', '645ad11874f161244a04ee62935334e0', '13212345698', 'vibe_music_service_7@qq.com', NULL, 'dawd', '2025-03-07 18:06:24', '2025-04-02 16:45:43', 1); -- ---------------------------- -- Table structure for tb_user_favorite -- ---------------------------- DROP TABLE IF EXISTS `tb_user_favorite`; CREATE TABLE `tb_user_favorite` ( `id` bigint(0) NOT NULL AUTO_INCREMENT COMMENT 'id', `user_id` bigint(0) NOT NULL COMMENT '用户 id', `type` tinyint(0) NOT NULL COMMENT '收藏类型:0-歌曲,1-歌单', `song_id` bigint(0) NULL DEFAULT NULL COMMENT '收藏歌曲 id', `playlist_id` bigint(0) NULL DEFAULT NULL COMMENT '收藏歌单 id', `create_time` datetime(0) NOT NULL COMMENT '创建时间', PRIMARY KEY (`id`) USING BTREE, INDEX `fk_user_favorite_user_id`(`user_id`) USING BTREE, INDEX `fk_user_favorite_song_id`(`song_id`) USING BTREE, INDEX `fk_user_favorite_playlist_id`(`playlist_id`) USING BTREE, CONSTRAINT `fk_user_favorite_playlist_id` FOREIGN KEY (`playlist_id`) REFERENCES `tb_playlist` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `fk_user_favorite_song_id` FOREIGN KEY (`song_id`) REFERENCES `tb_song` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `fk_user_favorite_user_id` FOREIGN KEY (`user_id`) REFERENCES `tb_user` (`id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE = InnoDB AUTO_INCREMENT = 432 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of tb_user_favorite -- ---------------------------- INSERT INTO `tb_user_favorite` VALUES (10, 58, 0, 195, NULL, '2025-01-26 14:31:33'); INSERT INTO `tb_user_favorite` VALUES (11, 52, 0, 247, NULL, '2025-01-26 14:31:33'); INSERT INTO `tb_user_favorite` VALUES (12, 77, 0, 287, NULL, '2025-01-26 14:31:33'); INSERT INTO `tb_user_favorite` VALUES (13, 69, 0, 350, NULL, '2025-01-26 14:31:33'); INSERT INTO `tb_user_favorite` VALUES (14, 77, 0, 33, NULL, '2025-01-26 14:31:33'); INSERT INTO `tb_user_favorite` VALUES (17, 36, 1, NULL, 14, '2025-01-26 14:31:33'); INSERT INTO `tb_user_favorite` VALUES (18, 34, 1, NULL, 7, '2025-01-26 14:31:33'); INSERT INTO `tb_user_favorite` VALUES (19, 69, 1, NULL, 5, '2025-01-26 14:31:33'); INSERT INTO `tb_user_favorite` VALUES (20, 55, 1, NULL, 2, '2025-01-26 14:31:33'); INSERT INTO `tb_user_favorite` VALUES (21, 50, 1, NULL, 17, '2025-01-26 14:31:33'); INSERT INTO `tb_user_favorite` VALUES (24, 35, 0, 285, NULL, '2025-01-26 14:31:33'); INSERT INTO `tb_user_favorite` VALUES (25, 64, 0, 329, NULL, '2025-01-26 14:31:33'); INSERT INTO `tb_user_favorite` VALUES (26, 73, 0, 423, NULL, '2025-01-26 14:31:33'); INSERT INTO `tb_user_favorite` VALUES (27, 42, 0, 93, NULL, '2025-01-26 14:31:33'); INSERT INTO `tb_user_favorite` VALUES (28, 41, 0, 288, NULL, '2025-01-26 14:31:33'); INSERT INTO `tb_user_favorite` VALUES (31, 31, 1, NULL, 9, '2025-01-26 14:31:33'); INSERT INTO `tb_user_favorite` VALUES (32, 44, 1, NULL, 4, '2025-01-26 14:31:33'); INSERT INTO `tb_user_favorite` VALUES (33, 65, 1, NULL, 16, '2025-01-26 14:31:33'); INSERT INTO `tb_user_favorite` VALUES (34, 52, 1, NULL, 2, '2025-01-26 14:31:33'); INSERT INTO `tb_user_favorite` VALUES (35, 29, 1, NULL, 6, '2025-01-26 14:31:33'); INSERT INTO `tb_user_favorite` VALUES (38, 90, 0, 224, NULL, '2025-01-26 14:35:28'); INSERT INTO `tb_user_favorite` VALUES (39, 58, 0, 236, NULL, '2025-01-26 14:35:28'); INSERT INTO `tb_user_favorite` VALUES (40, 35, 0, 368, NULL, '2025-01-26 14:35:28'); INSERT INTO `tb_user_favorite` VALUES (41, 43, 0, 377, NULL, '2025-01-26 14:35:28'); INSERT INTO `tb_user_favorite` VALUES (42, 84, 0, 203, NULL, '2025-01-26 14:35:28'); INSERT INTO `tb_user_favorite` VALUES (45, 52, 1, NULL, 9, '2025-01-26 14:35:28'); INSERT INTO `tb_user_favorite` VALUES (46, 70, 1, NULL, 4, '2025-01-26 14:35:28'); INSERT INTO `tb_user_favorite` VALUES (47, 48, 1, NULL, 6, '2025-01-26 14:35:28'); INSERT INTO `tb_user_favorite` VALUES (48, 77, 1, NULL, 9, '2025-01-26 14:35:28'); INSERT INTO `tb_user_favorite` VALUES (49, 27, 1, NULL, 2, '2025-01-26 14:35:28'); INSERT INTO `tb_user_favorite` VALUES (52, 52, 0, 123, NULL, '2025-01-26 14:54:51'); INSERT INTO `tb_user_favorite` VALUES (53, 31, 0, 258, NULL, '2025-01-26 14:54:51'); INSERT INTO `tb_user_favorite` VALUES (54, 92, 0, 344, NULL, '2025-01-26 14:54:51'); INSERT INTO `tb_user_favorite` VALUES (55, 58, 0, 22, NULL, '2025-01-26 14:54:51'); INSERT INTO `tb_user_favorite` VALUES (56, 83, 0, 249, NULL, '2025-01-26 14:54:51'); INSERT INTO `tb_user_favorite` VALUES (59, 55, 1, NULL, 3, '2025-01-26 14:54:51'); INSERT INTO `tb_user_favorite` VALUES (60, 57, 1, NULL, 10, '2025-01-26 14:54:51'); INSERT INTO `tb_user_favorite` VALUES (61, 58, 1, NULL, 10, '2025-01-26 14:54:51'); INSERT INTO `tb_user_favorite` VALUES (62, 79, 1, NULL, 18, '2025-01-26 14:54:51'); INSERT INTO `tb_user_favorite` VALUES (63, 66, 1, NULL, 4, '2025-01-26 14:54:51'); INSERT INTO `tb_user_favorite` VALUES (67, 27, 0, 498, NULL, '2025-01-26 14:54:51'); INSERT INTO `tb_user_favorite` VALUES (68, 69, 0, 31, NULL, '2025-01-26 14:54:51'); INSERT INTO `tb_user_favorite` VALUES (69, 57, 0, 311, NULL, '2025-01-26 14:54:51'); INSERT INTO `tb_user_favorite` VALUES (70, 69, 0, 6, NULL, '2025-01-26 14:54:51'); INSERT INTO `tb_user_favorite` VALUES (73, 70, 1, NULL, 13, '2025-01-26 14:54:51'); INSERT INTO `tb_user_favorite` VALUES (74, 84, 1, NULL, 14, '2025-01-26 14:54:51'); INSERT INTO `tb_user_favorite` VALUES (75, 76, 1, NULL, 13, '2025-01-26 14:54:51'); INSERT INTO `tb_user_favorite` VALUES (76, 56, 1, NULL, 9, '2025-01-26 14:54:51'); INSERT INTO `tb_user_favorite` VALUES (77, 49, 1, NULL, 2, '2025-01-26 14:54:51'); INSERT INTO `tb_user_favorite` VALUES (80, 113, 0, 182, NULL, '2025-01-26 14:55:14'); INSERT INTO `tb_user_favorite` VALUES (81, 90, 0, 156, NULL, '2025-01-26 14:55:14'); INSERT INTO `tb_user_favorite` VALUES (82, 72, 0, 460, NULL, '2025-01-26 14:55:14'); INSERT INTO `tb_user_favorite` VALUES (83, 31, 0, 237, NULL, '2025-01-26 14:55:14'); INSERT INTO `tb_user_favorite` VALUES (84, 51, 0, 209, NULL, '2025-01-26 14:55:14'); INSERT INTO `tb_user_favorite` VALUES (87, 71, 1, NULL, 10, '2025-01-26 14:55:14'); INSERT INTO `tb_user_favorite` VALUES (88, 36, 1, NULL, 17, '2025-01-26 14:55:14'); INSERT INTO `tb_user_favorite` VALUES (89, 28, 1, NULL, 12, '2025-01-26 14:55:14'); INSERT INTO `tb_user_favorite` VALUES (90, 41, 1, NULL, 14, '2025-01-26 14:55:14'); INSERT INTO `tb_user_favorite` VALUES (91, 42, 1, NULL, 9, '2025-01-26 14:55:14'); INSERT INTO `tb_user_favorite` VALUES (188, 127, 0, 13, NULL, '2025-03-20 14:54:51'); INSERT INTO `tb_user_favorite` VALUES (201, 127, 0, 2, NULL, '2025-03-20 15:02:46'); INSERT INTO `tb_user_favorite` VALUES (204, 127, 0, 3, NULL, '2025-03-20 15:02:56'); INSERT INTO `tb_user_favorite` VALUES (230, 127, 0, 7, NULL, '2025-03-20 15:06:44'); INSERT INTO `tb_user_favorite` VALUES (245, 127, 0, 5, NULL, '2025-03-20 15:08:29'); INSERT INTO `tb_user_favorite` VALUES (251, 127, 0, 34, NULL, '2025-03-20 15:09:11'); INSERT INTO `tb_user_favorite` VALUES (264, 127, 0, 466, NULL, '2025-03-20 15:14:28'); INSERT INTO `tb_user_favorite` VALUES (303, 127, 0, 443, NULL, '2025-03-20 18:02:36'); INSERT INTO `tb_user_favorite` VALUES (304, 127, 0, 135, NULL, '2025-03-20 18:04:44'); INSERT INTO `tb_user_favorite` VALUES (306, 127, 1, NULL, 18, '2025-03-21 16:00:52'); INSERT INTO `tb_user_favorite` VALUES (307, 127, 1, NULL, 10, '2025-03-21 18:20:09'); INSERT INTO `tb_user_favorite` VALUES (308, 127, 1, NULL, 8, '2025-03-21 18:20:12'); INSERT INTO `tb_user_favorite` VALUES (317, 126, 0, 337, NULL, '2025-03-25 15:28:19'); INSERT INTO `tb_user_favorite` VALUES (318, 126, 0, 134, NULL, '2025-03-25 15:30:01'); INSERT INTO `tb_user_favorite` VALUES (319, 126, 0, 139, NULL, '2025-03-25 15:30:16'); INSERT INTO `tb_user_favorite` VALUES (320, 126, 0, 140, NULL, '2025-03-25 15:30:17'); INSERT INTO `tb_user_favorite` VALUES (321, 126, 0, 141, NULL, '2025-03-25 15:30:17'); INSERT INTO `tb_user_favorite` VALUES (322, 126, 0, 142, NULL, '2025-03-25 15:30:21'); INSERT INTO `tb_user_favorite` VALUES (323, 126, 0, 135, NULL, '2025-03-25 15:30:26'); INSERT INTO `tb_user_favorite` VALUES (324, 126, 0, 138, NULL, '2025-03-25 15:30:28'); INSERT INTO `tb_user_favorite` VALUES (327, 126, 0, 314, NULL, '2025-03-25 15:32:34'); INSERT INTO `tb_user_favorite` VALUES (337, 126, 0, 315, NULL, '2025-03-25 15:40:45'); INSERT INTO `tb_user_favorite` VALUES (339, 126, 0, 316, NULL, '2025-03-25 15:40:57'); INSERT INTO `tb_user_favorite` VALUES (340, 126, 0, 319, NULL, '2025-03-25 15:45:08'); INSERT INTO `tb_user_favorite` VALUES (342, 126, 0, 443, NULL, '2025-03-25 15:59:09'); INSERT INTO `tb_user_favorite` VALUES (343, 126, 0, 281, NULL, '2025-03-25 16:04:47'); INSERT INTO `tb_user_favorite` VALUES (354, 126, 1, NULL, 8, '2025-03-25 16:41:33'); INSERT INTO `tb_user_favorite` VALUES (355, 126, 1, NULL, 3, '2025-03-25 16:41:38'); INSERT INTO `tb_user_favorite` VALUES (356, 126, 1, NULL, 11, '2025-03-25 16:41:45'); INSERT INTO `tb_user_favorite` VALUES (357, 126, 1, NULL, 10, '2025-03-25 16:41:49'); INSERT INTO `tb_user_favorite` VALUES (359, 126, 1, NULL, 18, '2025-03-25 16:42:01'); INSERT INTO `tb_user_favorite` VALUES (360, 126, 0, 6, NULL, '2025-03-25 16:43:23'); INSERT INTO `tb_user_favorite` VALUES (361, 126, 0, 7, NULL, '2025-03-25 16:43:23'); INSERT INTO `tb_user_favorite` VALUES (362, 126, 0, 25, NULL, '2025-03-25 16:43:29'); INSERT INTO `tb_user_favorite` VALUES (363, 126, 0, 24, NULL, '2025-03-25 16:43:30'); INSERT INTO `tb_user_favorite` VALUES (364, 126, 0, 34, NULL, '2025-03-25 16:43:31'); INSERT INTO `tb_user_favorite` VALUES (365, 126, 0, 69, NULL, '2025-03-25 16:43:34'); INSERT INTO `tb_user_favorite` VALUES (366, 126, 0, 68, NULL, '2025-03-25 16:43:35'); INSERT INTO `tb_user_favorite` VALUES (367, 126, 0, 56, NULL, '2025-03-25 16:43:35'); INSERT INTO `tb_user_favorite` VALUES (368, 126, 0, 74, NULL, '2025-03-25 16:43:37'); INSERT INTO `tb_user_favorite` VALUES (369, 126, 0, 322, NULL, '2025-03-25 16:44:00'); INSERT INTO `tb_user_favorite` VALUES (370, 126, 0, 323, NULL, '2025-03-25 16:44:00'); INSERT INTO `tb_user_favorite` VALUES (371, 126, 0, 324, NULL, '2025-03-25 16:44:03'); INSERT INTO `tb_user_favorite` VALUES (373, 126, 0, 353, NULL, '2025-03-25 16:52:21'); INSERT INTO `tb_user_favorite` VALUES (374, 126, 0, 370, NULL, '2025-03-25 16:52:24'); INSERT INTO `tb_user_favorite` VALUES (376, 126, 0, 362, NULL, '2025-03-25 16:52:30'); INSERT INTO `tb_user_favorite` VALUES (378, 126, 0, 349, NULL, '2025-03-25 16:52:34'); INSERT INTO `tb_user_favorite` VALUES (379, 126, 0, 359, NULL, '2025-03-25 16:52:39'); INSERT INTO `tb_user_favorite` VALUES (380, 126, 0, 360, NULL, '2025-03-25 16:52:50'); INSERT INTO `tb_user_favorite` VALUES (381, 126, 0, 81, NULL, '2025-03-25 16:58:41'); INSERT INTO `tb_user_favorite` VALUES (382, 126, 0, 126, NULL, '2025-03-25 16:59:53'); INSERT INTO `tb_user_favorite` VALUES (383, 126, 0, 123, NULL, '2025-03-25 16:59:54'); INSERT INTO `tb_user_favorite` VALUES (384, 126, 0, 124, NULL, '2025-03-25 16:59:55'); INSERT INTO `tb_user_favorite` VALUES (385, 126, 0, 107, NULL, '2025-03-25 16:59:58'); INSERT INTO `tb_user_favorite` VALUES (386, 126, 0, 110, NULL, '2025-03-25 16:59:59'); INSERT INTO `tb_user_favorite` VALUES (387, 126, 0, 111, NULL, '2025-03-25 17:00:00'); INSERT INTO `tb_user_favorite` VALUES (388, 126, 0, 152, NULL, '2025-03-25 17:00:03'); INSERT INTO `tb_user_favorite` VALUES (389, 126, 0, 154, NULL, '2025-03-25 17:00:04'); INSERT INTO `tb_user_favorite` VALUES (390, 126, 0, 146, NULL, '2025-03-25 17:00:05'); INSERT INTO `tb_user_favorite` VALUES (391, 126, 0, 147, NULL, '2025-03-25 17:00:06'); INSERT INTO `tb_user_favorite` VALUES (392, 126, 0, 71, NULL, '2025-03-25 17:00:11'); INSERT INTO `tb_user_favorite` VALUES (393, 126, 0, 72, NULL, '2025-03-25 17:00:11'); INSERT INTO `tb_user_favorite` VALUES (395, 126, 0, 31, NULL, '2025-03-25 17:00:17'); INSERT INTO `tb_user_favorite` VALUES (396, 126, 0, 55, NULL, '2025-03-25 17:00:23'); INSERT INTO `tb_user_favorite` VALUES (397, 126, 0, 120, NULL, '2025-03-25 17:00:29'); INSERT INTO `tb_user_favorite` VALUES (398, 126, 0, 65, NULL, '2025-03-25 17:00:37'); INSERT INTO `tb_user_favorite` VALUES (399, 126, 0, 194, NULL, '2025-03-25 17:00:38'); INSERT INTO `tb_user_favorite` VALUES (400, 126, 0, 195, NULL, '2025-03-25 17:00:38'); INSERT INTO `tb_user_favorite` VALUES (401, 126, 0, 189, NULL, '2025-03-25 17:00:40'); INSERT INTO `tb_user_favorite` VALUES (402, 126, 0, 188, NULL, '2025-03-25 17:00:41'); INSERT INTO `tb_user_favorite` VALUES (403, 126, 0, 186, NULL, '2025-03-25 17:00:42'); INSERT INTO `tb_user_favorite` VALUES (404, 126, 0, 225, NULL, '2025-03-25 17:00:48'); INSERT INTO `tb_user_favorite` VALUES (405, 126, 0, 224, NULL, '2025-03-25 17:00:50'); INSERT INTO `tb_user_favorite` VALUES (406, 126, 0, 223, NULL, '2025-03-25 17:00:51'); INSERT INTO `tb_user_favorite` VALUES (407, 126, 0, 211, NULL, '2025-03-25 17:00:55'); INSERT INTO `tb_user_favorite` VALUES (408, 126, 0, 130, NULL, '2025-03-25 17:00:56'); INSERT INTO `tb_user_favorite` VALUES (409, 126, 0, 212, NULL, '2025-03-25 17:00:57'); INSERT INTO `tb_user_favorite` VALUES (410, 126, 0, 214, NULL, '2025-03-25 17:00:58'); INSERT INTO `tb_user_favorite` VALUES (411, 126, 0, 216, NULL, '2025-03-25 17:00:59'); INSERT INTO `tb_user_favorite` VALUES (412, 126, 0, 221, NULL, '2025-03-25 17:01:03'); INSERT INTO `tb_user_favorite` VALUES (413, 126, 0, 447, NULL, '2025-03-25 17:01:09'); INSERT INTO `tb_user_favorite` VALUES (416, 126, 0, 381, NULL, '2025-03-25 17:01:31'); INSERT INTO `tb_user_favorite` VALUES (418, 126, 0, 332, NULL, '2025-03-25 17:01:48'); INSERT INTO `tb_user_favorite` VALUES (419, 126, 0, 333, NULL, '2025-03-25 17:01:51'); INSERT INTO `tb_user_favorite` VALUES (420, 126, 0, 336, NULL, '2025-03-25 17:01:52'); INSERT INTO `tb_user_favorite` VALUES (421, 126, 0, 340, NULL, '2025-03-25 17:01:55'); INSERT INTO `tb_user_favorite` VALUES (426, 126, 0, 529, NULL, '2025-04-07 18:14:36'); INSERT INTO `tb_user_favorite` VALUES (427, 126, 0, 207, NULL, '2025-04-07 18:17:04'); INSERT INTO `tb_user_favorite` VALUES (432, 126, 1, NULL, 7, '2025-04-19 14:59:29'); SET FOREIGN_KEY_CHECKS = 1; ================================================ FILE: src/main/java/cn/edu/seig/vibemusic/VibeMusicServerApplication.java ================================================ package cn.edu.seig.vibemusic; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.cache.annotation.EnableCaching; @EnableCaching // 开启Spring Boot基于注解的缓存管理支持 @SpringBootApplication public class VibeMusicServerApplication { public static void main(String[] args) { SpringApplication.run(VibeMusicServerApplication.class, args); } } ================================================ FILE: src/main/java/cn/edu/seig/vibemusic/config/CorsConfig.java ================================================ package cn.edu.seig.vibemusic.config; import org.jetbrains.annotations.NotNull; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.web.servlet.config.annotation.CorsRegistry; import org.springframework.web.servlet.config.annotation.WebMvcConfigurer; @Configuration public class CorsConfig { @Bean public WebMvcConfigurer corsConfigurer() { return new WebMvcConfigurer() { @Override public void addCorsMappings(@NotNull CorsRegistry registry) { registry.addMapping("/**") // 允许所有路径 .allowedOriginPatterns("*") // 允许所有来源(推荐) .allowedMethods("GET", "POST", "PUT", "PATCH", "DELETE", "OPTIONS") // 加上 OPTIONS .allowedHeaders("*") // 允许所有请求头 .exposedHeaders("Authorization") // 允许前端获取 Authorization 头 .allowCredentials(true); // 允许携带 Cookie 或 Token } }; } } ================================================ FILE: src/main/java/cn/edu/seig/vibemusic/config/MinioConfig.java ================================================ package cn.edu.seig.vibemusic.config; import io.minio.MinioClient; import org.springframework.beans.factory.annotation.Value; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; @Configuration public class MinioConfig { @Value("${minio.endpoint}") private String endpoint; @Value("${minio.accessKey}") private String accessKey; @Value("${minio.secretKey}") private String secretKey; @Bean public MinioClient minioClient() { return MinioClient.builder() .endpoint(endpoint) .credentials(accessKey, secretKey) .build(); } } ================================================ FILE: src/main/java/cn/edu/seig/vibemusic/config/MyBatisPlusConfig.java ================================================ package cn.edu.seig.vibemusic.config; import com.baomidou.mybatisplus.annotation.DbType; import com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor; import com.baomidou.mybatisplus.extension.plugins.inner.PaginationInnerInterceptor; import org.mybatis.spring.annotation.MapperScan; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; @Configuration @MapperScan("cn.edu.seig.vibemusic.mapper") public class MyBatisPlusConfig { @Bean public MybatisPlusInterceptor mybatisPlusInterceptor() { MybatisPlusInterceptor interceptor = new MybatisPlusInterceptor(); // 添加分页插件 interceptor.addInnerInterceptor(new PaginationInnerInterceptor(DbType.MYSQL)); // 设置数据库类型 return interceptor; } } ================================================ FILE: src/main/java/cn/edu/seig/vibemusic/config/RedisConfig.java ================================================ package cn.edu.seig.vibemusic.config; import com.fasterxml.jackson.annotation.JsonAutoDetect; import com.fasterxml.jackson.annotation.JsonTypeInfo; import com.fasterxml.jackson.annotation.PropertyAccessor; import com.fasterxml.jackson.databind.ObjectMapper; import com.fasterxml.jackson.databind.jsontype.impl.LaissezFaireSubTypeValidator; import com.fasterxml.jackson.datatype.jsr310.JavaTimeModule; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.data.redis.cache.RedisCacheConfiguration; import org.springframework.data.redis.cache.RedisCacheManager; import org.springframework.data.redis.connection.RedisConnectionFactory; import org.springframework.data.redis.core.RedisTemplate; import org.springframework.data.redis.serializer.Jackson2JsonRedisSerializer; import org.springframework.data.redis.serializer.RedisSerializationContext; import org.springframework.data.redis.serializer.RedisSerializer; import org.springframework.data.redis.serializer.StringRedisSerializer; import java.time.Duration; @Configuration public class RedisConfig { /** * 自定义 Jackson2JsonRedisSerializer 配置 */ private Jackson2JsonRedisSerializer jackson2JsonRedisSerializer() { ObjectMapper objectMapper = new ObjectMapper(); objectMapper.registerModule(new JavaTimeModule()); objectMapper.setVisibility(PropertyAccessor.ALL, JsonAutoDetect.Visibility.ANY); objectMapper.activateDefaultTyping(LaissezFaireSubTypeValidator.instance, ObjectMapper.DefaultTyping.NON_FINAL, JsonTypeInfo.As.PROPERTY); return new Jackson2JsonRedisSerializer<>(objectMapper, Object.class); } /** * RedisTemplate 配置 */ @Bean public RedisTemplate redisTemplate(RedisConnectionFactory redisConnectionFactory) { RedisTemplate template = new RedisTemplate<>(); template.setConnectionFactory(redisConnectionFactory); // 使用自定义的 Jackson2JsonRedisSerializer template.setDefaultSerializer(jackson2JsonRedisSerializer()); return template; } /** * RedisCacheManager 配置 */ @Bean public RedisCacheManager cacheManager(RedisConnectionFactory redisConnectionFactory) { // Key 序列化器 RedisSerializer stringSerializer = new StringRedisSerializer(); // Value 序列化器 Jackson2JsonRedisSerializer valueSerializer = jackson2JsonRedisSerializer(); // 配置缓存的序列化方式 RedisCacheConfiguration cacheConfig = RedisCacheConfiguration.defaultCacheConfig() .entryTtl(Duration.ofHours(6)) // 缓存过期时间 6 小时 .serializeKeysWith(RedisSerializationContext.SerializationPair.fromSerializer(stringSerializer)) .serializeValuesWith(RedisSerializationContext.SerializationPair.fromSerializer(valueSerializer)); return RedisCacheManager.builder(redisConnectionFactory) .cacheDefaults(cacheConfig) .build(); } } ================================================ FILE: src/main/java/cn/edu/seig/vibemusic/config/RolePathPermissionsConfig.java ================================================ package cn.edu.seig.vibemusic.config; import org.springframework.boot.context.properties.ConfigurationProperties; import org.springframework.stereotype.Component; import java.util.List; import java.util.Map; @Component @ConfigurationProperties(prefix = "role-path-permissions") public class RolePathPermissionsConfig { private Map> permissions; public Map> getPermissions() { return permissions; } public void setPermissions(Map> permissions) { this.permissions = permissions; } } ================================================ FILE: src/main/java/cn/edu/seig/vibemusic/config/RolePermissionManager.java ================================================ package cn.edu.seig.vibemusic.config; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; import java.util.List; import java.util.Map; /** * 角色权限管理器 */ @Component public class RolePermissionManager { private final RolePathPermissionsConfig rolePathPermissionsConfig; @Autowired public RolePermissionManager(RolePathPermissionsConfig rolePathPermissionsConfig) { this.rolePathPermissionsConfig = rolePathPermissionsConfig; } // 判断当前角色是否有权限访问请求的路径 public boolean hasPermission(String role, String requestURI) { Map> permissions = rolePathPermissionsConfig.getPermissions(); List allowedPaths = permissions.get(role); if (allowedPaths != null) { for (String path : allowedPaths) { if (requestURI.startsWith(path)) { return true; } } } return false; } } ================================================ FILE: src/main/java/cn/edu/seig/vibemusic/config/WebConfig.java ================================================ package cn.edu.seig.vibemusic.config; import cn.edu.seig.vibemusic.interceptor.LoginInterceptor; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.context.annotation.Configuration; import org.springframework.web.servlet.config.annotation.InterceptorRegistry; import org.springframework.web.servlet.config.annotation.WebMvcConfigurer; @Configuration public class WebConfig implements WebMvcConfigurer { @Autowired private LoginInterceptor loginInterceptor; @Override public void addInterceptors(InterceptorRegistry registry) { // 登录接口和注册接口不拦截 registry.addInterceptor(loginInterceptor) .addPathPatterns("/**") // 拦截所有请求 .excludePathPatterns( "/admin/login", "/admin/logout", "/admin/register", "/user/login", "/user/logout", "/user/register", "/user/sendVerificationCode", "/user/resetUserPassword", "/banner/getBannerList", "/playlist/getAllPlaylists", "/playlist/getRecommendedPlaylists", "/playlist/getPlaylistDetail/**", "/artist/getAllArtists", "/artist/getArtistDetail/**", "/song/getAllSongs", "/song/getRecommendedSongs", "/song/getSongDetail/**"); } } ================================================ FILE: src/main/java/cn/edu/seig/vibemusic/constant/JwtClaimsConstant.java ================================================ package cn.edu.seig.vibemusic.constant; /** * JWT 声明常量类 */ public class JwtClaimsConstant { public static final String ROLE = "role"; public static final String ADMIN_ID = "adminId"; public static final String USER_ID = "userId"; public static final String USERNAME = "username"; public static final String EMAIL = "email"; } ================================================ FILE: src/main/java/cn/edu/seig/vibemusic/constant/MessageConstant.java ================================================ package cn.edu.seig.vibemusic.constant; /** * 信息提示常量类 */ public class MessageConstant { public static final String ADMIN = "管理员"; public static final String USER = "用户"; public static final String USERNAME = "用户名"; public static final String PASSWORD = "密码"; public static final String PHONE = "手机号"; public static final String EMAIL = "邮箱"; public static final String VERIFICATION_CODE = "验证码"; public static final String TOKEN = "令牌"; public static final String REGISTER = "注册"; public static final String LOGIN = "登录"; public static final String LOGOUT = "登出"; public static final String OPERATION = "操作"; public static final String ADD = "添加"; public static final String UPDATE = "更新"; public static final String DELETE = "删除"; public static final String RESET = "重置"; public static final String INVALID = "无效"; public static final String ARTIST = "歌手"; public static final String SONG = "歌曲"; public static final String PLAYLIST = "歌单"; public static final String SUCCESS = "成功"; public static final String FAILED = "失败"; public static final String ERROR = "错误"; public static final String NOT_FOUND = "NOT_FOUND"; public static final String DATA_NOT_FOUND = "未找到相关数据"; public static final String NOT_EXIST = "不存在"; public static final String ALREADY_EXISTS = "已存在"; public static final String NOT_NULL = "不能为空"; public static final String FORMAT_ERROR = "格式不正确"; public static final String WORD_LIMIT_ERROR = "字数超出限制"; public static final String UNKNOWN_ERROR = "未知错误"; public static final String ACCOUNT_LOCKED = "账号被锁定"; public static final String NO_PERMISSION = "您没有权限访问此资源"; public static final String NOT_LOGIN = "未登录,请先登录"; public static final String SESSION_EXPIRED = "会话过期,请重新登录"; public static final String OLD_PASSWORD_ERROR = "原密码填写不正确"; public static final String NEW_PASSWORD_ERROR = "新密码不能与原密码相同"; public static final String PASSWORD_NOT_MATCH = "两次填写的新密码不一样"; public static final String EMAIL_SEND_SUCCESS = "邮件发送成功"; public static final String EMAIL_SEND_FAILED = "邮件发送失败"; public static final String USER_STATUS_INVALID = "用户状态无效"; public static final String BANNER_STATUS_INVALID = "轮播图状态无效"; public static final String FILE_UPLOAD = "文件上传"; } ================================================ FILE: src/main/java/cn/edu/seig/vibemusic/constant/PathConstant.java ================================================ package cn.edu.seig.vibemusic.constant; public class PathConstant { public static final String PLAYLIST_DETAIL_PATH = "/playlist/getPlaylistDetail/**"; public static final String ARTIST_DETAIL_PATH = "/artist/getArtistDetail/**"; public static final String SONG_LIST_PATH = "/song/getAllSongs"; public static final String SONG_DETAIL_PATH = "/song/getSongDetail/**"; } ================================================ FILE: src/main/java/cn/edu/seig/vibemusic/controller/AdminController.java ================================================ package cn.edu.seig.vibemusic.controller; import cn.edu.seig.vibemusic.model.dto.*; import cn.edu.seig.vibemusic.model.entity.Artist; import cn.edu.seig.vibemusic.model.entity.Playlist; import cn.edu.seig.vibemusic.model.vo.ArtistNameVO; import cn.edu.seig.vibemusic.model.vo.SongAdminVO; import cn.edu.seig.vibemusic.model.vo.UserManagementVO; import cn.edu.seig.vibemusic.result.PageResult; import cn.edu.seig.vibemusic.result.Result; import cn.edu.seig.vibemusic.service.*; import cn.edu.seig.vibemusic.util.BindingResultUtil; import jakarta.validation.Valid; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.validation.BindingResult; import org.springframework.web.bind.annotation.*; import org.springframework.web.multipart.MultipartFile; import java.util.List; /** *

* 前端控制器 *

* * @author sunpingli * @since 2025-01-09 */ @RestController @RequestMapping("/admin") public class AdminController { @Autowired private IAdminService adminService; @Autowired private IUserService userService; @Autowired private IArtistService artistService; @Autowired private ISongService songService; @Autowired private IPlaylistService playlistService; @Autowired private MinioService minioService; /** * 注册管理员 * * @param adminDTO 管理员信息 * @param bindingResult 绑定结果 * @return 结果 */ @PostMapping("/register") public Result register(@RequestBody @Valid AdminDTO adminDTO, BindingResult bindingResult) { // 校验失败时,返回错误信息 String errorMessage = BindingResultUtil.handleBindingResultErrors(bindingResult); if (errorMessage != null) { return Result.error(errorMessage); } return adminService.register(adminDTO); } /** * 登录管理员 * * @param adminDTO 管理员信息 * @param bindingResult 绑定结果 * @return 结果 */ @PostMapping("/login") public Result login(@RequestBody @Valid AdminDTO adminDTO, BindingResult bindingResult) { // 校验失败时,返回错误信息 String errorMessage = BindingResultUtil.handleBindingResultErrors(bindingResult); if (errorMessage != null) { return Result.error(errorMessage); } return adminService.login(adminDTO); } /** * 登出 * * @param token 认证token * @return 结果 */ @PostMapping("/logout") public Result logout(@RequestHeader("Authorization") String token) { return adminService.logout(token); } /**********************************************************************************************/ /** * 获取所有用户数量 * * @return 用户数量 */ @GetMapping("/getAllUsersCount") public Result getAllUsersCount() { return userService.getAllUsersCount(); } /** * 获取所有用户信息 * * @param userSearchDTO 用户搜索条件 * @return 结果 */ @PostMapping("/getAllUsers") public Result> getAllUsers(@RequestBody UserSearchDTO userSearchDTO) { return userService.getAllUsers(userSearchDTO); } /** * 新增用户 * * @param userAddDTO 用户注册信息 * @return 结果 */ @PostMapping("/addUser") public Result addUser(@RequestBody @Valid UserAddDTO userAddDTO, BindingResult bindingResult) { // 校验失败时,返回错误信息 String errorMessage = BindingResultUtil.handleBindingResultErrors(bindingResult); if (errorMessage != null) { return Result.error(errorMessage); } return userService.addUser(userAddDTO); } /** * 更新用户信息 * * @param userDTO 用户信息 * @return 结果 */ @PutMapping("/updateUser") public Result updateUser(@RequestBody @Valid UserDTO userDTO, BindingResult bindingResult) { // 校验失败时,返回错误信息 String errorMessage = BindingResultUtil.handleBindingResultErrors(bindingResult); if (errorMessage != null) { return Result.error(errorMessage); } return userService.updateUser(userDTO); } /** * 更新用户状态 * * @param userId 用户id * @param userStatus 用户状态 * @return 结果 */ @PatchMapping("/updateUserStatus/{id}/{status}") public Result updateUserStatus(@PathVariable("id") Long userId, @PathVariable("status") Integer userStatus) { return userService.updateUserStatus(userId, userStatus); } /** * 删除用户 * * @param userId 用户id * @return 结果 */ @DeleteMapping("/deleteUser/{id}") public Result deleteUser(@PathVariable("id") Long userId) { return userService.deleteUser(userId); } /** * 批量删除用户 * * @param userIds 用户id列表 * @return 结果 */ @DeleteMapping("/deleteUsers") public Result deleteUsers(@RequestBody List userIds) { return userService.deleteUsers(userIds); } /**********************************************************************************************/ /** * 获取所有歌手数量 * * @param gender 性别 * @param area 地区 * @return 歌手数量 */ @GetMapping("/getAllArtistsCount") public Result getAllArtistsCount(@RequestParam(required = false) Integer gender, @RequestParam(required = false) String area) { return artistService.getAllArtistsCount(gender, area); } /** * 获取所有歌手信息 * * @param artistDTO 歌手搜索条件 * @return 结果 */ @PostMapping("/getAllArtists") public Result> getAllArtists(@RequestBody ArtistDTO artistDTO) { return artistService.getAllArtistsAndDetail(artistDTO); } /** * 新增歌手 * * @param artistAddDTO 歌手信息 * @return 结果 */ @PostMapping("/addArtist") public Result addArtist(@RequestBody ArtistAddDTO artistAddDTO) { return artistService.addArtist(artistAddDTO); } /** * 更新歌手信息 * * @param artistUpdateDTO 歌手信息 * @return 结果 */ @PutMapping("/updateArtist") public Result updateArtist(@RequestBody ArtistUpdateDTO artistUpdateDTO) { return artistService.updateArtist(artistUpdateDTO); } /** * 更新歌手头像 * * @param artistId 歌手id * @param avatar 头像 * @return 结果 */ @PatchMapping("/updateArtistAvatar/{id}") public Result updateArtistAvatar(@PathVariable("id") Long artistId, @RequestParam("avatar") MultipartFile avatar) { String avatarUrl = minioService.uploadFile(avatar, "artists"); // 上传到 artists 目录 return artistService.updateArtistAvatar(artistId, avatarUrl); } /** * 删除歌手 * * @param artistId 歌手id * @return 结果 */ @DeleteMapping("/deleteArtist/{id}") public Result deleteArtist(@PathVariable("id") Long artistId) { return artistService.deleteArtist(artistId); } /** * 批量删除歌手 * * @param artistIds 歌手id列表 * @return 结果 */ @DeleteMapping("/deleteArtists") public Result deleteArtists(@RequestBody List artistIds) { return artistService.deleteArtists(artistIds); } /**********************************************************************************************/ /** * 获取所有歌曲的数量 * * @param style 歌曲风格 * @return 歌曲数量 */ @GetMapping("/getAllSongsCount") public Result getAllSongsCount(@RequestParam(required = false) String style) { return songService.getAllSongsCount(style); } /** * 获取所有歌手id和名称 * * @return 结果 */ @GetMapping("/getAllArtistNames") public Result> getAllArtistNames() { return artistService.getAllArtistNames(); } /** * 根据歌手id获取其歌曲信息 * * @param songDTO 歌曲搜索条件 * @return 结果 */ @PostMapping("/getAllSongsByArtist") public Result> getAllSongsByArtist(@RequestBody SongAndArtistDTO songDTO) { return songService.getAllSongsByArtist(songDTO); } /** * 添加歌曲信息 * * @param songAddDTO 歌曲信息 * @return 结果 */ @PostMapping("/addSong") public Result addSong(@RequestBody SongAddDTO songAddDTO) { return songService.addSong(songAddDTO); } /** * 修改歌曲信息 * * @param songUpdateDTO 歌曲信息 * @return 结果 */ @PutMapping("/updateSong") public Result UpdateSong(@RequestBody SongUpdateDTO songUpdateDTO) { return songService.updateSong(songUpdateDTO); } /** * 更新歌曲封面 * * @param songId 歌曲id * @param cover 封面 * @return 结果 */ @PatchMapping("/updateSongCover/{id}") public Result updateSongCover(@PathVariable("id") Long songId, @RequestParam("cover") MultipartFile cover) { String coverUrl = minioService.uploadFile(cover, "songCovers"); // 上传到 songCovers 目录 return songService.updateSongCover(songId, coverUrl); } /** * 更新歌曲音频 * * @param songId 歌曲id * @param audio 音频 * @return 结果 */ @PatchMapping("/updateSongAudio/{id}") public Result updateSongAudio(@PathVariable("id") Long songId, @RequestParam("audio") MultipartFile audio, @RequestParam("duration") String duration) { String audioUrl = minioService.uploadFile(audio, "songs"); // 上传到 songs 目录 return songService.updateSongAudio(songId, audioUrl, duration); } /** * 删除歌曲 * * @param songId 歌曲id * @return 结果 */ @DeleteMapping("/deleteSong/{id}") public Result deleteSong(@PathVariable("id") Long songId) { return songService.deleteSong(songId); } /** * 批量删除歌曲 * * @param songIds 歌曲id列表 * @return 结果 */ @DeleteMapping("/deleteSongs") public Result deleteSongs(@RequestBody List songIds) { return songService.deleteSongs(songIds); } /**********************************************************************************************/ /** * 获取所有歌单数量 * * @param style 歌单风格 * @return 歌单数量 */ @GetMapping("/getAllPlaylistsCount") public Result getAllPlaylistsCount(@RequestParam(required = false) String style) { return playlistService.getAllPlaylistsCount(style); } /** * 获取所有歌单信息 * * @param playlistDTO 歌单搜索条件 * @return 结果 */ @PostMapping("/getAllPlaylists") public Result> getAllPlaylists(@RequestBody PlaylistDTO playlistDTO) { return playlistService.getAllPlaylistsInfo(playlistDTO); } /** * 新增歌单 * * @param playlistAddDTO 歌单信息 * @return 结果 */ @PostMapping("/addPlaylist") public Result addPlaylist(@RequestBody PlaylistAddDTO playlistAddDTO) { return playlistService.addPlaylist(playlistAddDTO); } /** * 更新歌单信息 * * @param playlistUpdateDTO 歌单信息 * @return 结果 */ @PutMapping("/updatePlaylist") public Result updatePlaylist(@RequestBody PlaylistUpdateDTO playlistUpdateDTO) { return playlistService.updatePlaylist(playlistUpdateDTO); } /** * 更新歌单封面 * * @param playlistId 歌单id * @param cover 封面 * @return 结果 */ @PatchMapping("/updatePlaylistCover/{id}") public Result updatePlaylistCover(@PathVariable("id") Long playlistId, @RequestParam("cover") MultipartFile cover) { String coverUrl = minioService.uploadFile(cover, "playlists"); // 上传到 playlists 目录 return playlistService.updatePlaylistCover(playlistId, coverUrl); } /** * 删除歌单 * * @param playlistId 歌单id * @return 结果 */ @DeleteMapping("/deletePlaylist/{id}") public Result deletePlaylist(@PathVariable("id") Long playlistId) { return playlistService.deletePlaylist(playlistId); } /** * 批量删除歌单 * * @param playlistIds 歌单id列表 * @return 结果 */ @DeleteMapping("/deletePlaylists") public Result deletePlaylists(@RequestBody List playlistIds) { return playlistService.deletePlaylists(playlistIds); } } ================================================ FILE: src/main/java/cn/edu/seig/vibemusic/controller/ArtistController.java ================================================ package cn.edu.seig.vibemusic.controller; import cn.edu.seig.vibemusic.model.dto.ArtistDTO; import cn.edu.seig.vibemusic.model.vo.ArtistDetailVO; import cn.edu.seig.vibemusic.model.vo.ArtistVO; import cn.edu.seig.vibemusic.result.PageResult; import cn.edu.seig.vibemusic.result.Result; import cn.edu.seig.vibemusic.service.IArtistService; import jakarta.servlet.http.HttpServletRequest; import jakarta.validation.Valid; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.*; import java.util.List; /** *

* 前端控制器 *

* * @author sunpingli * @since 2025-01-09 */ @RestController @RequestMapping("/artist") public class ArtistController { @Autowired private IArtistService artistService; /** * 获取所有歌手列表 * * @param artistDTO artistDTO * @return 歌手列表 */ @PostMapping("/getAllArtists") public Result> getAllArtists(@RequestBody @Valid ArtistDTO artistDTO) { return artistService.getAllArtists(artistDTO); } /** * 获取随机歌手 * 随机歌手的数量为 10 * * @return 随机歌手列表 */ @GetMapping("/getRandomArtists") public Result> getRandomArtists() { return artistService.getRandomArtists(); } /** * 获取歌手详情 * * @param artistId 歌手id * @return 歌手详情 */ @GetMapping("/getArtistDetail/{id}") public Result getArtistDetail(@PathVariable("id") Long artistId, HttpServletRequest request) { return artistService.getArtistDetail(artistId, request); } } ================================================ FILE: src/main/java/cn/edu/seig/vibemusic/controller/BannerController.java ================================================ package cn.edu.seig.vibemusic.controller; import cn.edu.seig.vibemusic.model.dto.BannerDTO; import cn.edu.seig.vibemusic.model.entity.Banner; import cn.edu.seig.vibemusic.model.vo.BannerVO; import cn.edu.seig.vibemusic.result.PageResult; import cn.edu.seig.vibemusic.result.Result; import cn.edu.seig.vibemusic.service.IBannerService; import cn.edu.seig.vibemusic.service.MinioService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.*; import org.springframework.web.multipart.MultipartFile; import java.util.List; /** *

* 前端控制器 *

* * @author sunpingli * @since 2025-01-09 */ @RestController public class BannerController { @Autowired private IBannerService bannerService; @Autowired private MinioService minioService; /** * 获取轮播图列表 * * @return 轮播图列表 */ @PostMapping("/admin/getAllBanners") public Result> getAllBanners(@RequestBody BannerDTO bannerDTO) { return bannerService.getAllBanners(bannerDTO); } /** * 添加轮播图 * * @param banner 轮播图 * @return 结果 */ @PostMapping("/admin/addBanner") public Result addBanner(@RequestParam("banner") MultipartFile banner) { String bannerUrl = minioService.uploadFile(banner, "banners"); return bannerService.addBanner(bannerUrl); } /** * 更新轮播图 * * @param banner 轮播图 * @return 结果 */ @PatchMapping("/admin/updateBanner/{id}") public Result updateBanner(@PathVariable("id") Long bannerId, @RequestParam("banner") MultipartFile banner) { String bannerUrl = minioService.uploadFile(banner, "banners"); return bannerService.updateBanner(bannerId, bannerUrl); } /** * 更新轮播图状态 * * @param bannerStatus 轮播图状态 * @return 结果 */ @PatchMapping("/admin/updateBannerStatus/{id}") public Result updateBannerStatus(@PathVariable("id") Long bannerId, @RequestParam("status") Integer bannerStatus) { return bannerService.updateBannerStatus(bannerId, bannerStatus); } /** * 删除轮播图 * * @param bannerId 轮播图id * @return 结果 */ @DeleteMapping("/admin/deleteBanner/{id}") public Result deleteBanner(@PathVariable("id") Long bannerId) { return bannerService.deleteBanner(bannerId); } /** * 批量删除轮播图 * * @param bannerIds 轮播图id列表 * @return 结果 */ @DeleteMapping("/admin/deleteBanners") public Result deleteBanners(@RequestBody List bannerIds) { return bannerService.deleteBanners(bannerIds); } /** * 获取轮播图列表(用户端) * * @return 轮播图列表 */ @GetMapping("/banner/getBannerList") public Result> getBannerList() { return bannerService.getBannerList(); } } ================================================ FILE: src/main/java/cn/edu/seig/vibemusic/controller/CommentController.java ================================================ package cn.edu.seig.vibemusic.controller; import cn.edu.seig.vibemusic.model.dto.CommentPlaylistDTO; import cn.edu.seig.vibemusic.model.dto.CommentSongDTO; import cn.edu.seig.vibemusic.result.Result; import cn.edu.seig.vibemusic.service.ICommentService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.*; /** *

* 前端控制器 *

* * @author sunpingli * @since 2025-01-09 */ @RestController @RequestMapping("/comment") public class CommentController { @Autowired private ICommentService commentService; /** * 新增歌曲评论 * * @param commentSongDTO 评论信息 * @return 结果 */ @PostMapping("/addSongComment") public Result addSongComment(@RequestBody CommentSongDTO commentSongDTO) { return commentService.addSongComment(commentSongDTO); } /** * 新增歌单评论 * * @param commentPlaylistDTO 评论信息 * @return 结果 */ @PostMapping("/addPlaylistComment") public Result addPlaylistComment(@RequestBody CommentPlaylistDTO commentPlaylistDTO) { return commentService.addPlaylistComment(commentPlaylistDTO); } /** * 点赞评论 * * @param commentId 评论id * @return 结果 */ @PatchMapping("/likeComment/{id}") public Result likeComment(@PathVariable("id") Long commentId) { return commentService.likeComment(commentId); } /** * 取消点赞评论 * * @param commentId 评论id * @return 结果 */ @PatchMapping("/cancelLikeComment/{id}") public Result cancelLikeComment(@PathVariable("id") Long commentId) { return commentService.cancelLikeComment(commentId); } /** * 删除评论 * * @param commentId 评论id * @return 结果 */ @DeleteMapping("/deleteComment/{id}") public Result deleteComment(@PathVariable("id") Long commentId) { return commentService.deleteComment(commentId); } } ================================================ FILE: src/main/java/cn/edu/seig/vibemusic/controller/FeedbackController.java ================================================ package cn.edu.seig.vibemusic.controller; import cn.edu.seig.vibemusic.model.dto.FeedbackDTO; import cn.edu.seig.vibemusic.model.entity.Feedback; import cn.edu.seig.vibemusic.result.PageResult; import cn.edu.seig.vibemusic.result.Result; import cn.edu.seig.vibemusic.service.IFeedbackService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.*; import java.util.List; /** *

* 前端控制器 *

* * @author sunpingli * @since 2025-01-09 */ @RestController public class FeedbackController { @Autowired private IFeedbackService feedbackService; /** * 获取反馈列表 * * @return 反馈列表 */ @PostMapping("/admin/getAllFeedbacks") public Result> getAllFeedbacks(@RequestBody FeedbackDTO feedbackDTO) { return feedbackService.getAllFeedbacks(feedbackDTO); } /** * 删除反馈 * * @param feedbackId 反馈id * @return 结果 */ @DeleteMapping("/admin/deleteFeedback/{id}") public Result deleteFeedback(@PathVariable("id") Long feedbackId) { return feedbackService.deleteFeedback(feedbackId); } /** * 批量删除反馈 * * @param feedbackIds 反馈id列表 * @return 结果 */ @DeleteMapping("/admin/deleteFeedbacks") public Result deleteFeedbacks(@RequestBody List feedbackIds) { return feedbackService.deleteFeedbacks(feedbackIds); } /** * 添加反馈 * * @param content 反馈内容 * @return 结果 */ @PostMapping("/feedback/addFeedback") public Result addFeedback(@RequestParam(value = "content") String content) { return feedbackService.addFeedback(content); } } ================================================ FILE: src/main/java/cn/edu/seig/vibemusic/controller/GenreController.java ================================================ package cn.edu.seig.vibemusic.controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; /** *

* 前端控制器 *

* * @author sunpingli * @since 2025-01-09 */ @RestController @RequestMapping("/genre") public class GenreController { } ================================================ FILE: src/main/java/cn/edu/seig/vibemusic/controller/PlaylistBindingController.java ================================================ package cn.edu.seig.vibemusic.controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; /** *

* 前端控制器 *

* * @author sunpingli * @since 2025-01-09 */ @RestController @RequestMapping("/playlist-binding") public class PlaylistBindingController { } ================================================ FILE: src/main/java/cn/edu/seig/vibemusic/controller/PlaylistController.java ================================================ package cn.edu.seig.vibemusic.controller; import cn.edu.seig.vibemusic.model.dto.PlaylistDTO; import cn.edu.seig.vibemusic.model.vo.PlaylistDetailVO; import cn.edu.seig.vibemusic.model.vo.PlaylistVO; import cn.edu.seig.vibemusic.result.PageResult; import cn.edu.seig.vibemusic.result.Result; import cn.edu.seig.vibemusic.service.IPlaylistService; import jakarta.servlet.http.HttpServletRequest; import jakarta.validation.Valid; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.*; import java.util.List; /** *

* 前端控制器 *

* * @author sunpingli * @since 2025-01-09 */ @RestController @RequestMapping("/playlist") public class PlaylistController { @Autowired private IPlaylistService playlistService; /** * 获取所有歌单 * * @param playlistDTO playlistDTO * @return 歌单列表 */ @PostMapping("/getAllPlaylists") public Result> getAllPlaylists(@RequestBody @Valid PlaylistDTO playlistDTO) { return playlistService.getAllPlaylists(playlistDTO); } /** * 获取推荐歌单 * * @param request request * @return 推荐歌单列表 */ @GetMapping("/getRecommendedPlaylists") public Result> getRandomPlaylists(HttpServletRequest request) { return playlistService.getRecommendedPlaylists(request); } /** * 获取歌单详情 * * @param playlistId 歌单id * @return 歌单详情 */ @GetMapping("/getPlaylistDetail/{id}") public Result getPlaylistDetail(@PathVariable("id") Long playlistId, HttpServletRequest request) { return playlistService.getPlaylistDetail(playlistId, request); } } ================================================ FILE: src/main/java/cn/edu/seig/vibemusic/controller/SongController.java ================================================ package cn.edu.seig.vibemusic.controller; import cn.edu.seig.vibemusic.model.dto.SongDTO; import cn.edu.seig.vibemusic.model.vo.SongDetailVO; import cn.edu.seig.vibemusic.model.vo.SongVO; import cn.edu.seig.vibemusic.result.PageResult; import cn.edu.seig.vibemusic.result.Result; import cn.edu.seig.vibemusic.service.ISongService; import jakarta.servlet.http.HttpServletRequest; import jakarta.validation.Valid; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.*; import java.util.List; /** *

* 前端控制器 *

* * @author sunpingli * @since 2025-01-09 */ @RestController @RequestMapping("/song") public class SongController { @Autowired private ISongService songService; /** * 获取所有歌曲 * * @param songDTO songDTO * @return 歌曲列表 */ @PostMapping("/getAllSongs") public Result> getAllSongs(@RequestBody @Valid SongDTO songDTO, HttpServletRequest request) { return songService.getAllSongs(songDTO, request); } /** * 获取推荐歌曲 * 推荐歌曲的数量为 20 * * @param request 请求 * @return 推荐歌曲列表 */ @GetMapping("/getRecommendedSongs") public Result> getRecommendedSongs(HttpServletRequest request) { return songService.getRecommendedSongs(request); } /** * 获取歌曲详情 * * @param songId 歌曲id * @return 歌曲详情 */ @GetMapping("/getSongDetail/{id}") public Result getSongDetail(@PathVariable("id") Long songId, HttpServletRequest request) { return songService.getSongDetail(songId, request); } } ================================================ FILE: src/main/java/cn/edu/seig/vibemusic/controller/StyleController.java ================================================ package cn.edu.seig.vibemusic.controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; /** *

* 前端控制器 *

* * @author sunpingli * @since 2025-01-09 */ @RestController @RequestMapping("/style") public class StyleController { } ================================================ FILE: src/main/java/cn/edu/seig/vibemusic/controller/UserController.java ================================================ package cn.edu.seig.vibemusic.controller; import cn.edu.seig.vibemusic.constant.MessageConstant; import cn.edu.seig.vibemusic.model.dto.*; import cn.edu.seig.vibemusic.model.vo.UserVO; import cn.edu.seig.vibemusic.result.Result; import cn.edu.seig.vibemusic.service.IUserService; import cn.edu.seig.vibemusic.service.MinioService; import cn.edu.seig.vibemusic.util.BindingResultUtil; import jakarta.validation.Valid; import jakarta.validation.constraints.Email; import org.hibernate.validator.constraints.URL; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.validation.BindingResult; import org.springframework.web.bind.annotation.*; import org.springframework.web.multipart.MultipartFile; /** *

* 前端控制器 *

* * @author sunpingli * @since 2025-01-09 */ @RestController @RequestMapping("/user") public class UserController { @Autowired private IUserService userService; @Autowired private MinioService minioService; /** * 发送验证码 * * @param email 邮箱 * @return 结果 */ @GetMapping("/sendVerificationCode") public Result sendVerificationCode(@RequestParam @Email String email) { return userService.sendVerificationCode(email); } /** * 注册 * * @param userRegisterDTO 用户注册信息 * @param bindingResult 绑定结果 * @return 结果 */ @PostMapping("/register") public Result register(@RequestBody @Valid UserRegisterDTO userRegisterDTO, BindingResult bindingResult) { // 校验失败时,返回错误信息 String errorMessage = BindingResultUtil.handleBindingResultErrors(bindingResult); if (errorMessage != null) { return Result.error(errorMessage); } // 验证验证码是否正确 boolean isCodeValid = userService.verifyVerificationCode(userRegisterDTO.getEmail(), userRegisterDTO.getVerificationCode()); if (!isCodeValid) { return Result.error(MessageConstant.VERIFICATION_CODE + MessageConstant.INVALID); } return userService.register(userRegisterDTO); } /** * 登录 * * @param userLoginDTO 用户登录信息 * @param bindingResult 绑定结果 * @return 结果 */ @PostMapping("/login") public Result login(@RequestBody @Valid UserLoginDTO userLoginDTO, BindingResult bindingResult) { // 校验失败时,返回错误信息 String errorMessage = BindingResultUtil.handleBindingResultErrors(bindingResult); if (errorMessage != null) { return Result.error(errorMessage); } return userService.login(userLoginDTO); } /** * 获取用户信息 * * @return 结果 */ @GetMapping("/getUserInfo") public Result getUserInfo() { return userService.userInfo(); } /** * 更新用户信息 * * @param userDTO 用户信息 * @return 结果 */ @PutMapping("/updateUserInfo") public Result updateUserInfo(@RequestBody @Valid UserDTO userDTO, BindingResult bindingResult) { // 校验失败时,返回错误信息 String errorMessage = BindingResultUtil.handleBindingResultErrors(bindingResult); if (errorMessage != null) { return Result.error(errorMessage); } return userService.updateUserInfo(userDTO); } /** * 更新用户头像 * * @param avatar 头像 * @return 结果 */ @PatchMapping("/updateUserAvatar") public Result updateUserAvatar(@RequestParam("avatar") MultipartFile avatar) { String avatarUrl = minioService.uploadFile(avatar, "users"); // 上传到 users 目录 return userService.updateUserAvatar(avatarUrl); } /** * 更新用户密码 * * @param userPasswordDTO 用户密码信息 * @param token 认证token * @return 结果 */ @PatchMapping("/updateUserPassword") public Result updateUserPassword(@RequestBody @Valid UserPasswordDTO userPasswordDTO, @RequestHeader("Authorization") String token, BindingResult bindingResult) { // 校验失败时,返回错误信息 String errorMessage = BindingResultUtil.handleBindingResultErrors(bindingResult); if (errorMessage != null) { return Result.error(errorMessage); } return userService.updateUserPassword(userPasswordDTO, token); } /** * 重置用户密码 * * @param userResetPasswordDTO 用户密码信息 * @return 结果 */ @PatchMapping("/resetUserPassword") public Result resetUserPassword(@RequestBody @Valid UserResetPasswordDTO userResetPasswordDTO, BindingResult bindingResult) { // 校验失败时,返回错误信息 String errorMessage = BindingResultUtil.handleBindingResultErrors(bindingResult); if (errorMessage != null) { return Result.error(errorMessage); } // 验证验证码是否正确 boolean isCodeValid = userService.verifyVerificationCode(userResetPasswordDTO.getEmail(), userResetPasswordDTO.getVerificationCode()); if (!isCodeValid) { return Result.error(MessageConstant.VERIFICATION_CODE + MessageConstant.INVALID); } return userService.resetUserPassword(userResetPasswordDTO); } /** * 登出 * * @param token 认证token * @return 结果 */ @PostMapping("/logout") public Result logout(@RequestHeader("Authorization") String token) { return userService.logout(token); } /** * 注销账号 * * @return 结果 */ @DeleteMapping("/deleteAccount") public Result deleteAccount() { return userService.deleteAccount(); } } ================================================ FILE: src/main/java/cn/edu/seig/vibemusic/controller/UserFavoriteController.java ================================================ package cn.edu.seig.vibemusic.controller; import cn.edu.seig.vibemusic.model.dto.PlaylistDTO; import cn.edu.seig.vibemusic.model.dto.SongDTO; import cn.edu.seig.vibemusic.model.vo.PlaylistVO; import cn.edu.seig.vibemusic.model.vo.SongVO; import cn.edu.seig.vibemusic.result.PageResult; import cn.edu.seig.vibemusic.result.Result; import cn.edu.seig.vibemusic.service.IUserFavoriteService; import jakarta.validation.Valid; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.*; /** *

* 前端控制器 *

* * @author sunpingli * @since 2025-01-09 */ @RestController @RequestMapping("/favorite") public class UserFavoriteController { @Autowired private IUserFavoriteService userFavoriteService; /** * 获取用户收藏的歌曲列表 * * @return 用户收藏的歌曲列表 */ @PostMapping("/getFavoriteSongs") public Result> getUserFavoriteSongs(@RequestBody @Valid SongDTO songDTO) { return userFavoriteService.getUserFavoriteSongs(songDTO); } /** * 收藏歌曲 * * @param songId 歌曲id * @return 收藏结果 */ @PostMapping("/collectSong") public Result collectSong(@RequestParam Long songId) { return userFavoriteService.collectSong(songId); } /** * 取消收藏歌曲 * * @param songId 歌曲id * @return 取消收藏结果 */ @DeleteMapping("/cancelCollectSong") public Result cancelCollectSong(@RequestParam Long songId) { return userFavoriteService.cancelCollectSong(songId); } /** * 获取用户收藏的歌单列表 * * @return 用户收藏的歌单列表 */ @PostMapping("/getFavoritePlaylists") public Result> getFavoritePlaylists(@RequestBody @Valid PlaylistDTO playlistDTO) { return userFavoriteService.getUserFavoritePlaylists(playlistDTO); } /** * 收藏歌单 * * @param playlistId 歌单id * @return 收藏结果 */ @PostMapping("/collectPlaylist") public Result collectPlaylist(@RequestParam Long playlistId) { return userFavoriteService.collectPlaylist(playlistId); } /** * 取消收藏歌单 * * @param playlistId 歌单id * @return 取消收藏结果 */ @DeleteMapping("/cancelCollectPlaylist") public Result cancelCollectPlaylist(@RequestParam Long playlistId) { return userFavoriteService.cancelCollectPlaylist(playlistId); } } ================================================ FILE: src/main/java/cn/edu/seig/vibemusic/enumeration/BannerStatusEnum.java ================================================ package cn.edu.seig.vibemusic.enumeration; import com.baomidou.mybatisplus.annotation.EnumValue; import lombok.Getter; @Getter public enum BannerStatusEnum { ENABLE(0, "启用"), DISABLE(1, "禁用"); @EnumValue private final Integer id; private final String bannerStatus; BannerStatusEnum(Integer id, String bannerStatus) { this.id = id; this.bannerStatus = bannerStatus; } } ================================================ FILE: src/main/java/cn/edu/seig/vibemusic/enumeration/CommentTypeEnum.java ================================================ package cn.edu.seig.vibemusic.enumeration; import com.baomidou.mybatisplus.annotation.EnumValue; import lombok.Getter; @Getter public enum CommentTypeEnum { SONG(0, "歌曲评论"), PLAYLIST(1, "歌单评论"); @EnumValue private final Integer id; private final String commentType; CommentTypeEnum(Integer id, String commentType) { this.id = id; this.commentType = commentType; } } ================================================ FILE: src/main/java/cn/edu/seig/vibemusic/enumeration/FavoriteTypeEnum.java ================================================ package cn.edu.seig.vibemusic.enumeration; import com.baomidou.mybatisplus.annotation.EnumValue; import lombok.Getter; @Getter public enum FavoriteTypeEnum { SONG(0, "歌曲收藏"), PLAYLIST(1, "歌单收藏"); @EnumValue private final Integer id; private final String favoriteType; FavoriteTypeEnum(Integer id, String favoriteType) { this.id = id; this.favoriteType = favoriteType; } } ================================================ FILE: src/main/java/cn/edu/seig/vibemusic/enumeration/LikeStatusEnum.java ================================================ package cn.edu.seig.vibemusic.enumeration; import lombok.Getter; @Getter public enum LikeStatusEnum { DEFAULT(0, "默认"), LIKE(1, "喜欢"); private final Integer id; private final String likeStatus; LikeStatusEnum(Integer id, String likeStatus) { this.id = id; this.likeStatus = likeStatus; } } ================================================ FILE: src/main/java/cn/edu/seig/vibemusic/enumeration/RoleEnum.java ================================================ package cn.edu.seig.vibemusic.enumeration; import lombok.Getter; @Getter public enum RoleEnum { ADMIN("ROLE_ADMIN"), USER("ROLE_USER"); private final String role; RoleEnum(String role) { this.role = role; } } ================================================ FILE: src/main/java/cn/edu/seig/vibemusic/enumeration/UserStatusEnum.java ================================================ package cn.edu.seig.vibemusic.enumeration; import com.baomidou.mybatisplus.annotation.EnumValue; import lombok.Getter; @Getter public enum UserStatusEnum { ENABLE(0, "启用"), DISABLE(1, "禁用"); @EnumValue private final Integer id; private final String userStatus; UserStatusEnum(Integer id, String userStatus) { this.id = id; this.userStatus = userStatus; } } ================================================ FILE: src/main/java/cn/edu/seig/vibemusic/handler/GlobalExceptionHandler.java ================================================ package cn.edu.seig.vibemusic.handler; import cn.edu.seig.vibemusic.constant.MessageConstant; import lombok.extern.slf4j.Slf4j; import cn.edu.seig.vibemusic.result.Result; import org.springframework.http.HttpStatus; import org.springframework.util.StringUtils; import org.springframework.web.bind.MethodArgumentNotValidException; import org.springframework.web.bind.annotation.ExceptionHandler; import org.springframework.web.bind.annotation.ResponseStatus; import org.springframework.web.bind.annotation.RestControllerAdvice; import java.sql.SQLIntegrityConstraintViolationException; import java.util.regex.Matcher; import java.util.regex.Pattern; @Slf4j @RestControllerAdvice public class GlobalExceptionHandler { private static final Pattern DUPLICATE_ENTRY_PATTERN = Pattern.compile("Duplicate entry '(.+?)' for key '(.+?)'"); /** * 统一返回错误结果 * * @param message 错误信息 * @return */ private Result errorResult(String message) { return Result.error(message); } /** * 处理SQL异常 * * @param ex * @return */ @ExceptionHandler(SQLIntegrityConstraintViolationException.class) public Result handleSqlIntegrityConstraintViolationException(SQLIntegrityConstraintViolationException ex) { log.error("SQL异常:{}", ex.getMessage(), ex); Matcher matcher = DUPLICATE_ENTRY_PATTERN.matcher(ex.getMessage()); try { if (matcher.find()) { String msg = matcher.group(2) + " " + MessageConstant.ALREADY_EXISTS; return errorResult(msg); } } catch (IndexOutOfBoundsException e) { log.error("解析SQL异常时发生错误:{}", e.getMessage(), e); } return errorResult(MessageConstant.UNKNOWN_ERROR); } /** * 处理参数校验异常 * * @param ex * @return */ @ExceptionHandler(MethodArgumentNotValidException.class) @ResponseStatus(HttpStatus.BAD_REQUEST) public Result handleMethodArgumentNotValidException(MethodArgumentNotValidException ex) { log.error("参数校验异常:{}", ex.getMessage(), ex); // 获取所有校验失败的字段和错误信息 String errorMessage = ex.getBindingResult().getFieldErrors().stream() .map(fieldError -> fieldError.getField() + ": " + fieldError.getDefaultMessage()) .reduce((msg1, msg2) -> msg1 + "; " + msg2) .orElse("参数校验失败"); return errorResult(errorMessage); } /** * 处理其他未知异常 * * @param ex * @return */ //@ExceptionHandler(Exception.class) //@ResponseStatus(HttpStatus.INTERNAL_SERVER_ERROR) //public Result handleException(Exception ex) { // log.error("未知异常:{}", ex.getMessage(), ex); // String message = StringUtils.hasLength(ex.getMessage()) ? ex.getMessage() : MessageConstant.UNKNOWN_ERROR; // return errorResult(message); //} } ================================================ FILE: src/main/java/cn/edu/seig/vibemusic/interceptor/LoginInterceptor.java ================================================ package cn.edu.seig.vibemusic.interceptor; import cn.edu.seig.vibemusic.config.RolePermissionManager; import cn.edu.seig.vibemusic.constant.JwtClaimsConstant; import cn.edu.seig.vibemusic.constant.MessageConstant; import cn.edu.seig.vibemusic.constant.PathConstant; import cn.edu.seig.vibemusic.util.JwtUtil; import cn.edu.seig.vibemusic.util.ThreadLocalUtil; import jakarta.servlet.http.HttpServletRequest; import jakarta.servlet.http.HttpServletResponse; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.data.redis.core.StringRedisTemplate; import org.springframework.data.redis.core.ValueOperations; import org.springframework.stereotype.Component; import org.springframework.util.AntPathMatcher; import org.springframework.util.PathMatcher; import org.springframework.web.servlet.HandlerInterceptor; import java.io.IOException; import java.util.Arrays; import java.util.List; import java.util.Map; @Component public class LoginInterceptor implements HandlerInterceptor { @Autowired private StringRedisTemplate stringRedisTemplate; @Autowired private RolePermissionManager rolePermissionManager; public void sendErrorResponse(HttpServletResponse response, int status, String message) throws IOException { response.setStatus(status); response.setCharacterEncoding("UTF-8"); // 设置字符编码为UTF-8 response.setContentType("application/json;charset=UTF-8"); // 设置响应的Content-Type response.getWriter().write(message); } @Override public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) throws Exception { // 允许 CORS 预检请求(OPTIONS 方法)直接通过 if (request.getMethod().equalsIgnoreCase("OPTIONS")) { response.setStatus(HttpServletResponse.SC_OK); return true; // 直接放行,确保 CORS 预检请求不会被拦截 } String token = request.getHeader("Authorization"); if (token != null && token.startsWith("Bearer ")) { token = token.substring(7); // 去掉 "Bearer " 前缀 } String path = request.getRequestURI(); // 获取 Spring 的 PathMatcher 实例 PathMatcher pathMatcher = new AntPathMatcher(); // 定义允许访问的路径 List allowedPaths = Arrays.asList( PathConstant.PLAYLIST_DETAIL_PATH, PathConstant.ARTIST_DETAIL_PATH, PathConstant.SONG_LIST_PATH, PathConstant.SONG_DETAIL_PATH ); // 检查路径是否匹配 boolean isAllowedPath = allowedPaths.stream() .anyMatch(pattern -> pathMatcher.match(pattern, path)); if (token == null || token.isEmpty()) { if (isAllowedPath) { return true; // 允许未登录用户访问这些路径 } sendErrorResponse(response, 401, MessageConstant.NOT_LOGIN); // 缺少令牌 return false; } try { // 从redis中获取相同的token ValueOperations operations = stringRedisTemplate.opsForValue(); String redisToken = operations.get(token); if (redisToken == null) { // token失效 throw new RuntimeException(); } Map claims = JwtUtil.parseToken(token); String role = (String) claims.get(JwtClaimsConstant.ROLE); String requestURI = request.getRequestURI(); if (rolePermissionManager.hasPermission(role, requestURI)) { // 把业务数据存储到ThreadLocal中 ThreadLocalUtil.set(claims); return true; } else { sendErrorResponse(response, 403, MessageConstant.NO_PERMISSION); // 无权限访问 return false; } } catch (Exception e) { sendErrorResponse(response, 401, MessageConstant.SESSION_EXPIRED); // 令牌无效 return false; } } @Override public void afterCompletion(HttpServletRequest request, HttpServletResponse response, Object handler, Exception ex) throws Exception { // 清空ThreadLocal中的数据 ThreadLocalUtil.remove(); } } ================================================ FILE: src/main/java/cn/edu/seig/vibemusic/mapper/AdminMapper.java ================================================ package cn.edu.seig.vibemusic.mapper; import cn.edu.seig.vibemusic.model.entity.Admin; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import org.apache.ibatis.annotations.Mapper; /** *

* Mapper 接口 *

* * @author sunpingli * @since 2025-01-09 */ @Mapper public interface AdminMapper extends BaseMapper { } ================================================ FILE: src/main/java/cn/edu/seig/vibemusic/mapper/ArtistMapper.java ================================================ package cn.edu.seig.vibemusic.mapper; import cn.edu.seig.vibemusic.model.entity.Artist; import cn.edu.seig.vibemusic.model.vo.ArtistDetailVO; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import org.apache.ibatis.annotations.Mapper; /** *

* Mapper 接口 *

* * @author sunpingli * @since 2025-01-09 */ @Mapper public interface ArtistMapper extends BaseMapper { // 根据id查询歌手详情 ArtistDetailVO getArtistDetailById(Long artistId); } ================================================ FILE: src/main/java/cn/edu/seig/vibemusic/mapper/BannerMapper.java ================================================ package cn.edu.seig.vibemusic.mapper; import cn.edu.seig.vibemusic.model.entity.Banner; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import org.apache.ibatis.annotations.Mapper; /** *

* Mapper 接口 *

* * @author sunpingli * @since 2025-01-09 */ @Mapper public interface BannerMapper extends BaseMapper { } ================================================ FILE: src/main/java/cn/edu/seig/vibemusic/mapper/CommentMapper.java ================================================ package cn.edu.seig.vibemusic.mapper; import cn.edu.seig.vibemusic.model.entity.Comment; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import org.apache.ibatis.annotations.Mapper; /** *

* Mapper 接口 *

* * @author sunpingli * @since 2025-01-09 */ @Mapper public interface CommentMapper extends BaseMapper { } ================================================ FILE: src/main/java/cn/edu/seig/vibemusic/mapper/FeedbackMapper.java ================================================ package cn.edu.seig.vibemusic.mapper; import cn.edu.seig.vibemusic.model.entity.Feedback; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import org.apache.ibatis.annotations.Mapper; /** *

* Mapper 接口 *

* * @author sunpingli * @since 2025-01-09 */ @Mapper public interface FeedbackMapper extends BaseMapper { } ================================================ FILE: src/main/java/cn/edu/seig/vibemusic/mapper/GenreMapper.java ================================================ package cn.edu.seig.vibemusic.mapper; import cn.edu.seig.vibemusic.model.entity.Genre; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import org.apache.ibatis.annotations.Mapper; /** *

* Mapper 接口 *

* * @author sunpingli * @since 2025-01-09 */ @Mapper public interface GenreMapper extends BaseMapper { } ================================================ FILE: src/main/java/cn/edu/seig/vibemusic/mapper/PlaylistBindingMapper.java ================================================ package cn.edu.seig.vibemusic.mapper; import cn.edu.seig.vibemusic.model.entity.PlaylistBinding; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import org.apache.ibatis.annotations.Mapper; /** *

* Mapper 接口 *

* * @author sunpingli * @since 2025-01-09 */ @Mapper public interface PlaylistBindingMapper extends BaseMapper { } ================================================ FILE: src/main/java/cn/edu/seig/vibemusic/mapper/PlaylistMapper.java ================================================ package cn.edu.seig.vibemusic.mapper; import cn.edu.seig.vibemusic.model.entity.Playlist; import cn.edu.seig.vibemusic.model.vo.PlaylistDetailVO; import cn.edu.seig.vibemusic.model.vo.PlaylistVO; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.baomidou.mybatisplus.core.metadata.IPage; import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import org.apache.ibatis.annotations.Select; import java.util.List; /** *

* Mapper 接口 *

* * @author sunpingli * @since 2025-01-09 */ @Mapper public interface PlaylistMapper extends BaseMapper { // 根据歌单id获取歌单详情 PlaylistDetailVO getPlaylistDetailById(Long playlistId); // 获取用户收藏歌单的风格 List getFavoritePlaylistStyles(List favoritePlaylistIds); // 根据风格推荐歌单(排除已收藏歌单) List getRecommendedPlaylistsByStyles(List sortedStyleIds, List favoritePlaylistIds, int limit); // 随机推荐歌单 @Select(""" SELECT p.id AS playlistId, p.title AS title, p.cover_url AS coverUrl FROM tb_playlist p ORDER BY RAND() LIMIT #{limit} """) List getRandomPlaylists(int limit); // 根据用户收藏的歌单id列表获取歌单列表 IPage getPlaylistsByIds( Long userId, Page page, @Param("playlistIds") List playlistIds, @Param("title") String title, @Param("style") String style); } ================================================ FILE: src/main/java/cn/edu/seig/vibemusic/mapper/SongMapper.java ================================================ package cn.edu.seig.vibemusic.mapper; import cn.edu.seig.vibemusic.model.entity.Song; import cn.edu.seig.vibemusic.model.vo.SongAdminVO; import cn.edu.seig.vibemusic.model.vo.SongDetailVO; import cn.edu.seig.vibemusic.model.vo.SongVO; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.baomidou.mybatisplus.core.metadata.IPage; import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import org.apache.ibatis.annotations.Select; import java.util.List; /** *

* Mapper 接口 *

* * @author sunpingli * @since 2025-01-09 */ @Mapper public interface SongMapper extends BaseMapper { // 获取歌曲列表 @Select(""" SELECT s.id AS songId, s.name AS songName, s.album, s.duration, s.cover_url AS coverUrl, s.audio_url AS audioUrl, s.release_time AS releaseTime, a.name AS artistName FROM tb_song s LEFT JOIN tb_artist a ON s.artist_id = a.id WHERE (#{songName} IS NULL OR s.name LIKE CONCAT('%', #{songName}, '%')) AND (#{artistName} IS NULL OR a.name LIKE CONCAT('%', #{artistName}, '%')) AND (#{album} IS NULL OR s.album LIKE CONCAT('%', #{album}, '%')) """) IPage getSongsWithArtist(Page page, @Param("songName") String songName, @Param("artistName") String artistName, @Param("album") String album); // 获取歌曲列表 @Select(""" SELECT s.id AS songId, s.name AS songName, s.artist_id AS artistId, s.album, s.lyric, s.duration, s.style, s.cover_url AS coverUrl, s.audio_url AS audioUrl, s.release_time AS releaseTime, a.name AS artistName FROM tb_song s LEFT JOIN tb_artist a ON s.artist_id = a.id WHERE (#{artistId} IS NULL OR s.artist_id = #{artistId}) AND(#{songName} IS NULL OR s.name LIKE CONCAT('%', #{songName}, '%')) AND (#{album} IS NULL OR s.album LIKE CONCAT('%', #{album}, '%')) ORDER BY s.release_time DESC """) IPage getSongsWithArtistName(Page page, @Param("artistId") Long artistId, @Param("songName") String songName, @Param("album") String album); // 获取随机歌曲列表 @Select(""" SELECT s.id AS songId, s.name AS songName, s.album, s.duration, s.cover_url AS coverUrl, s.audio_url AS audioUrl, s.release_time AS releaseTime, a.name AS artistName FROM tb_song s LEFT JOIN tb_artist a ON s.artist_id = a.id ORDER BY RAND() LIMIT 20 """) List getRandomSongsWithArtist(); // 根据id获取歌曲详情 SongDetailVO getSongDetailById(Long songId); // 根据用户收藏的歌曲id列表获取歌曲列表 IPage getSongsByIds(Page page, @Param("songIds") List songIds, @Param("songName") String songName, @Param("artistName") String artistName, @Param("album") String album); // 根据用户收藏的歌曲id列表获取歌曲列表 List getFavoriteSongStyles(@Param("favoriteSongIds") List favoriteSongIds); // 根据用户收藏的歌曲id列表获取歌曲列表 List getRecommendedSongsByStyles(@Param("sortedStyleIds") List sortedStyleIds, @Param("favoriteSongIds") List favoriteSongIds, @Param("limit") int limit); } ================================================ FILE: src/main/java/cn/edu/seig/vibemusic/mapper/StyleMapper.java ================================================ package cn.edu.seig.vibemusic.mapper; import cn.edu.seig.vibemusic.model.entity.Style; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import org.apache.ibatis.annotations.Mapper; /** *

* Mapper 接口 *

* * @author sunpingli * @since 2025-01-09 */ @Mapper public interface StyleMapper extends BaseMapper