Files
admin/src/models/product.ts
2026-04-08 15:41:32 +08:00

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[]
}