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

View file

@ -32,12 +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"` // 是否换行
Visible bool `json:"visible"` // 是否可见
ID string `json:"id"` // 列 ID
Name string `json:"name"` // 列名
Type ColumnType `json:"type"` // 列类型
Icon string `json:"icon"` // 列图标
Wrap bool `json:"wrap"` // 是否换行
Hidden bool `json:"hidden"` // 是否隐藏
// 以下是某些列类型的特有属性