JewelryMall/miniprogram/types/mold.ts
2026-02-14 19:29:15 +08:00

12 lines
194 B
TypeScript

/** 版房信息 */
export interface MoldInfo {
id: number
name: string
styleNo?: string
barcodeNo?: string
style?: string
images: string[]
createdAt: string
updatedAt: string
}