From 6c54711271232fb82c938f1f15b6c8fdfc75dff8 Mon Sep 17 00:00:00 2001 From: Net <93821485+somnetsak123@users.noreply.github.com> Date: Mon, 17 Jun 2024 17:57:20 +0700 Subject: [PATCH] =?UTF-8?q?fix:=20=E0=B9=81=E0=B8=81=E0=B9=89=20=20type?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/stores/product-service/types.ts | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) 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;