|
|
@@ -1,9 +1,10 @@
|
|
|
package com.tzld.videoVector.dao.mapper.pgVector.ext;
|
|
|
|
|
|
import com.tzld.videoVector.model.po.pgVector.DeconstructVectorConfig;
|
|
|
-import java.util.List;
|
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
/**
|
|
|
* DeconstructVectorConfig 自定义查询 Mapper(与 MBG 生成的基础 Mapper 分离)
|
|
|
*/
|
|
|
@@ -14,5 +15,6 @@ public interface DeconstructVectorConfigMapperExt {
|
|
|
*/
|
|
|
List<DeconstructVectorConfig> selectMatchingConfigs(
|
|
|
@Param("bizType") Short bizType,
|
|
|
- @Param("contentType") Short contentType);
|
|
|
+ @Param("contentType") Short contentType,
|
|
|
+ @Param("sourceField") String sourceField);
|
|
|
}
|