Resolved conflicts of PR GEPAFINBE-6139 (Reviewed Evaluation Process)

This commit is contained in:
rajesh
2025-10-13 21:50:26 +05:30
parent f3d297309c
commit c5cc2988ca
42 changed files with 563 additions and 151 deletions

View File

@@ -0,0 +1,13 @@
package net.gepafin.tendermanagement.model.request;
import lombok.Data;
import java.util.Map;
@Data
public class ApplicationTechnicalEvaluationRejectedRequest {
private Map<String, Object> emailJson;
}

View File

@@ -2,6 +2,7 @@ package net.gepafin.tendermanagement.model.request;
import lombok.Data;
import java.time.LocalDateTime;
import java.util.List;
@Data
@@ -32,6 +33,7 @@ public class AppointmentCreationRequest {
private String codProdotto;
private String codOperazione;
private Nota nota;
private LocalDateTime dataAppuntamento;
}
@Data

View File

@@ -2,11 +2,14 @@ package net.gepafin.tendermanagement.model.request;
import lombok.Data;
import java.time.LocalDateTime;
@Data
public class CreateAppointmentRequest {
private Double importoBreveTermine;
private Integer durataMesiFinanziamento;
private Nota nota;
private LocalDateTime dataAppuntamento;
@Data
public static class Nota {

View File

@@ -33,4 +33,5 @@ public class ApplicationAmendmentRequestResponse {
private ApplicationAmendmentRequestEnum status;
private String emailTemplate;
private List<EmailSendResponse> emailSendResponse;
private List<DocumentResponseBean> amendmentInitialDocuments;
}

View File

@@ -3,6 +3,7 @@ package net.gepafin.tendermanagement.model.response;
import lombok.Data;
import java.time.LocalDateTime;
import java.util.List;
@Data
public class CommunicationResponseBean {
@@ -23,6 +24,8 @@ public class CommunicationResponseBean {
private Long receiverUserId;
private Long amendmentId;
private List<DocumentResponseBean> documents;
public CommunicationResponseBean(LocalDateTime commentedDate, String comment, String title, LocalDateTime createdDate, LocalDateTime updatedDate, Long amendmentId, Long id) {