|
|
@@ -12,6 +12,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<result property="markType" column="mark_type" />
|
|
|
<result property="qwTagId" column="qw_tag_id" />
|
|
|
<result property="qwTagName" column="qw_tag_name" />
|
|
|
+ <result property="qwTagRealId" column="qw_tag_real_id" />
|
|
|
<result property="createTime" column="create_time" />
|
|
|
<result property="updateTime" column="update_time" />
|
|
|
<result property="createUserId" column="create_user_id" />
|
|
|
@@ -21,7 +22,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
</resultMap>
|
|
|
|
|
|
<sql id="selectLiveTagConfigVo">
|
|
|
- select id, live_id, corp_id, company_id, mark_type, qw_tag_id, qw_tag_name,create_time, update_time, create_user_id, create_user_name, update_user_id, update_user_name from live_tag_config
|
|
|
+ select id, live_id, corp_id, company_id, mark_type, qw_tag_id, qw_tag_name, qw_tag_real_id, create_time, update_time, create_user_id, create_user_name, update_user_id, update_user_name from live_tag_config
|
|
|
</sql>
|
|
|
|
|
|
<select id="selectLiveTagConfigList" parameterType="LiveTagConfig" resultMap="LiveTagConfigResult">
|
|
|
@@ -33,6 +34,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="markType != null "> and mark_type = #{markType}</if>
|
|
|
<if test="qwTagId != null "> and qw_tag_id = #{qwTagId}</if>
|
|
|
<if test="qwTagName != null "> and qw_tag_name = #{qwTagName}</if>
|
|
|
+ <if test="qwTagRealId != null "> and qw_tag_real_id = #{qwTagRealId}</if>
|
|
|
<if test="createUserId != null "> and create_user_id = #{createUserId}</if>
|
|
|
<if test="createUserName != null and createUserName != ''"> and create_user_name like concat('%', #{createUserName}, '%')</if>
|
|
|
<if test="updateUserId != null "> and update_user_id = #{updateUserId}</if>
|
|
|
@@ -55,6 +57,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="markType != null">mark_type,</if>
|
|
|
<if test="qwTagId != null">qw_tag_id,</if>
|
|
|
<if test="qwTagName != null">qw_tag_name,</if>
|
|
|
+ <if test="qwTagRealId != null">qw_tag_real_id,</if>
|
|
|
<if test="createTime != null">create_time,</if>
|
|
|
<if test="updateTime != null">update_time,</if>
|
|
|
<if test="createUserId != null">create_user_id,</if>
|
|
|
@@ -70,6 +73,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="markType != null">#{markType},</if>
|
|
|
<if test="qwTagId != null">#{qwTagId},</if>
|
|
|
<if test="qwTagName != null">#{qwTagName},</if>
|
|
|
+ <if test="qwTagRealId != null">#{qwTagRealId},</if>
|
|
|
<if test="createTime != null">#{createTime},</if>
|
|
|
<if test="updateTime != null">#{updateTime},</if>
|
|
|
<if test="createUserId != null">#{createUserId},</if>
|
|
|
@@ -88,6 +92,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="markType != null">mark_type = #{markType},</if>
|
|
|
<if test="qwTagId != null">qw_tag_id = #{qwTagId},</if>
|
|
|
<if test="qwTagName != null">qw_tag_name = #{qwTagName},</if>
|
|
|
+ <if test="qwTagRealId != null">qw_tag_real_id = #{qwTagRealId},</if>
|
|
|
<if test="createTime != null">create_time = #{createTime},</if>
|
|
|
<if test="updateTime != null">update_time = #{updateTime},</if>
|
|
|
<if test="createUserId != null">create_user_id = #{createUserId},</if>
|