This commit is contained in:
Daniel 2023-08-03 23:21:11 +08:00
parent 2baa74fb39
commit d5bceca2a4
No known key found for this signature in database
GPG key ID: 86211BA83DF03017
4 changed files with 18 additions and 12 deletions

View file

@ -76,7 +76,8 @@ type Key struct {
// 以下是某些列类型的特有属性
Options []*KeySelectOption `json:"options,omitempty"` // 选项列表
Options []*KeySelectOption `json:"options,omitempty"` // 选项列表
NumberFormat NumberFormat `json:"numberFormat"` // 列数字格式化
}
func NewKey(id, name string, keyType KeyType) *Key {

View file

@ -353,7 +353,8 @@ type TableColumn struct {
// 以下是某些列类型的特有属性
Options []*KeySelectOption `json:"options,omitempty"` // 选项列表
Options []*KeySelectOption `json:"options,omitempty"` // 选项列表
NumberFormat NumberFormat `json:"numberFormat"` // 列数字格式化
}
type TableRow struct {