1.增加视频场景样例全量下发;
2.文件摘要判断置信度值大于10的时候除以10; 3.是否结束标识,在最后一个业务时,判断是否已有结束标识,如果没有,无论该业务是否有配置数据,都下发一条数据,标记本次同步结束。
This commit is contained in:
@@ -1216,11 +1216,26 @@
|
||||
</trim>
|
||||
ORDER BY a.CFG_ID
|
||||
</select>
|
||||
<select id="getAvSignSampleById" resultMap="AvSignSampleMap" parameterType="java.lang.Long" >
|
||||
<select id="getAvSignCfgList" resultMap="AvSignSampleMap" parameterType="com.nis.domain.configuration.BaseCfg" >
|
||||
SELECT
|
||||
<include refid="AvSignSample_Column" />
|
||||
FROM av_sign_sample_cfg a
|
||||
WHERE a.CFG_ID = #{cfgId,jdbcType=BIGINT}
|
||||
left join sys_user s on a.creator_id=s.id
|
||||
left join sys_user u on a.auditor_id=u.id
|
||||
<trim prefix="WHERE" prefixOverrides="AND |OR ">
|
||||
<if test="serviceId != null">
|
||||
AND a.SERVICE_ID=#{serviceId,jdbcType=INTEGER}
|
||||
</if>
|
||||
<if test="functionId != null">
|
||||
AND a.function_id=#{functionId,jdbcType=INTEGER}
|
||||
</if>
|
||||
<if test="action != null">
|
||||
AND a.action=#{action,jdbcType=INTEGER}
|
||||
</if>
|
||||
and a.is_valid=#{isValid} and a.is_audit=#{isAudit}
|
||||
and a.is_valid!=-1
|
||||
</trim>
|
||||
ORDER BY a.CFG_ID
|
||||
</select>
|
||||
<select id="getDnsStrategyList" resultMap="DnsResStrategyMap">
|
||||
SELECT
|
||||
|
||||
Reference in New Issue
Block a user