feat dict的value改为any

This commit is contained in:
timerzz 2024-09-03 14:44:55 +08:00
parent 6cdbba3e55
commit 20e43fc5a5

View File

@ -3,5 +3,5 @@ package utils
type Dict struct { type Dict struct {
Key string `json:"key"` Key string `json:"key"`
Title string `json:"title"` Title string `json:"title"`
Value string `json:"value"` Value any `json:"value"`
} }