|
@@ -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">
|