14 lines
251 B
TypeScript
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
|
|
}
|