Added two fields in the response of get amendment api

This commit is contained in:
Piyush
2025-02-19 16:12:38 +05:30
parent 869c8f3f7d
commit 194cf6a97f
2 changed files with 4 additions and 1 deletions

View File

@@ -200,6 +200,8 @@ public class AssignedApplicationsDao {
}
assignedApplicationsResponse.setNumberOfCheck(application.getCall().getNumberOfCheck());
assignedApplicationsResponse.setAppointmentTemplateId(application.getCall().getAppointmentTemplateId());
assignedApplicationsResponse.setNdg(application.getNdg());
assignedApplicationsResponse.setAppointmentId(application.getAppointmentId());
return assignedApplicationsResponse;
}

View File

@@ -26,7 +26,8 @@ public class AssignedApplicationsResponse extends BaseBean {
private Long numberOfCheck;
private Long appointmentTemplateId;
private EvaluationVersionEnum evaluationVersion;
private String ndg;
private String appointmentId;
}