feat: add product document list (#64)
* feat: product => document select
This commit is contained in:
parent
e501706e88
commit
f3fdaac2b1
3 changed files with 226 additions and 5 deletions
|
|
@ -169,6 +169,7 @@ export interface Product {
|
|||
id: string;
|
||||
imageUrl: string;
|
||||
installmentNo: number;
|
||||
document?: string[];
|
||||
}
|
||||
|
||||
export interface ProductCreate {
|
||||
|
|
@ -186,6 +187,7 @@ export interface ProductCreate {
|
|||
detail: string;
|
||||
name: string;
|
||||
code: string;
|
||||
document?: string[];
|
||||
image?: File;
|
||||
status?: Status;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue