This commit is contained in:
Daniel 2023-06-08 22:07:27 +08:00
parent f9432260aa
commit 2454da77a0
No known key found for this signature in database
GPG key ID: 86211BA83DF03017

View file

@ -32,11 +32,12 @@ const (
// Column 描述了属性视图的基础结构。
type Column struct {
ID string `json:"id"` // 列 ID
Name string `json:"name"` // 列名
Type ColumnType `json:"type"` // 列类型
Icon string `json:"icon"` // 列图标
Wrap bool `json:"wrap"` // 是否换行
ID string `json:"id"` // 列 ID
Name string `json:"name"` // 列名
Type ColumnType `json:"type"` // 列类型
Icon string `json:"icon"` // 列图标
Wrap bool `json:"wrap"` // 是否换行
Visible bool `json:"visible"` // 是否可见
// 以下是某些列类型的特有属性