Updated code
This commit is contained in:
@@ -204,7 +204,8 @@ public class ApplicationEvaluationDao {
|
|||||||
documentResponseBean.setFilePath(documentEntity.getFilePath());
|
documentResponseBean.setFilePath(documentEntity.getFilePath());
|
||||||
documentResponseBean.setCreatedDate(documentEntity.getCreatedDate());
|
documentResponseBean.setCreatedDate(documentEntity.getCreatedDate());
|
||||||
documentResponseBean.setUpdatedDate(documentEntity.getUpdatedDate());
|
documentResponseBean.setUpdatedDate(documentEntity.getUpdatedDate());
|
||||||
evaluationDocResponse.setFileValue(documentResponseBean);
|
documentResponseBean.setDocumentAttachmentId(documentEntity.getDocumentAttachmentId());
|
||||||
|
evaluationDocResponse.setFileValue(List.of(documentResponseBean));
|
||||||
evaluationDocResponse.setNameValue(doc.getNameValue());
|
evaluationDocResponse.setNameValue(doc.getNameValue());
|
||||||
evaluationDocResponse.setValid(doc.getValid());
|
evaluationDocResponse.setValid(doc.getValid());
|
||||||
evaluationDocResponse.setFieldId(doc.getFieldId());
|
evaluationDocResponse.setFieldId(doc.getFieldId());
|
||||||
|
|||||||
@@ -2,11 +2,13 @@ package net.gepafin.tendermanagement.model.response;
|
|||||||
|
|
||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
@Data
|
@Data
|
||||||
public class EvaluationDocumentResponse {
|
public class EvaluationDocumentResponse {
|
||||||
private String fieldId;
|
private String fieldId;
|
||||||
private String nameValue;
|
private String nameValue;
|
||||||
private Boolean valid;
|
private Boolean valid;
|
||||||
private DocumentResponseBean fileValue ;
|
private List<DocumentResponseBean> fileValue ;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user