Updated Code

This commit is contained in:
nisha
2024-12-30 13:43:49 +05:30
42 changed files with 1188 additions and 117 deletions

View File

@@ -18,6 +18,7 @@ public class ApplicationAmendmentRequestResponse {
private Long protocolNumber;
private String callName;
private String beneficiaryName;
private String companyName;
private List<AmendmentFormFieldResponse> formFields;
private List<ApplicationFormFieldResponseBean> applicationFormFields;
private List<DocumentResponseBean> amendmentDocuments;

View File

@@ -26,6 +26,8 @@ public class ApplicationEvaluationResponse {
private LocalDateTime createdDate;
private LocalDateTime updatedDate;
private String beneficiary;
private Long assignedUserId;
private String assignedUserName;
private Long protocolNumber;
private String callName;
private String motivation;

View File

@@ -33,4 +33,8 @@ public class ApplicationResponse{
private Long protocolNumber;
private Long assignedUserId;
private String assignedUserName;
}

View File

@@ -0,0 +1,21 @@
package net.gepafin.tendermanagement.model.response;
import lombok.Data;
import net.gepafin.tendermanagement.model.BaseBean;
@Data
public class NotificationResponse extends BaseBean {
private Long userId;
private String title;
private String message;
private String status;
private Long companyId;
private String redirectUrl;
private String notificationType;
}

View File

@@ -40,6 +40,7 @@ public class UserResponseBean extends BaseBean {
private List<CompanyResponse> companies;
private Boolean privacy;
private Boolean terms;
private Boolean marketing;