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 {
|
export interface ProductList {
|
||||||
|
remark: string;
|
||||||
updatedAt: string;
|
updatedAt: string;
|
||||||
updateBy: string;
|
updateBy: string;
|
||||||
createdAt: string;
|
createdAt: string;
|
||||||
|
|
@ -90,7 +91,7 @@ export interface ProductList {
|
||||||
serviceCharge: number;
|
serviceCharge: number;
|
||||||
agentPrice: number;
|
agentPrice: number;
|
||||||
price: number;
|
price: number;
|
||||||
process: string;
|
process: number;
|
||||||
detail: string;
|
detail: string;
|
||||||
name: string;
|
name: string;
|
||||||
code: string;
|
code: string;
|
||||||
|
|
@ -99,16 +100,19 @@ export interface ProductList {
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface ProductCreate {
|
export interface ProductCreate {
|
||||||
|
productTypeId: string;
|
||||||
|
remark: string;
|
||||||
serviceCharge: number;
|
serviceCharge: number;
|
||||||
agentPrice: number;
|
agentPrice: number;
|
||||||
price: number;
|
price: number;
|
||||||
process: string;
|
process: number;
|
||||||
detail: string;
|
detail: string;
|
||||||
name: string;
|
name: string;
|
||||||
code: string;
|
code: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface ProductUpdate {
|
export interface ProductUpdate {
|
||||||
|
remark: string;
|
||||||
serviceCharge: number;
|
serviceCharge: number;
|
||||||
agentPrice: number;
|
agentPrice: number;
|
||||||
price: number;
|
price: number;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue