package com.iplatform.milvus; public class ScoreText { public double getScore() { return score; } public void setScore(double score) { this.score = score; } public String getText() { return text; } public void setText(String text) { this.text = text; } private double score; private String text; @Override public String toString() { return "ScoreText{" + "score=" + score + ", text='" + text + '\'' + '}'; } }