[全量] 初始化项目代码、配置、文档及Agent协同harness

This commit is contained in:
2026-04-02 11:36:05 +08:00
parent 0553309cdf
commit 87e571d9ec
1133 changed files with 221948 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
create table chat_gpt.writer_docs (
id bigint auto_increment comment '主键' ,
create_time datetime default CURRENT_TIMESTAMP not null comment '创建时间',
update_time datetime default CURRENT_TIMESTAMP not null on update CURRENT_TIMESTAMP comment '更新时间',
user_name varchar(300) not null comment '用户名',
user_id bigint default 0 not null comment '用户id',
title varchar(250) default '' null comment '文章标题',
docs longtext charset utf8mb4 null comment '文章正文',
deleted int(1) default 0 not null comment '是否删除 0->未删除;1->已删除',
primary key (id)
) engine=innodb charset = utf8 comment = '文档撰写存储表';
commit;