Bladeren bron

added Entity dataservice

Qiao Hui 1 jaar geleden
bovenliggende
commit
e94f03aa58
1 gewijzigde bestanden met toevoegingen van 2 en 2 verwijderingen
  1. 2 2
      src/FisAppQueryModule/entities/EntityData.ts

+ 2 - 2
src/FisAppQueryModule/entities/EntityData.ts

@@ -62,7 +62,7 @@ export class EntityData implements EntityDataType{
 
 @ObjectType()
 @ArgsType() 
-export class LeaveHistoryUnion {
+export class EntityDataUnion {
 
     @Field(type=> SummaryResponse, { nullable: true})
     SummaryResponse?:SummaryResponse;
@@ -71,5 +71,5 @@ export class LeaveHistoryUnion {
     StatusResponse?:StatusResponse;
 
     @Field(type=> EntityDataMessage, { nullable: true})
-    LeaveHistoryMessage?:EntityDataMessage
+    EntityDataMessage?:EntityDataMessage
 }