返回值变小写

This commit is contained in:
giaogiao 2023-09-05 17:57:32 +08:00
parent 351fbba30f
commit 1c0ceb29e7
1 changed files with 3 additions and 3 deletions

View File

@ -3,9 +3,9 @@ package res
import "encoding/json"
type response struct {
Code int
Message string
Uuid string
Code int `json:"code"`
Message string `json:"message"`
Uuid string `json:"uuid"`
Data interface{} `json:"data,omitempty"`
}