新增sql和一些标注和发布的接口

This commit is contained in:
weiweiw 2024-10-25 11:01:19 +08:00
parent 790ca43496
commit 424e79e74c
1 changed files with 2 additions and 2 deletions

View File

@ -59,8 +59,7 @@ create table ai_annotation_team_member
update_time datetime default null comment '更新时间',
create_time datetime default null comment '创建时间',
primary key (member_id, role_id)
)
engine=innodb comment = '标注人员和角色关联表';
)engine=innodb comment = '标注人员和角色关联表';
/*==============================================================*/
@ -121,6 +120,7 @@ create table ai_dataset_file_map
file_id bigint(20) not null comment '文件id',
dataset_id bigint(20) not null comment '数据集id',
description varchar(500) comment '描述',
is_annotated char(1) default '0' comment '关联数据集时是否已标注(0代表未标注1代表已标注)',
del_flag char(1) default '0' comment '是否删除(0代表存在,1代表删除)',
create_by varchar(64) default '' comment '创建者',
update_by varchar(64) default '' comment '更新者',