1.设置设备查看权限(每个公司只能查看自己购买的设备,未完善)

2.添加设备信息模块,可以选择设备查看详情(未添加实时数据部分)
3.添加教学视频模块,拉取b站系列中的视频
4.初步调整ui
This commit is contained in:
2026-03-31 17:46:40 +08:00
parent 0e2d75c23c
commit 2b8d5cc126
334 changed files with 2303 additions and 28691 deletions

View File

@@ -0,0 +1,13 @@
-- ----------------------------
-- 可选创建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站合集/系列到教学视频表');