This commit is contained in:
Daniel 2023-06-08 15:46:15 +08:00
parent f4055c55c4
commit 8cea4b01b8
No known key found for this signature in database
GPG key ID: 86211BA83DF03017
2 changed files with 8 additions and 2 deletions

View file

@ -35,6 +35,10 @@ type Column struct {
ID string `json:"id"` // 列 ID
Name string `json:"name"` // 列名
Type ColumnType `json:"type"` // 列类型
Icon string `json:"icon"` // 列图标
Wrap bool `json:"wrap"` // 是否换行
// 以下是某些列类型的特有属性
AttributeViewID string `json:"attributeViewId"` // 关联的属性视图 ID
RelationColumnID string `json:"relationColumnId"` // 目标关联列 ID