导入规则校验完善

This commit is contained in:
wangchengjun
2022-01-11 00:47:00 +08:00
parent 01269d3260
commit f269ee11cb
3 changed files with 537 additions and 17 deletions
@@ -32,7 +32,7 @@
<!--通过查询指定table的 text code key 获取字典值-->
<select id="queryTableDictTextByKey" parameterType="String" resultType="String">
select ${text} as "text" from ${table} where ${code}= #{key}
select distinct ${text} as "text" from ${table} where ${code}= #{key}
</select>
<!--通过查询指定table的 text code key 获取字典值,包含value-->