Newer
Older
smart-metering-front / src / components / AddressSelect / address-interface.ts
// 地址对象
export interface IAddress {
  country: string
  countryName: string
  province: string
  provinceName: string
  city: string
  cityName: string
  area: string
  areaName: string
  address: string
}