From 4e2a10a84b90d139b36e1cc5b0a581e81fa70fc9 Mon Sep 17 00:00:00 2001 From: ymq Date: Thu, 10 Sep 2026 19:06:09 +0800 Subject: [PATCH] =?UTF-8?q?chore(models):=20git=20rm=20sd=5Fconversations.?= =?UTF-8?q?json=E2=80=94=E2=80=94=E6=AD=BB=E8=A1=A8=E5=AE=9A=E4=B9=89?= =?UTF-8?q?=E5=88=A0=E9=99=A4(08-01=E5=90=8E=E9=9B=B6=E5=86=99,=E5=9B=9E?= =?UTF-8?q?=E6=94=BE=E5=B7=B2=E8=B5=B0pipeline=5Fconversations;DROP?= =?UTF-8?q?=E8=A7=81pipeline-app=20m0027,=E6=89=B9=E8=AF=84=E4=BC=9A?= =?UTF-8?q?=E5=86=B3=E8=AE=AE)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- models/sd_conversations.json | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 models/sd_conversations.json diff --git a/models/sd_conversations.json b/models/sd_conversations.json deleted file mode 100644 index 39f72be..0000000 --- a/models/sd_conversations.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "summary": [ - { - "name": "sd_conversations", - "title": "开发产线对话记录表", - "primary": ["id"], - "catelog": "entity" - } - ], - "fields": [ - {"name": "id", "title": "主键ID", "type": "str", "length": 32, "nullable": "no"}, - {"name": "iteration_id", "title": "迭代ID", "type": "str", "length": 32, "nullable": "no"}, - {"name": "task_id", "title": "Pipeline任务ID", "type": "str", "length": 32}, - {"name": "step_name", "title": "关联步骤名", "type": "str", "length": 100}, - {"name": "role", "title": "角色", "type": "str", "length": 20, "nullable": "no", "default": "'user'"}, - {"name": "content", "title": "消息正文", "type": "text"}, - {"name": "attachments", "title": "附件列表JSON", "type": "text"}, - {"name": "msg_type", "title": "消息类型", "type": "str", "length": 20, "nullable": "no", "default": "'text'"}, - {"name": "org_id", "title": "组织ID", "type": "str", "length": 32, "nullable": "no", "default": "'0'"}, - {"name": "created_by", "title": "创建人", "type": "str", "length": 32}, - {"name": "created_at", "title": "创建时间", "type": "timestamp", "nullable": "no"} - ], - "indexes": [ - {"name": "idx_sd_conv_iteration", "idxtype": "index", "idxfields": ["iteration_id"]}, - {"name": "idx_sd_conv_task", "idxtype": "index", "idxfields": ["task_id"]}, - {"name": "idx_sd_conv_created", "idxtype": "index", "idxfields": ["created_at"]} - ], - "codes": [ - {"field": "role", "table": "appcodes_kv", "valuefield": "k", "textfield": "v", "cond": "parentid='sd_conversation_role'"} - ] -}