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

14 lines
251 B
TypeScript

import type { Product, SpecData } from './product'
/** 购物车项 */
export interface CartItem {
id: number
userId: number
productId: number
specDataId: number
quantity: number
product: Product
specData: SpecData
checked: boolean
}