package common // 基本类型 type Base struct { ID int `json:"id"` Name string `json:"name"` } type BaseWithColor struct { ID int `json:"id"` Name string `json:"name"` Color string `json:"color"` }