From 59f18d46d3c998cb379b8e42902c3c60de24d784 Mon Sep 17 00:00:00 2001 From: xueqingkun Date: Mon, 12 Aug 2024 11:01:53 +0800 Subject: [PATCH] 1. fix bugs --- src/main/resources/mapper/ModelIndexAtomicRelationMapper.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/mapper/ModelIndexAtomicRelationMapper.xml b/src/main/resources/mapper/ModelIndexAtomicRelationMapper.xml index e13487e..25f9053 100644 --- a/src/main/resources/mapper/ModelIndexAtomicRelationMapper.xml +++ b/src/main/resources/mapper/ModelIndexAtomicRelationMapper.xml @@ -26,6 +26,6 @@ a.name as atomicIndexName from model_index_atomic_relation r join model_atomic_index a on r.atomic_index_id = a.id - where a.name like concat('%', #{atomicIndexName}, '%') + where a.data_status = '1' and a.name like concat('%', #{atomicIndexName}, '%')