Newer
Older
adminAccountabilityFront / src / components / AddressSelect / address-interface.ts
liyaguang on 11 Sep 2023 214 bytes first
// 地址对象
export interface IAddress {
  country: string
  countryName: string
  province: string
  provinceName: string
  city: string
  cityName: string
  area: string
  areaName: string
  address: string
}