1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
| 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 + '\'' +
| '}';
| }
| }
|
|