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