fix: แก้ type Service

This commit is contained in:
Net 2024-06-18 14:20:08 +07:00
parent 4f8f3d3fa3
commit fe95db7983

View file

@ -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;