package server import "xiaoniaokuaiyan.com/xiaoniao/entity" type CityService interface { GetOpenCityList() (interface{}, error) GetCityListById([]int) (interface{}, error) GetCountyByCityId(int) (interface{}, error) GetCityAllList() (interface{}, error) GetCityByShortName(shortName string) (entity.City, error) GetCityOpenCounty() (interface{}, error) }