type Teacher struct {
   Name    string `json:"-"`           //指定这个变量不参与JSON编码
   Subject string `json:"subjectName"` //指定字段在JSON编码中的别名
   Age     int    `json:"age,string"`  //指定字段的别名并修改字段类型

   Address string `json:"address,omitempty"` //空字段自动忽略

   gender  string //小写字母开头的变量名 会被JSON编码忽略
}