| 12345678910111213141516171819202122 |
- create table ai_mcp
- (
- id bigint auto_increment
- primary key,
- tenant_id varchar(255) default '000000' not null comment '租户id',
- name varchar(255) default '' not null comment 'mcp名称',
- introduce varchar(255) default '' not null comment '简介',
- input_data text null comment '输入',
- output_data text null comment '输出',
- url varchar(255) default '' not null comment '请求地址',
- sort int default 0 not null comment '排序规则',
- agent_id bigint default 0 not null comment '智能体id',
- status int default 0 not null comment '状态:0-正常;1-禁用',
- create_dept varchar(255) default '' not null comment '创建部门',
- create_by bigint default 0 not null comment '创建人',
- create_time datetime default CURRENT_TIMESTAMP not null comment '创建时间',
- update_by bigint default 0 not null comment '更新时间',
- update_time datetime default CURRENT_TIMESTAMP not null on update CURRENT_TIMESTAMP comment '更新时间',
- remark text not null comment '备注'
- )
- comment '模型上下文协议' collate = utf8mb4_general_ci;
|