Newer
Older
IntegratedFront / src / components / AddressSelect / address-interface.ts
lyg on 1 Nov 214 bytes first
// 地址对象
export interface IAddress {
  country: string
  countryName: string
  province: string
  provinceName: string
  city: string
  cityName: string
  area: string
  areaName: string
  address: string
}