代码拉取完成,页面将自动刷新
'''之前绕远路的所写的代码完全没必要'''
'''
create database api default character set=utf8mb4;
drop table if exists api_music;
create table api_music(
id int(11) not null auto_increment comment '自增序号',
playlist_id varchar(50) not null default '' comment '歌单id',
music_id varchar(50) not null default '' comment '歌曲id',
name varchar(100) not null default '' comment '歌名',
artist varchar(100) not null default '' comment '歌手',
url varchar(100) not null default '' comment '歌曲的播放地址api',
url_details varchar(100) not null default '' comment '歌曲都具体播放地址',
cover varchar(200) not null default '' comment '歌曲的封面',
lrc varchar(200) not null default '' comment '歌词的api',
lrc_details varchar(10000) not null default '' comment '具体的歌词',
primary key (id)
) engine=innodb default charset=utf8mb4 comment='歌曲api表';
create table api_music_1(
id int(11) not null auto_increment comment '自增序号',
music_id varchar(50) not null default '' comment '歌曲id',
url_details varchar(100) not null default '' comment '歌曲都具体播放地址',
lrc_details varchar(10000) not null default '' comment '具体的歌词',
primary key (id)
) engine=innodb default charset=utf8mb4 comment='歌曲api表改进型号';
'''
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。