fix: แก้ type
This commit is contained in:
parent
e5a36f7c3b
commit
6c54711271
1 changed files with 6 additions and 2 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue