diff --git a/src/stores/product-service/types.ts b/src/stores/product-service/types.ts index f34f143e..f0dba81f 100644 --- a/src/stores/product-service/types.ts +++ b/src/stores/product-service/types.ts @@ -12,27 +12,16 @@ export interface Service { name: string; code: string; id: string; - workOnService: WorkOnService[]; + work: Work[]; imageUrl: string; } -export interface WorkOnService { - work: Work; - productId: string; - updatedAt: string; - updateBy: string; - createdAt: string; - createdBy: string; - serviceId: string; - workId: string; - order: number; -} - export interface Work { updatedAt: string; updateBy: string; createdAt: string; createdBy: string; + serviceId: string; status: string; attributes: string; name: string; @@ -40,7 +29,11 @@ export interface Work { } export interface ServiceCreate { - workId: string[]; + work: { + attributes: Attributes; + productId: string[]; + name: string; + }[]; attributes: Attributes; detail: string; name: string;