Explorar el Código

字典选择框修改

wyyay hace 1 año
padre
commit
602c91cedd

+ 5 - 1
base-system/src/main/resources/mapper/system/SysDictTypeMapper.xml

@@ -54,7 +54,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
 
 	<select id="selectDictTypeAll" resultMap="SysDictTypeResult">
 		<include refid="selectDictTypeVo"/>
-		where data_type =#{dataType}
+		<where>
+		<if test="dataType != null and dataType != ''">
+			and UPPER(data_type) = UPPER(CONCAT('%',#{dataType},'%'))
+		</if>
+		</where>
 	</select>
 
 	<select id="selectDictTypeById" parameterType="Long" resultMap="SysDictTypeResult">