🎨 Update av

This commit is contained in:
Daniel 2023-06-10 16:56:20 +08:00
parent 4bc4684163
commit 639f083d9a
No known key found for this signature in database
GPG key ID: 86211BA83DF03017

View file

@ -18,8 +18,13 @@ package av
type Cell struct {
ID string `json:"id"`
Value string `json:"value"`
Value *CellValue `json:"value"`
RenderValue interface{} `json:"renderValue"`
Color string `json:"color"`
BgColor string `json:"bgColor"`
}
type CellValue struct {
Type ColumnType `json:"type"`
Value interface{} `json:"value"`
}