|
@@ -17,7 +17,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
</resultMap>
|
|
|
|
|
|
<sql id="selectDictTypeVo">
|
|
|
- select dict_id, dict_name, dict_type, dataType,status, create_by, create_time, remark
|
|
|
+ select dict_id, dict_name, dict_type, data_type,status, create_by, create_time, remark
|
|
|
from sys_dict_type
|
|
|
</sql>
|
|
|
|
|
@@ -30,6 +30,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="status != null and status != ''">
|
|
|
AND status = #{status}
|
|
|
</if>
|
|
|
+ <if test="dataType != null and dataType != 0">
|
|
|
+ AND data_type = #{dataType}
|
|
|
+ </if>
|
|
|
<if test="dictType != null and dictType != ''">
|
|
|
AND dict_type like concat('%', #{dictType}, '%')
|
|
|
</if>
|