fix: 企标流程导入Excel排除已删除部门

This commit is contained in:
2024-04-15 11:16:01 +08:00
parent 15f265e5b0
commit 2900e20936
@@ -77,7 +77,7 @@
<!--通过查询指定table的 text code key 获取字典值-->
<select id="queryTableDictTextByKey" parameterType="String" resultType="String">
select ${text} as "text" from ${table} where ${code}= #{key}
select ${text} as "text" from ${table} where ${code}= #{key} AND del_flag = 0
</select>
<!--通过查询指定table的 text code key 获取字典值,可批量查询-->