|
@@ -40,6 +40,8 @@ public class RecallMaterialScoreVO {
|
|
|
private String cover; // 素材封面(第一张图片)
|
|
private String cover; // 素材封面(第一张图片)
|
|
|
private List<String> imageList; // 素材图片列表
|
|
private List<String> imageList; // 素材图片列表
|
|
|
private Map<String, Object> deconstruct; // 解构信息
|
|
private Map<String, Object> deconstruct; // 解构信息
|
|
|
|
|
+ private Short sourceType; // 来源类型:1=外部合作, 2=内部素材
|
|
|
|
|
+ private String source; // 来源中文标签
|
|
|
|
|
|
|
|
// 评分
|
|
// 评分
|
|
|
private Double sim; // 余弦相似度 [0, 1]
|
|
private Double sim; // 余弦相似度 [0, 1]
|
|
@@ -102,6 +104,10 @@ public class RecallMaterialScoreVO {
|
|
|
public void setImageList(List<String> imageList) { this.imageList = imageList; }
|
|
public void setImageList(List<String> imageList) { this.imageList = imageList; }
|
|
|
public Map<String, Object> getDeconstruct() { return deconstruct; }
|
|
public Map<String, Object> getDeconstruct() { return deconstruct; }
|
|
|
public void setDeconstruct(Map<String, Object> deconstruct) { this.deconstruct = deconstruct; }
|
|
public void setDeconstruct(Map<String, Object> deconstruct) { this.deconstruct = deconstruct; }
|
|
|
|
|
+ public Short getSourceType() { return sourceType; }
|
|
|
|
|
+ public void setSourceType(Short sourceType) { this.sourceType = sourceType; }
|
|
|
|
|
+ public String getSource() { return source; }
|
|
|
|
|
+ public void setSource(String source) { this.source = source; }
|
|
|
public Double getSim() { return sim; }
|
|
public Double getSim() { return sim; }
|
|
|
public void setSim(Double sim) { this.sim = sim; }
|
|
public void setSim(Double sim) { this.sim = sim; }
|
|
|
public Double getQualityScore() { return qualityScore; }
|
|
public Double getQualityScore() { return qualityScore; }
|