From a65c28707599e31689cca650dde5bb40546bc2f8 Mon Sep 17 00:00:00 2001 From: HaoRan <418836876@qq.com> Date: 星期一, 31 八月 2020 02:10:01 +0800 Subject: [PATCH] 修复Editor组件无法对响应式更新null值问题 --- ruoyi-system/src/main/resources/mapper/system/SysDictTypeMapper.xml | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/ruoyi-system/src/main/resources/mapper/system/SysDictTypeMapper.xml b/ruoyi-system/src/main/resources/mapper/system/SysDictTypeMapper.xml index cf7fc06..a3d6ec5 100644 --- a/ruoyi-system/src/main/resources/mapper/system/SysDictTypeMapper.xml +++ b/ruoyi-system/src/main/resources/mapper/system/SysDictTypeMapper.xml @@ -57,7 +57,7 @@ <select id="checkDictTypeUnique" parameterType="String" resultMap="SysDictTypeResult"> <include refid="selectDictTypeVo"/> - where dict_type = #{dictType} + where dict_type = #{dictType} limit 1 </select> <delete id="deleteDictTypeById" parameterType="Long"> -- Gitblit v1.9.2