shikeying
2024-01-11 3b67e947e36133e2a40eb2737b15ea375e157ea0
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
package com.walker.support.milvus;
 
import java.util.List;
 
public class Query {
 
    private String tableName;
    private String metricType;  // 矩阵类型,暂时固定值
    private String vectorName;
 
    private List<String> outFieldList = null;
    private List<List<Float>> searchVectors = null;
 
    private int topK = 10;
    private String searchParam = "{\"nprobe\":10}";
 
    private String fieldPrimaryKey; // 主键名称
 
    public String getFieldPrimaryKey() {
        return fieldPrimaryKey;
    }
 
    public void setFieldPrimaryKey(String fieldPrimaryKey) {
        this.fieldPrimaryKey = fieldPrimaryKey;
    }
 
 
    public String getTableName() {
        return tableName;
    }
 
    public void setTableName(String tableName) {
        this.tableName = tableName;
    }
 
    public String getMetricType() {
        return metricType;
    }
 
    public void setMetricType(String metricType) {
        this.metricType = metricType;
    }
 
    public String getVectorName() {
        return vectorName;
    }
 
    public void setVectorName(String vectorName) {
        this.vectorName = vectorName;
    }
 
    public List<String> getOutFieldList() {
        return outFieldList;
    }
 
    public void setOutFieldList(List<String> outFieldList) {
        this.outFieldList = outFieldList;
    }
 
    public List<List<Float>> getSearchVectors() {
        return searchVectors;
    }
 
    public void setSearchVectors(List<List<Float>> searchVectors) {
        this.searchVectors = searchVectors;
    }
 
    public int getTopK() {
        return topK;
    }
 
    public void setTopK(int topK) {
        this.topK = topK;
    }
 
    public String getSearchParam() {
        return searchParam;
    }
 
    public void setSearchParam(String searchParam) {
        this.searchParam = searchParam;
    }
 
    @Override
    public String toString(){
        return new StringBuilder("[tableName=")
                .append(this.tableName).append(", vectorName=")
                .append(this.vectorName).append(", searchVectors=")
                .append(this.searchVectors).append("]").toString();
    }
}