script_engine/models/script.json

28 lines
1.4 KiB
JSON

{
"summary": [
{
"name": "script",
"title": "脚本表",
"primary": ["id"],
"catelog": "entity"
}
],
"fields": [
{"name": "id", "title": "主键ID", "type": "str", "length": 32, "nullable": "no"},
{"name": "script_name", "title": "脚本名称", "type": "str", "length": 100, "nullable": "no"},
{"name": "script_type", "title": "脚本类型", "type": "str", "length": 32, "nullable": "no", "default": "0"},
{"name": "content", "title": "脚本内容", "type": "text", "nullable": "no"},
{"name": "description", "title": "描述", "type": "str", "length": 255},
{"name": "status", "title": "状态", "type": "str", "length": 32, "nullable": "no", "default": "1"},
{"name": "created_at", "title": "创建时间", "type": "timestamp", "nullable": "no"},
{"name": "updated_at", "title": "更新时间", "type": "timestamp", "nullable": "no"}
],
"indexes": [
{"name": "idx_script_name", "idxtype": "index", "idxfields": ["script_name"]},
{"name": "idx_script_type", "idxtype": "index", "idxfields": ["script_type"]}
],
"codes": [
{"field": "script_type", "table": "appcodes_kv", "valuefield": "k", "textfield": "v", "cond": "parentid='script_type'"},
{"field": "status", "table": "appcodes_kv", "valuefield": "k", "textfield": "v", "cond": "parentid='script_status'"}
]
}