3个业务模块: - pipeline_core: 产线定义(pipelines/steps/versions) - pipeline_ops: 运营(定价/供应量/使用记录) - pipeline_dist: 分销(分销商/独立定价/API密钥) - ahserver独立部署(端口9090) - 独立数据库pipeline - 80个文件, 符合module/db-table/crud三规范
28 lines
820 B
JSON
28 lines
820 B
JSON
{
|
|
"tblname": "pipeline_versions",
|
|
"title": "发布记录",
|
|
"params": {
|
|
"sortby": "created_at",
|
|
"browserfields": {
|
|
"exclouded": ["id", "config_snapshot"],
|
|
"cwidth": {}
|
|
},
|
|
"editexclouded": [
|
|
"id", "created_at"
|
|
],
|
|
"editable": {
|
|
"new_data_url": "{{entire_url('../api/pipeline_versions_create.dspy')}}",
|
|
"update_data_url": "{{entire_url('../api/pipeline_versions_update.dspy')}}",
|
|
"delete_data_url": "{{entire_url('../api/pipeline_versions_delete.dspy')}}"
|
|
},
|
|
"confidential_fields": [],
|
|
"subtables": [
|
|
{
|
|
"field": "pipeline_id",
|
|
"title": "所属产线",
|
|
"subtable": "pipelines"
|
|
}
|
|
]
|
|
}
|
|
}
|