Newer
Older
xc-metering-front / src / components / AddressSelect / address-interface.ts
liyaguang on 19 Jul 2023 214 bytes first commit
// 地址对象
export interface IAddress {
  country: string
  countryName: string
  province: string
  provinceName: string
  city: string
  cityName: string
  area: string
  areaName: string
  address: string
}