Changes in application evaluation
This commit is contained in:
@@ -7,11 +7,9 @@ import java.util.List;
|
||||
@Data
|
||||
public class AmendmentDetailsRequest {
|
||||
|
||||
Long amendmentId;
|
||||
private String fieldId;
|
||||
|
||||
String amendmentDocuments;
|
||||
private Long amendmentId;
|
||||
|
||||
Boolean valid;
|
||||
|
||||
List<AmendmentFormFieldRequest> formFieldDocuments;
|
||||
private Boolean valid;
|
||||
}
|
||||
|
||||
@@ -1,8 +1,12 @@
|
||||
package net.gepafin.tendermanagement.model.request;
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
|
||||
@Data
|
||||
@AllArgsConstructor
|
||||
@NoArgsConstructor
|
||||
public class AmendmentFormFieldRequest {
|
||||
|
||||
private String fieldId;
|
||||
|
||||
@@ -7,13 +7,9 @@ import java.util.List;
|
||||
@Data
|
||||
public class AmendmentDocumentResponseBean {
|
||||
|
||||
Long amendmentId;
|
||||
|
||||
List<DocumentResponseBean> amendmentDocuments;
|
||||
|
||||
Boolean valid;
|
||||
|
||||
String amendmentNotes;
|
||||
|
||||
List<FieldResponse> formFieldDocuments;
|
||||
private Long amendmentId;
|
||||
private String fieldId;
|
||||
private String label;
|
||||
private Boolean valid;
|
||||
private List<DocumentResponseBean> fileDetail ;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user