feat: add product document list (#64)

* feat: product => document select
This commit is contained in:
Methapon Metanipat 2024-11-08 10:22:50 +07:00 committed by GitHub
parent e501706e88
commit f3fdaac2b1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 226 additions and 5 deletions

View file

@ -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;
}