This commit is contained in:
Daniel 2025-06-30 20:40:22 +08:00
parent cbcb047f0f
commit 66fb119e1a
No known key found for this signature in database
GPG key ID: 86211BA83DF03017
4 changed files with 14 additions and 1 deletions

View file

@ -58,6 +58,8 @@ type Table struct {
Columns []*TableColumn `json:"columns"` // 表格列
Rows []*TableRow `json:"rows"` // 表格行
RowCount int `json:"rowCount"` // 表格总行数
Groups []*Table `json:"groups,omitempty"` // 分组实例列表
}
// TableColumn 描述了表格实例列的结构。