<?xml version="1.0" encoding="UTF-8"?>
|
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
<mapper namespace="cn.lili.modules.lmk.mapper.VideoTagMapper">
|
|
<!-- 通用查询映射结果 -->
|
<resultMap id="BaseResultMap" type="cn.lili.modules.lmk.domain.vo.VideoTagVO">
|
<id column="id" property="id"/>
|
<result column="tag_name" property="tagName" />
|
<result column="create_type" property="createType"/>
|
<result column="update_time" property="updateTime" />
|
</resultMap>
|
|
|
|
|
|
|
|
<select id="getById" resultMap="BaseResultMap">
|
SELECT
|
LVT.tag_name,
|
LVT.create_type,
|
LVT.update_time,
|
LVT.id
|
FROM
|
lmk_video_tag LVT
|
WHERE
|
LVT.id = #{id} AND LVT.delete_flag = 0
|
</select>
|
|
|
<select id="getPage" resultMap="BaseResultMap">
|
SELECT
|
LVT.tag_name,
|
LVT.create_type,
|
LVT.update_time,
|
LVT.id
|
FROM
|
lmk_video_tag LVT
|
WHERE
|
LVT.delete_flag = 0
|
<if test="query.tagName != null and query.tagName != ''">AND LVT.tag_name LIKE CONCAT('%', #{query.tagName}, '%')</if>
|
<if test="query.createType != null and query.createType != ''">AND LVT.create_type LIKE CONCAT('%', #{query.createType}, '%')</if>
|
</select>
|
|
</mapper>
|