refactor(models): convert to json format per database-table-definition-spec

This commit is contained in:
yumoqing 2026-05-27 13:23:33 +08:00
parent b83828b073
commit 3e93f61594

39
models/uapiset.json Normal file
View File

@ -0,0 +1,39 @@
{
"summary": [
{
"name": "uapiset",
"title": "API集",
"primary": [
"id"
],
"catelog": "entity"
}
],
"fields": [
{
"name": "id",
"title": "id",
"type": "str",
"length": 32
},
{
"name": "name",
"title": "API集名称",
"type": "str",
"length": 200
},
{
"name": "description",
"title": "描述",
"type": "text",
"default": "0"
},
{
"name": "auth_apiname",
"title": "授权api名",
"type": "str",
"length": 200,
"nullable": "yes"
}
]
}