2 Star 1 Fork 0

南山大柱子 / 微擎_微信视频小程序

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
DB.sql 2.08 KB
一键复制 编辑 原始数据 按行查看 历史
-- 'title' => array('a img', 'alt'),//h3标签的文字,会变成title的值
-- 'img' => array('a[class=figure result_figure] img', 'src'),
-- 'vid' => array('a[class=figure result_figure]', 'data-qpvid'),
-- 'url' => array('a[class=figure result_figure]', 'href'),
-- 'time' => array('.figure_caption .figure_info', 'html'),
-- 'date' => array('.info_item_odd .content', 'text'),
-- 'author' => array('.info_item span[class=content] a', 'text'),//desc_text //figure
-- 'desc' => array('.info_item span[class=desc_text]', 'text'),//desc_text
drop table if exists ten_video_type;
create table ten_video_type(
id tinyint unsigned not null auto_increment primary key default 0 comment '分类id',
title varchar(255) not null default '' comment '分类标题',
img varchar(255) not null default '' comment '封面',
pid tinyint unsigned not null default 0 comment '上级分类ID',
`desc` varchar(255) not null default '' comment '描述',
create_time timestamp default '00-00-00' comment '创建时间'
)engine myisam comment '视频分类';
drop table if exists ten_video;
create table ten_video(
id tinyint unsigned not null auto_increment primary key,
vid varchar(15) not null default '' comment 'vid',
title varchar(255) not null default '' comment '视频标题',
img varchar(255) not null default '' comment '封面',
url varchar(255) not null default '' comment '原本的url',
time int unsigned not null default 0 comment '时间长度',
date varchar(255) not null default '' comment '上传日期',
author varchar(255) not null default '' comment '作者',
`desc` varchar(255) not null default '' comment '描述',
is_hot tinyint unsigned not null default 0 comment '是否最热',
is_new tinyint unsigned not null default 0 comment '是否最新',
is_well tinyint unsigned not null default 0 comment '是否推荐',
sort tinyint unsigned not null default 0 comment '排序',
create_time timestamp default '00-00-00' comment '创建时间'
)engine myisam comment '视频列表';
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/zhuzi1991/wechat_video_app.git
git@gitee.com:zhuzi1991/wechat_video_app.git
zhuzi1991
wechat_video_app
微擎_微信视频小程序
master

搜索帮助

344bd9b3 5694891 D2dac590 5694891