Code for amendment module
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
package net.gepafin.tendermanagement.model.request;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class AmendmentFieldRequest {
|
||||
|
||||
private String fieldId;
|
||||
private String nameValue;
|
||||
private String fileValue;
|
||||
private Boolean isValid = false;
|
||||
|
||||
}
|
||||
@@ -11,4 +11,5 @@ public class ApplicationAmendmentRequest {
|
||||
private Long responseDays;
|
||||
private Boolean isSendNotification;
|
||||
private Boolean isSendEmail;
|
||||
private List<AmendmentFieldRequest> amendmentDocument;
|
||||
}
|
||||
|
||||
@@ -8,4 +8,5 @@ import lombok.Data;
|
||||
public class ApplicationAmendmentRequestBean {
|
||||
private String note;
|
||||
private List<ApplicationFormFieldRequestBean> applicationFormFields;
|
||||
private List<AmendmentFieldRequest> amendmentDocuments;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user