Done ticket GEPAFINBE-234

This commit is contained in:
rajesh
2025-07-08 19:31:24 +05:30
parent 0bc4cfd573
commit 67c074d947
7 changed files with 183 additions and 0 deletions

View File

@@ -491,6 +491,7 @@ public class AssignedApplicationsDao {
response.setCreatedDate(view.getCreatedDate());
response.setUpdatedDate(view.getUpdatedDate());
response.setEmailSendResponse(view.getEmailSendResponse());
response.setAssignedUserName(view.getAssignedUserName());
return response;
}

View File

@@ -115,4 +115,7 @@ public class ApplicationFormView {
@Column(name = "call_start_time")
private LocalTime callStartTime;
@Column(name = "INSTRUCTOR_NAME")
private String instructorName;
}

View File

@@ -67,4 +67,7 @@ public class AssignedApplicationsView{
@Column(name = "HUB_ID")
private Long hubId;
@Column(name="ASSIGNED_USER_NAME")
private String assignedUserName;
}

View File

@@ -21,6 +21,7 @@ public class AssignedApplicationViewResponse extends BaseBean {
private Long protocolNumber;
private String callName;
private String companyName;
private String assignedUserName;
private List<EmailSendResponse> emailSendResponse;