feat 添加dict

This commit is contained in:
timerzz 2024-09-03 14:41:20 +08:00
parent 5ce4d0000b
commit 6cdbba3e55

7
structs/utils/dict.go Normal file
View File

@ -0,0 +1,7 @@
package utils
type Dict struct {
Key string `json:"key"`
Title string `json:"title"`
Value string `json:"value"`
}