Newer
Older
CorrOLFront / src / components / AddressSelect / address-interface.ts
tanyue on 5 Mar 2024 214 bytes 20240305 初始提交
// 地址对象
export interface IAddress {
  country: string
  countryName: string
  province: string
  provinceName: string
  city: string
  cityName: string
  area: string
  areaName: string
  address: string
}