feat: session 增加 stream_id,stream_url

1. pcap 新增 summary 统计信息
This commit is contained in:
shizhendong
2024-08-13 14:08:33 +08:00
parent 58b38fbe91
commit ecb57f6c6c
5 changed files with 81 additions and 21 deletions

View File

@@ -227,6 +227,7 @@ CREATE TABLE `pcap` (
`size` bigint(20) NOT NULL DEFAULT 0 COMMENT '文件大小',
`md5` varchar(64) NOT NULL DEFAULT '' COMMENT '摘要值,根据文件md5值判断是否已上存在存在则响应当前id',
`status` varchar(64) NOT NULL DEFAULT '' COMMENT '状态,可选值 UploadedAnalyzingCompleted',
`summary` varchar(512) NOT NULL DEFAULT '{}' COMMENT '摘要信息, JSON 格式',
`create_timestamp` bigint(20) NOT NULL COMMENT '创建时间戳',
`create_user_id` varchar(64) NOT NULL COMMENT '创建人',
`workspace_id` varchar(64) NOT NULL DEFAULT '' COMMENT '工作空间ID',