摘要:
package main import ( "fmt" "github.com/gin-gonic/gin" "net/http" ) //type User struct { // Name string `json:"name" ` // Age int64 `json:"age"` //} t 阅读全文
摘要:
package main import ( "github.com/gin-gonic/gin" "net/http" ) type UserInfo struct { Message string Name string Age int } type Student struct { Name s 阅读全文
摘要:
package main import ( "fmt" "github.com/mitchellh/mapstructure" ) type User struct { Name string Age int } func MapToStruct() { mapInstance := make(ma 阅读全文