搜索中心功能开发

This commit is contained in:
梁琦涛
2023-11-15 20:51:10 +08:00
parent 17a910971b
commit 6931562b0f
2 changed files with 32 additions and 13 deletions
@@ -37,8 +37,8 @@
<!-- 通过字典code获取字典数据 -->
<select id="queryDictTextByKey" parameterType="String" resultType="String">
select s.item_text from sys_dict_item s
where s.dict_id = (select id from sys_dict where dict_code = #{code})
and s.item_value = #{key}
where s.dict_id = (select id from sys_dict where dict_code = #{code} and del_flag = 0)
and s.item_value = #{key} and del_flag = 0
</select>
<!-- 通过字典code获取字典数据,可批量查询 -->