|
@@ -1067,6 +1067,13 @@ public class ChannelDemandMatchJob {
|
|
|
result.setMatchConfigCode("DIMENSION_STAT");
|
|
result.setMatchConfigCode("DIMENSION_STAT");
|
|
|
result.setMatchStatus((short) 1); // 已匹配(无需向量召回)
|
|
result.setMatchStatus((short) 1); // 已匹配(无需向量召回)
|
|
|
|
|
|
|
|
|
|
+ if (StringUtils.hasText(result.getDemandType())) {
|
|
|
|
|
+ if ("特征点".equals(result.getDemandType())) {
|
|
|
|
|
+ result.setDemandType("聚类特征点");
|
|
|
|
|
+ } else if ("特征点泛化".equals(result.getDemandType())) {
|
|
|
|
|
+ result.setDemandType("tree泛化特征点");
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
// 生成确定性实验ID
|
|
// 生成确定性实验ID
|
|
|
result.setExperimentId(generateExperimentId(result, result.getMatchVideoId(), result.getMatchConfigCode()));
|
|
result.setExperimentId(generateExperimentId(result, result.getMatchVideoId(), result.getMatchConfigCode()));
|
|
|
|
|
|