pipeline-app/pipeline_core/models/pipeline_steps.json
yumoqing 3c9fdcf444 feat: UI pages, build.sh, deployment scripts, model uitype fixes
- Add SDLC dashboard, pipeline editor, ops center UI
- build.sh: clone business modules to pkgs/, xls2ui CRUD, fix created_by
- global_func.py: password_encode None-safe wrapper
- pipeline_app.py: permission cache warmup removed
- load_path.py: RBAC permission registration for all modules
- scripts/merge_i18n.py: i18n merge tool
- bin/init_perms.py, bin/init_data.py: init scripts
- set_role_perm.py: single permission registration
- Model uitype fields set for form editing
- pipeline_core/pipeline_ops load_path.py scripts
2026-07-18 22:44:34 +08:00

122 lines
2.2 KiB
JSON

{
"summary": [
{
"name": "pipeline_steps",
"title": "产线步骤表",
"primary": [
"id"
]
}
],
"fields": [
{
"name": "id",
"title": "id",
"type": "str",
"length": 32,
"nullable": "no",
"uitype": "hidden"
},
{
"name": "pipeline_id",
"title": "所属产线",
"type": "str",
"length": 32,
"nullable": "no",
"uitype": "select"
},
{
"name": "step_order",
"title": "步骤序号",
"type": "int",
"nullable": "no",
"uitype": "number"
},
{
"name": "step_name",
"title": "步骤名称",
"type": "str",
"length": 100,
"nullable": "no",
"uitype": "text"
},
{
"name": "step_type",
"title": "步骤类型",
"type": "str",
"length": 50,
"nullable": "no",
"uitype": "select"
},
{
"name": "model_name",
"title": "调用模型名称",
"type": "str",
"length": 100,
"uitype": "text"
},
{
"name": "step_config",
"title": "步骤配置JSON",
"type": "text",
"uitype": "textarea"
},
{
"name": "input_schema",
"title": "输入定义JSON",
"type": "text",
"uitype": "textarea"
},
{
"name": "output_schema",
"title": "输出定义JSON",
"type": "text",
"uitype": "textarea"
},
{
"name": "timeout_seconds",
"title": "超时秒数",
"type": "int",
"default": "300",
"uitype": "number"
},
{
"name": "retry_count",
"title": "重试次数",
"type": "int",
"default": "0",
"uitype": "number"
},
{
"name": "created_at",
"title": "创建时间",
"type": "timestamp",
"uitype": "timestamp"
}
],
"indexes": [
{
"name": "idx_steps_pipeline",
"idxtype": "index",
"idxfields": [
"pipeline_id"
]
},
{
"name": "idx_steps_order",
"idxtype": "unique",
"idxfields": [
"pipeline_id",
"step_order"
]
}
],
"codes": [
{
"field": "pipeline_id",
"table": "pipelines",
"valuefield": "id",
"textfield": "name"
}
]
}