调整百度新闻,加入#号

This commit is contained in:
liuwei
2025-02-14 08:58:48 +08:00
parent 4d1811ce23
commit e50ef0ce06
5 changed files with 173 additions and 56 deletions

8
task/tasks.sql Normal file
View File

@@ -0,0 +1,8 @@
CREATE TABLE IF NOT EXISTS tasks (
task_id INT AUTO_INCREMENT PRIMARY KEY, -- 任务ID自增
task_description VARCHAR(255) NOT NULL, -- 任务描述
reminder_time TIME NOT NULL, -- 提醒时间
task_type ENUM('single', 'recurring') DEFAULT 'single', -- 任务类型:单次或周期性
status ENUM('pending', 'completed') DEFAULT 'pending', -- 任务状态:待办或已完成
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP -- 创建时间,默认为当前时间
);