fix: update llm_api_map field lengths to 32 (getID() standard)

This commit is contained in:
yumoqing 2026-05-20 16:41:28 +08:00
parent d2ffd9c6d0
commit 334dcc5947

View File

@ -1,13 +1,13 @@
{
"summary": [{"name": "llm_api_map", "title": "模型能力映射表", "primary": ["id"], "catelog": "relation"}],
"fields": [
{"name": "id", "title": "主键", "type": "str", "length": 21, "nullable": "no"},
{"name": "llmid", "title": "模型ID", "type": "str", "length": 21, "nullable": "no"},
{"name": "id", "title": "主键", "type": "str", "length": 32, "nullable": "no"},
{"name": "llmid", "title": "模型ID", "type": "str", "length": 32, "nullable": "no"},
{"name": "llmcatelogid", "title": "类目ID", "type": "str", "length": 32, "nullable": "no"},
{"name": "apiname", "title": "API接口名", "type": "str", "length": 100, "nullable": "no"},
{"name": "query_apiname", "title": "结果查询API名", "type": "str", "length": 100},
{"name": "query_period", "title": "查询间隔(秒)", "type": "int"},
{"name": "ppid", "title": "定价项目ID", "type": "str", "length": 21}
{"name": "ppid", "title": "定价项目ID", "type": "str", "length": 32}
],
"indexes": [
{"name": "idx_llm_api_llm", "idxtype": "index", "idxfields": ["llmid"]},