|
|
|
|
@ -9,6 +9,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
<result property="key" column="key" />
|
|
|
|
|
<result property="value" column="value" />
|
|
|
|
|
<result property="instructions" column="instructions" />
|
|
|
|
|
<result property="pictureUrl" column="picture_url" />
|
|
|
|
|
<result property="status" column="status" />
|
|
|
|
|
<result property="createBy" column="create_by" />
|
|
|
|
|
<result property="createTime" column="create_time" />
|
|
|
|
|
@ -18,7 +19,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
</resultMap>
|
|
|
|
|
|
|
|
|
|
<sql id="selectWxSystemSettingVo">
|
|
|
|
|
select id, `key`, `value`, instructions, status, create_by, create_time, update_by, update_time, remark from wx_system_setting
|
|
|
|
|
select id, `key`, `value`, instructions, picture_url, status, create_by, create_time, update_by, update_time, remark from wx_system_setting
|
|
|
|
|
</sql>
|
|
|
|
|
|
|
|
|
|
<select id="selectWxSystemSettingList" parameterType="WxSystemSetting" resultMap="WxSystemSettingResult">
|
|
|
|
|
@ -42,6 +43,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
<if test="key != null">key,</if>
|
|
|
|
|
<if test="value != null">value,</if>
|
|
|
|
|
<if test="instructions != null">instructions,</if>
|
|
|
|
|
<if test="pictureUrl != null">picture_url,</if>
|
|
|
|
|
<if test="status != null">status,</if>
|
|
|
|
|
<if test="createBy != null">create_by,</if>
|
|
|
|
|
<if test="createTime != null">create_time,</if>
|
|
|
|
|
@ -53,6 +55,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
<if test="key != null">#{key},</if>
|
|
|
|
|
<if test="value != null">#{value},</if>
|
|
|
|
|
<if test="instructions != null">#{instructions},</if>
|
|
|
|
|
<if test="pictureUrl != null">#{pictureUrl},</if>
|
|
|
|
|
<if test="status != null">#{status},</if>
|
|
|
|
|
<if test="createBy != null">#{createBy},</if>
|
|
|
|
|
<if test="createTime != null">#{createTime},</if>
|
|
|
|
|
@ -68,6 +71,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
<if test="key != null">key = #{key},</if>
|
|
|
|
|
<if test="value != null">value = #{value},</if>
|
|
|
|
|
<if test="instructions != null">instructions = #{instructions},</if>
|
|
|
|
|
<if test="pictureUrl != null">picture_url = #{pictureUrl},</if>
|
|
|
|
|
<if test="status != null">status = #{status},</if>
|
|
|
|
|
<if test="createBy != null">create_by = #{createBy},</if>
|
|
|
|
|
<if test="createTime != null">create_time = #{createTime},</if>
|
|
|
|
|
|