From 18bbe3ad17315cc81b97b73f39d656d3f0ae5ad0 Mon Sep 17 00:00:00 2001 From: Net <93821485+somnetsak123@users.noreply.github.com> Date: Tue, 11 Jun 2024 14:09:59 +0700 Subject: [PATCH] =?UTF-8?q?feat:=20=E0=B9=80=E0=B8=9E=E0=B8=B4=E0=B9=88?= =?UTF-8?q?=E0=B8=A1=20=20type=20=E0=B8=82=E0=B8=AD=E0=B8=87=20Product=20G?= =?UTF-8?q?roup?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/stores/product-service/types.ts | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/src/stores/product-service/types.ts b/src/stores/product-service/types.ts index e69de29b..c6cf40c5 100644 --- a/src/stores/product-service/types.ts +++ b/src/stores/product-service/types.ts @@ -0,0 +1,24 @@ +export type ProductGroup = { + id: string; + code: string; + name: string; + detail: string; + remark: string; + status: string; + createdBy: string; + createdAt: string; + updateBy: string; + updatedAt: string; +}; + +export interface ProductGroupCreate { + remark: string; + detail: string; + name: string; +} + +export interface ProductGroupUpdate { + remark: string; + detail: string; + name: string; +}