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

14 lines
805 B
SQL
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
-- ----------------------------
-- 可选创建B站教学视频同步定时任务若依任务调度
-- 使用前请确保已:
-- 1) 执行 teaching_video_bilibili_source_20260331.sql 配置同步源
-- 2) 执行 teaching_video_bilibili_extend_20260331.sql 扩展教学视频表
--
-- invoke_target: biliVideoSyncTask.syncAll()
-- cron_expression: 每小时第5分钟执行一次可自行调整
-- ----------------------------
insert into sys_job (job_id, job_name, job_group, invoke_target, cron_expression, misfire_policy, concurrent, status, create_by, create_time, update_by, update_time, remark)
values (10, 'B站教学视频同步', 'DEFAULT', 'biliVideoSyncTask.syncAll()', '0 5 * * * ?', '3', '1', '0', 'admin', sysdate(), '', null, '同步B站合集/系列到教学视频表');