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条测试用例/开发日志
154 lines
3.5 KiB
JSON
154 lines
3.5 KiB
JSON
{
|
|
"summary": [
|
|
{
|
|
"name": "cms_content",
|
|
"title": "CMS内容表",
|
|
"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": "content_type",
|
|
"title": "内容类型(banner/product/case/news)",
|
|
"type": "str",
|
|
"length": 32,
|
|
"nullable": "no"
|
|
},
|
|
{
|
|
"name": "category_id",
|
|
"title": "分类ID",
|
|
"type": "str",
|
|
"length": 32
|
|
},
|
|
{
|
|
"name": "title",
|
|
"title": "标题",
|
|
"type": "str",
|
|
"length": 255,
|
|
"nullable": "no"
|
|
},
|
|
{
|
|
"name": "subtitle",
|
|
"title": "副标题",
|
|
"type": "str",
|
|
"length": 255
|
|
},
|
|
{
|
|
"name": "summary_text",
|
|
"title": "摘要",
|
|
"type": "str",
|
|
"length": 500
|
|
},
|
|
{
|
|
"name": "body",
|
|
"title": "正文内容",
|
|
"type": "text"
|
|
},
|
|
{
|
|
"name": "image_url",
|
|
"title": "封面图片URL",
|
|
"type": "str",
|
|
"length": 500
|
|
},
|
|
{
|
|
"name": "tags",
|
|
"title": "标签(逗号分隔)",
|
|
"type": "str",
|
|
"length": 500
|
|
},
|
|
{
|
|
"name": "sort_order",
|
|
"title": "排序号",
|
|
"type": "int",
|
|
"default": "0"
|
|
},
|
|
{
|
|
"name": "status",
|
|
"title": "状态(draft/pending/approved/published/archived)",
|
|
"type": "str",
|
|
"length": 32,
|
|
"default": "draft"
|
|
},
|
|
{
|
|
"name": "approval_id",
|
|
"title": "审批单ID",
|
|
"type": "str",
|
|
"length": 32
|
|
},
|
|
{
|
|
"name": "published_at",
|
|
"title": "发布时间",
|
|
"type": "datetime"
|
|
},
|
|
{
|
|
"name": "extra_json",
|
|
"title": "扩展JSON",
|
|
"type": "text"
|
|
},
|
|
{
|
|
"name": "created_by",
|
|
"title": "创建人",
|
|
"type": "str",
|
|
"length": 32
|
|
},
|
|
{
|
|
"name": "created_at",
|
|
"title": "创建时间",
|
|
"type": "timestamp"
|
|
},
|
|
{
|
|
"name": "updated_at",
|
|
"title": "更新时间",
|
|
"type": "timestamp"
|
|
}
|
|
],
|
|
"indexes": [
|
|
{
|
|
"name": "idx_content_type_status",
|
|
"idxtype": "index",
|
|
"idxfields": [
|
|
"content_type",
|
|
"status"
|
|
]
|
|
},
|
|
{
|
|
"name": "idx_content_org",
|
|
"idxtype": "index",
|
|
"idxfields": [
|
|
"org_id",
|
|
"content_type"
|
|
]
|
|
},
|
|
{
|
|
"name": "idx_content_sort",
|
|
"idxtype": "index",
|
|
"idxfields": [
|
|
"sort_order"
|
|
]
|
|
}
|
|
],
|
|
"codes": [
|
|
{
|
|
"field": "category_id",
|
|
"table": "cms_categories",
|
|
"valuefield": "id",
|
|
"textfield": "name"
|
|
}
|
|
]
|
|
} |