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; +}