example_model_es
public class ChangeLog { @JsonProperty("newValue") private String newValue; @JsonProperty("fieldName") private String fieldName; @JsonProperty("@timestamp") private String timestamp; @JsonProperty("objectId") private String objectId; public String getNewValue() { return newValue; } public void setNewValue(String newValue) { this.newValue = newValue; } public String getFieldName() { return fieldName; } public void setFieldName(String fieldName) { this.fieldName = fieldName; } public String getTimestamp() { return timestamp; } public void setTimestamp(String timestamp) { this.timestamp = timestamp; } public String getObjectId() { return objectId; } public void setObjectId(String objectId) { this.objectId = objectId; } }