entcms模块: - 4个数据表(cms_content/cms_categories/cms_leads/cms_site_config) - 22个.dspy API(含公开API和data_filter) - 4个公开页面(首页/新闻/案例)+管理后台 - 完整营销站点CSS/JS(暗色主题/渐变/动画/响应式) - 云宝SVG线稿占位符 - RBAC权限配置 dingdingflow模块: - 2个数据表(dd_approvals/dd_approval_configs) - 10个.dspy API(含钉钉回调endpoint) - 钉钉API客户端(环境变量配置,开发模式mock) - 管理UI 文档: 架构设计/53条测试用例/开发日志
85 lines
1.9 KiB
JSON
85 lines
1.9 KiB
JSON
{
|
|
"summary": [
|
|
{
|
|
"name": "dd_approval_configs",
|
|
"title": "审批流程配置表",
|
|
"primary": [
|
|
"id"
|
|
]
|
|
}
|
|
],
|
|
"fields": [
|
|
{
|
|
"name": "id",
|
|
"title": "主键ID",
|
|
"type": "str",
|
|
"length": 32,
|
|
"nullable": "no"
|
|
},
|
|
{
|
|
"name": "org_id",
|
|
"title": "组织ID",
|
|
"type": "str",
|
|
"length": 32,
|
|
"default": "0"
|
|
},
|
|
{
|
|
"name": "biz_type",
|
|
"title": "业务类型",
|
|
"type": "str",
|
|
"length": 32,
|
|
"nullable": "no"
|
|
},
|
|
{
|
|
"name": "biz_type_title",
|
|
"title": "业务类型名称",
|
|
"type": "str",
|
|
"length": 100
|
|
},
|
|
{
|
|
"name": "process_code",
|
|
"title": "钉钉审批模板编码",
|
|
"type": "str",
|
|
"length": 100
|
|
},
|
|
{
|
|
"name": "agent_id",
|
|
"title": "钉钉应用AgentId",
|
|
"type": "str",
|
|
"length": 100
|
|
},
|
|
{
|
|
"name": "form_config",
|
|
"title": "表单字段配置JSON",
|
|
"type": "text"
|
|
},
|
|
{
|
|
"name": "is_active",
|
|
"title": "是否启用(1/0)",
|
|
"type": "str",
|
|
"length": 1,
|
|
"default": "1"
|
|
},
|
|
{
|
|
"name": "created_at",
|
|
"title": "创建时间",
|
|
"type": "timestamp"
|
|
},
|
|
{
|
|
"name": "updated_at",
|
|
"title": "更新时间",
|
|
"type": "timestamp"
|
|
}
|
|
],
|
|
"indexes": [
|
|
{
|
|
"name": "idx_apvcfg_org_type",
|
|
"idxtype": "unique",
|
|
"idxfields": [
|
|
"org_id",
|
|
"biz_type"
|
|
]
|
|
}
|
|
],
|
|
"codes": []
|
|
} |