diff --git a/src/stores/product-service/types.ts b/src/stores/product-service/types.ts index c6cf40c5..cef426f2 100644 --- a/src/stores/product-service/types.ts +++ b/src/stores/product-service/types.ts @@ -1,10 +1,12 @@ +import { Status } from '../types'; + export type ProductGroup = { id: string; code: string; name: string; detail: string; remark: string; - status: string; + status: Status; createdBy: string; createdAt: string; updateBy: string; @@ -15,6 +17,7 @@ export interface ProductGroupCreate { remark: string; detail: string; name: string; + code: string; } export interface ProductGroupUpdate {