mirror of
https://gitee.com/johng/gf.git
synced 2024-12-03 04:37:49 +08:00
20 lines
295 B
Go
20 lines
295 B
Go
package main
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
"github.com/gogf/gf/container/gset"
|
|
)
|
|
|
|
func main() {
|
|
b := []byte(`{"Id":1,"Name":"john","Scores":[100,99,98]}`)
|
|
type Student struct {
|
|
Id int
|
|
Name string
|
|
Scores *gset.IntSet
|
|
}
|
|
s := Student{}
|
|
json.Unmarshal(b, &s)
|
|
fmt.Println(s)
|
|
}
|