Files
admin/src/models/product.ts

14 lines
284 B
TypeScript
Raw Normal View History

2026-04-08 15:41:32 +08:00
import type { ProductCode } from "@/lib/base"
import type { Model } from "./base/model"
import type { ProductSku } from "./product_sku"
export type Product = Model & {
2026-04-08 15:41:32 +08:00
code: ProductCode
name: string
description?: string
sort: number
status: number
skus?: ProductSku[]
}