/** * 市级行政区 */ export declare class City { /** * 市级行政区Id */ id: number; /** * 市级行政区名称 */ name: string; /** * 所属省级行政区Id */ provinceId: number; }