From ade3b4be1ebb7148ccce4456ef32609ccf78e6b9 Mon Sep 17 00:00:00 2001 From: pipeline-agent Date: Sun, 30 Aug 2026 14:02:32 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E5=9F=9F=E6=A8=A1=E5=9E=8Bv2):=20game?= =?UTF-8?q?=E8=A1=A8=E2=80=94=E2=80=94=E8=81=9A=E5=90=88=E6=A0=B9=EF=BC=8C?= =?UTF-8?q?1:1world?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- models/game.json | 60 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 models/game.json diff --git a/models/game.json b/models/game.json new file mode 100644 index 0000000..550607f --- /dev/null +++ b/models/game.json @@ -0,0 +1,60 @@ +{ + "summary": [ + { + "name": "game", + "title": "游戏表(聚合根)", + "primary": [ + "id" + ] + } + ], + "fields": [ + { + "name": "id", + "title": "游戏ID", + "type": "str", + "length": 32, + "nullable": "no" + }, + { + "name": "name", + "title": "游戏名称", + "type": "str", + "length": 255, + "nullable": "no" + }, + { + "name": "code", + "title": "游戏编码", + "type": "str", + "length": 64 + }, + { + "name": "description", + "title": "游戏描述", + "type": "text" + }, + { + "name": "icon", + "title": "图标", + "type": "str", + "length": 64 + }, + { + "name": "status", + "title": "draft/published/archived", + "type": "str", + "length": 16 + }, + { + "name": "created_at", + "title": "创建时间", + "type": "timestamp" + }, + { + "name": "updated_at", + "title": "更新时间", + "type": "timestamp" + } + ] +} \ No newline at end of file