13 lines
233 B
TypeScript
13 lines
233 B
TypeScript
|
|
import type { Model } from "./base/model"
|
||
|
|
import type { ProductSku } from "./product_sku"
|
||
|
|
|
||
|
|
export type Product = Model & {
|
||
|
|
code: string
|
||
|
|
name: string
|
||
|
|
description?: string
|
||
|
|
sort: number
|
||
|
|
status: number
|
||
|
|
|
||
|
|
skus?: ProductSku[]
|
||
|
|
}
|