feat(work): 新增智能表格内容编组相关接口

This commit is contained in:
Fu Diwei
2025-11-26 10:11:48 +08:00
parent e2b90ac941
commit 5c48ed6e99
16 changed files with 488 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
{
"docid": "DOCID",
"sheet_id": "SHEETID",
"name": "编组名称",
"children": [
{
"field_id": "field_id"
},
{
"field_id": "field_id"
}
]
}

View File

@@ -0,0 +1,16 @@
{
"errcode": 0,
"errmsg": "ok",
"field_group": {
"field_group_id": "FIELD_GROUP_ID",
"name": "编组名称",
"children": [
{
"field_id": "FIELD_ID"
},
{
"field_id": "FIELD_ID"
}
]
}
}

View File

@@ -0,0 +1,8 @@
{
"docid": "DOCID",
"sheet_id": "123Abc",
"field_group_ids": [
"fgCLYCF",
"fgCLYCM"
]
}

View File

@@ -0,0 +1,6 @@
{
"docid": "DOCID",
"sheet_id": "SHEETID",
"offset": 0,
"limit": 10
}

View File

@@ -0,0 +1,18 @@
{
"errcode": 0,
"errmsg": "ok",
"total": 1,
"has_more": false,
"next": 0,
"field_groups": [
{
"field_group_id": "FIELD_GROUP_ID",
"name": "编组名称",
"children": [
{
"field_id": "FIELD_ID"
}
]
}
]
}

View File

@@ -0,0 +1,14 @@
{
"docid": "DOCID",
"sheet_id": "SHEETID",
"field_group_id": "FIELD_GROUP_ID",
"name": "编组名称",
"children": [
{
"field_id": "FIELD_ID"
},
{
"field_id": "FIELD_ID"
}
]
}

View File

@@ -0,0 +1,16 @@
{
"errcode": 0,
"errmsg": "ok",
"field_group": {
"field_group_id": "FIELD_GROUP_ID",
"name": "编组名称",
"children": [
{
"field_id": "FIELD_ID"
},
{
"field_id": "FIELD_ID"
}
]
}
}