Resolved conflicts for GEPAFINBE-31.
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
package net.gepafin.tendermanagement.model.request;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonValue;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class AmendmentFormField {
|
||||
|
||||
private String fieldId;
|
||||
|
||||
private String fieldValue;
|
||||
|
||||
private String isUploadedBy;
|
||||
|
||||
|
||||
public enum AmendmentIsUploadedByEnum {
|
||||
PRE_INSTRUCTOR("PRE_INSTRUCTOR"),
|
||||
BENEFICIARY("BENEFICIARY");
|
||||
|
||||
private String value;
|
||||
|
||||
AmendmentIsUploadedByEnum(String value) {
|
||||
this.value = value;
|
||||
}
|
||||
|
||||
@JsonValue
|
||||
public String getValue() {
|
||||
return value;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
@@ -1,9 +1,11 @@
|
||||
package net.gepafin.tendermanagement.model.request;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class ApplicationAmendmentRequestBean {
|
||||
private String note;
|
||||
private ApplicationFormFieldRequestBean applicationFormFields;
|
||||
private List<ApplicationFormFieldRequestBean> applicationFormFields;
|
||||
}
|
||||
|
||||
@@ -12,4 +12,5 @@ public class ApplicationEvaluationRequest {
|
||||
private List<FieldRequest> files;
|
||||
private String note;
|
||||
private ApplicationStatusForEvaluation applicationStatus;
|
||||
private String motivation;
|
||||
}
|
||||
|
||||
@@ -13,6 +13,7 @@ public class EmailConfig {
|
||||
private String domain;
|
||||
private String mailgunApiUrl;
|
||||
private String pecApiUrl;
|
||||
private String url;
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,40 @@
|
||||
package net.gepafin.tendermanagement.model.request;
|
||||
|
||||
import lombok.Data;
|
||||
import net.gepafin.tendermanagement.enums.EmailScenarioTypeEnum;
|
||||
import net.gepafin.tendermanagement.enums.EmailEntityTypeEnum;
|
||||
import net.gepafin.tendermanagement.enums.EmailServiceTypeEnum;
|
||||
import net.gepafin.tendermanagement.enums.RecipientTypeEnum;
|
||||
|
||||
@Data
|
||||
public class EmailLogRequest {
|
||||
|
||||
private EmailScenarioTypeEnum emailType;
|
||||
|
||||
private RecipientTypeEnum recipientType;
|
||||
|
||||
private Long recipientId;
|
||||
|
||||
private String emailSubject;
|
||||
|
||||
private String emailBody;
|
||||
|
||||
private String sendStatus;
|
||||
|
||||
private String errorMessage;
|
||||
|
||||
private Long userId;
|
||||
|
||||
private String emailServiceResponse;
|
||||
|
||||
private EmailServiceTypeEnum emailServiceType;
|
||||
|
||||
private String recipientEmails;
|
||||
|
||||
private Long applicatioId;
|
||||
|
||||
private Long amendmentId;
|
||||
|
||||
private Long callId;
|
||||
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
package net.gepafin.tendermanagement.model.request;
|
||||
|
||||
import lombok.Data;
|
||||
import net.gepafin.tendermanagement.entities.EmailLogEntity;
|
||||
|
||||
@Data
|
||||
public class EmailTrackingRequest {
|
||||
|
||||
private EmailLogEntity emailLogEntity;
|
||||
|
||||
private Long userId;
|
||||
|
||||
private Long entityId;
|
||||
|
||||
private String entityType;
|
||||
}
|
||||
Reference in New Issue
Block a user