|
|
@@ -11,6 +11,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<result property="dictValue" column="dict_value" />
|
|
|
<result property="dictType" column="dict_type" />
|
|
|
<result property="cssClass" column="css_class" />
|
|
|
+ <result property="dictImage" column="dict_image" />
|
|
|
<result property="listClass" column="list_class" />
|
|
|
<result property="isDefault" column="is_default" />
|
|
|
<result property="status" column="status" />
|
|
|
@@ -21,7 +22,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
</resultMap>
|
|
|
|
|
|
<sql id="selectDictDataVo">
|
|
|
- select dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, remark
|
|
|
+ select dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, dict_image, list_class, is_default, status, create_by, create_time, remark
|
|
|
from sys_dict_data
|
|
|
</sql>
|
|
|
|
|
|
@@ -82,7 +83,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="dictValue != null and dictValue != ''">dict_value = #{dictValue},</if>
|
|
|
<if test="dictType != null and dictType != ''">dict_type = #{dictType},</if>
|
|
|
<if test="cssClass != null">css_class = #{cssClass},</if>
|
|
|
- <if test="listClass != null">list_class = #{listClass},</if>
|
|
|
+ <if test="dictImage != null">dict_image = #{dictImage},</if>
|
|
|
+ <if test="listClass != null">list_class = #{listClass},</if>
|
|
|
<if test="isDefault != null and isDefault != ''">is_default = #{isDefault},</if>
|
|
|
<if test="status != null">status = #{status},</if>
|
|
|
<if test="remark != null">remark = #{remark},</if>
|
|
|
@@ -103,7 +105,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="dictValue != null and dictValue != ''">dict_value,</if>
|
|
|
<if test="dictType != null and dictType != ''">dict_type,</if>
|
|
|
<if test="cssClass != null and cssClass != ''">css_class,</if>
|
|
|
- <if test="listClass != null and listClass != ''">list_class,</if>
|
|
|
+ <if test="dictImage != null and dictImage != ''">dict_image,</if>
|
|
|
+ <if test="listClass != null and listClass != ''">list_class,</if>
|
|
|
<if test="isDefault != null and isDefault != ''">is_default,</if>
|
|
|
<if test="status != null">status,</if>
|
|
|
<if test="remark != null and remark != ''">remark,</if>
|
|
|
@@ -115,7 +118,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="dictValue != null and dictValue != ''">#{dictValue},</if>
|
|
|
<if test="dictType != null and dictType != ''">#{dictType},</if>
|
|
|
<if test="cssClass != null and cssClass != ''">#{cssClass},</if>
|
|
|
- <if test="listClass != null and listClass != ''">#{listClass},</if>
|
|
|
+ <if test="dictImage != null and dictImage != ''">#{dictImage},</if>
|
|
|
+ <if test="listClass != null and listClass != ''">#{listClass},</if>
|
|
|
<if test="isDefault != null and isDefault != ''">#{isDefault},</if>
|
|
|
<if test="status != null">#{status},</if>
|
|
|
<if test="remark != null and remark != ''">#{remark},</if>
|