Newer
Older
safe_production_front / src / components / AddressSelect / address-interface.ts
wangxitong on 16 Aug 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
}