|
- <?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="com.iformall.mapper.TtVideoLibraryMapper">
- <resultMap id="BaseResultMap" type="com.iformall.domain.po.tt.TtVideoLibrary">
- <id column="id" jdbcType="BIGINT" property="id"/>
- <result column="tenant_id" jdbcType="VARCHAR" property="tenantId"/>
- <result column="parent_tenant_id" jdbcType="VARCHAR" property="parentTenantId" />
- <result column="video_id" jdbcType="VARCHAR" property="videoId"/>
- <result column="video_url" jdbcType="VARCHAR" property="videoUrl"/>
- <result column="preview" jdbcType="VARCHAR" property="preview"/>
- <result column="name" jdbcType="VARCHAR" property="name"/>
- <result column="duration" jdbcType="VARCHAR" property="duration"/>
- <result column="exceed_time" jdbcType="TIMESTAMP" property="exceedTime"/>
- <result column="create_date" jdbcType="TIMESTAMP" property="createDate"/>
- <result column="update_date" jdbcType="TIMESTAMP" property="updateDate"/>
- </resultMap>
-
- <sql id="allColumns">
- `id`, `tenant_id`, `parent_tenant_id`, `video_id`, `video_url`, `preview`, `name`, `duration`, `exceed_time`,`create_date`, `update_date`
- </sql>
-
- <sql id="dynamicWhereConditions">
- where `is_del` = 0
-
- <if test=" null != id ">
- and `id` = #{id}
- </if>
-
- <if test=" null != tenantId and '' != tenantId">
- and `tenant_id` = #{tenantId}
- </if>
- <if test=" null != parentTenantId and '' != parentTenantId">
- and `parent_tenant_id` = #{parentTenantId}
- </if>
-
- <if test=" null != videoId and '' != videoId">
- and `video_id` = #{videoId}
- </if>
-
-
- <if test=" null != name and ''!=name">
- and `title` like concat('%', #{name},'%')
- </if>
-
- <if test="startdate != null">
- and `create_date` >= #{startdate}
- </if>
- <if test="enddate != null">
- and `create_date` <= #{enddate}
- </if>
-
- <if test=" null != ids ">
- and id in
- <foreach collection="ids" index="index" item="idItem" open="(" separator="," close=")">
- #{idItem}
- </foreach>
- </if>
- <if test=" null != sortColumns">order by ${sortColumns}</if>
- </sql>
-
- <select id="findList" parameterType="com.iformall.domain.po.tt.TtVideoLibrary" resultMap="BaseResultMap">
- select
- <include refid="allColumns"/>
- from tt_video_library
- <include refid="dynamicWhereConditions"/>
- </select>
-
- <delete id="deleteById" parameterType="Long">
- update tt_video_library set is_del = 1,update_date=now() where id = #{id}
- </delete>
-
- <select id="getByVideoId" parameterType="String" resultMap="BaseResultMap">
- select
- <include refid="allColumns"/>
- from tt_video_library
- where `video_id` = #{videoId}
- </select>
-
-
-
- </mapper>
|