{ "summary": [ { "name": "scene", "title": "场景表", "primary": ["id"], "catelog": "entity" } ], "fields": [ {"name": "id", "title": "主键ID", "type": "str", "length": 32, "nullable": "no"}, {"name": "world_id", "title": "所属世界", "type": "str", "length": 32, "nullable": "no"}, {"name": "name", "title": "场景名称", "type": "str", "length": 255, "nullable": "no"}, {"name": "code", "title": "场景编码", "type": "str", "length": 64, "nullable": "no"}, {"name": "description", "title": "描述", "type": "text", "nullable": "yes"}, {"name": "scene_type", "title": "场景类型", "type": "str", "length": 16, "nullable": "no", "default": "0"}, {"name": "status", "title": "状态", "type": "str", "length": 16, "nullable": "no", "default": "0"}, {"name": "config_json", "title": "场景配置JSON", "type": "text", "nullable": "yes"}, {"name": "created_at", "title": "创建时间", "type": "timestamp", "nullable": "no"}, {"name": "updated_at", "title": "更新时间", "type": "timestamp", "nullable": "yes"} ], "indexes": [ {"name": "idx_scene_code", "idxtype": "unique", "idxfields": ["code"]}, {"name": "idx_scene_world", "idxtype": "index", "idxfields": ["world_id"]} ], "codes": [ {"field": "world_id", "table": "world", "valuefield": "id", "textfield": "name"}, {"field": "scene_type", "table": "appcodes_kv", "valuefield": "k", "textfield": "v", "cond": "parentid='scene_type'"}, {"field": "status", "table": "appcodes_kv", "valuefield": "k", "textfield": "v", "cond": "parentid='scene_status'"} ] }