JewelryMall/miniprogram/types/user.ts
2026-02-14 19:29:15 +08:00

22 lines
328 B
TypeScript

/** 用户 */
export interface User {
id: number
openId: string
nickname: string
avatar: string
createdAt: string
}
/** 收货地址 */
export interface Address {
id: number
userId: number
name: string
phone: string
province: string
city: string
district: string
detail: string
isDefault: boolean
}