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