🎨 Update av

This commit is contained in:
Daniel 2023-07-01 12:13:58 +08:00
parent 86c177e03c
commit 550b4bcae7
No known key found for this signature in database
GPG key ID: 86211BA83DF03017
2 changed files with 17 additions and 7 deletions

View file

@ -30,12 +30,12 @@ type Cell struct {
}
type Value struct {
Block *ValueBlock `json:"block"`
Text *ValueText `json:"text"`
Number *ValueNumber `json:"number"`
Date *ValueDate `json:"date"`
Select *ValueSelect `json:"select"`
MSelect []*ValueSelect `json:"mSelect"`
Block *ValueBlock `json:"block,omitempty"`
Text *ValueText `json:"text,omitempty"`
Number *ValueNumber `json:"number,omitempty"`
Date *ValueDate `json:"date,omitempty"`
Select *ValueSelect `json:"select,omitempty"`
MSelect []*ValueSelect `json:"mSelect,omitempty"`
}
func (value *Value) ToJSONString() string {