fix: แก้ type

This commit is contained in:
Net 2024-06-17 17:57:20 +07:00
parent e5a36f7c3b
commit 6c54711271

View file

@ -81,6 +81,7 @@ export interface ProductOnWork {
}
export interface ProductList {
remark: string;
updatedAt: string;
updateBy: string;
createdAt: string;
@ -90,7 +91,7 @@ export interface ProductList {
serviceCharge: number;
agentPrice: number;
price: number;
process: string;
process: number;
detail: string;
name: string;
code: string;
@ -99,16 +100,19 @@ export interface ProductList {
}
export interface ProductCreate {
productTypeId: string;
remark: string;
serviceCharge: number;
agentPrice: number;
price: number;
process: string;
process: number;
detail: string;
name: string;
code: string;
}
export interface ProductUpdate {
remark: string;
serviceCharge: number;
agentPrice: number;
price: number;