diff --git a/src/stores/product-service/types.ts b/src/stores/product-service/types.ts index 1be71e2b..543c8b08 100644 --- a/src/stores/product-service/types.ts +++ b/src/stores/product-service/types.ts @@ -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;