Files
hanjie_backend/sql/teaching_video_bilibili_extend_20260331.sql
trezeman 2b8d5cc126 1.设置设备查看权限(每个公司只能查看自己购买的设备,未完善)
2.添加设备信息模块,可以选择设备查看详情(未添加实时数据部分)
3.添加教学视频模块,拉取b站系列中的视频
4.初步调整ui
2026-03-31 17:46:40 +08:00

16 lines
918 B
SQL

-- ----------------------------
-- 教学视频表扩展:支持外部视频源(B站)同步
-- ----------------------------
alter table teaching_video
add column source_type varchar(32) default null comment '视频来源类型(BILIBILI等)' after video_id,
add column source_key varchar(64) default null comment '来源唯一键(B站bvid等)' after source_type,
add column source_url varchar(512) default null comment '来源原始链接' after source_key,
add column sync_status char(1) default '0' comment '同步状态(0正常 1失败)' after remark,
add column sync_time datetime default null comment '最近同步时间' after sync_status,
add column sync_error varchar(500) default null comment '最近同步错误' after sync_time;
create unique index uk_teaching_video_source on teaching_video (source_type, source_key);
create index idx_teaching_video_sync_time on teaching_video (sync_time);