package request type AddCountry struct { Name string `json:"name"` // 国家名称 } type DeleteCountry struct { Id int `json:"id"` // 国家ID } type UpdateCountry struct { Id int `json:"id"` // 国家ID Name string `json:"name"` // 国家名称 }