This commit is contained in:
白茶清欢 2023-11-05 22:19:04 +08:00
parent 482ef9296e
commit 84811e426c
1 changed files with 2 additions and 2 deletions

View File

@ -24,6 +24,6 @@ type Code struct {
//
// Date : 00:31 2023/11/5
type CodeReason struct {
Reason map[string]string `json:"reason"` // 错误原因: 语言 => 原因
Solution map[string]string `json:"solution"` // 解决步骤. 语言 => 解决步骤
Reason map[string]string `json:"reason"` // 错误原因: 语言 => 原因
Solution map[string][]string `json:"solution"` // 解决步骤. 语言 => 解决步骤
}