Resolved conflicts

This commit is contained in:
nisha
2024-11-15 20:06:33 +05:30
23 changed files with 362 additions and 242 deletions

View File

@@ -1,8 +1,10 @@
package net.gepafin.tendermanagement.model.response;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import lombok.Data;
@Data
@JsonIgnoreProperties(ignoreUnknown = true)
public class AmendmentFormFieldResponse {
private String fieldId;
private String label;

View File

@@ -14,8 +14,8 @@ public class ApplicationAmendmentRequestResponse {
private String note;
private Long responseDays;
private LocalDateTime startDate;
private boolean isSendNotification;
private boolean isSendEmail;
private Boolean isSendNotification;
private Boolean isSendEmail;
private Long protocolNumber;
private String callName;
private String beneficiaryName;

View File

@@ -54,4 +54,5 @@ public class CallDetailsResponseBean {
private LocalDateTime updatedDate;
private Long preferredCallId;
}

View File

@@ -73,6 +73,7 @@ public class CallResponse {
private String currentStep;
private Long preferredCallId;
}