指定json中的key名字:
指定数据类型, string number, boolean
忽略空值(值不为空, 不忽略)
忽略字段 "-" (无论有没有值, 都忽略)
type user struct {
Id int64 `json:"id,string,omitempty"`
}