Fixed field ids coming in the response as value to give document response

This commit is contained in:
harish
2024-11-07 14:28:15 +05:30
parent daef61f4c9
commit c60b795ac7
2 changed files with 216 additions and 69 deletions

View File

@@ -1,10 +1,11 @@
package net.gepafin.tendermanagement.model.response;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
import lombok.Data;
@Data
public class CriteriaMappedField {
private String id;
private String fieldLabel;
private String fieldValue;
private Object fieldValue;
}