|
@@ -6,12 +6,15 @@
|
|
|
<result column="plan_id" jdbcType="BIGINT" property="planId" />
|
|
<result column="plan_id" jdbcType="BIGINT" property="planId" />
|
|
|
<result column="video_id" jdbcType="BIGINT" property="videoId" />
|
|
<result column="video_id" jdbcType="BIGINT" property="videoId" />
|
|
|
<result column="title" jdbcType="VARCHAR" property="title" />
|
|
<result column="title" jdbcType="VARCHAR" property="title" />
|
|
|
|
|
+ <result column="custom_title_id" jdbcType="BIGINT" property="customTitleId" />
|
|
|
<result column="custom_title" jdbcType="VARCHAR" property="customTitle" />
|
|
<result column="custom_title" jdbcType="VARCHAR" property="customTitle" />
|
|
|
<result column="cover" jdbcType="VARCHAR" property="cover" />
|
|
<result column="cover" jdbcType="VARCHAR" property="cover" />
|
|
|
|
|
+ <result column="custom_cover_id" jdbcType="BIGINT" property="customCoverId" />
|
|
|
<result column="custom_cover" jdbcType="VARCHAR" property="customCover" />
|
|
<result column="custom_cover" jdbcType="VARCHAR" property="customCover" />
|
|
|
<result column="custom_cover_type" jdbcType="INTEGER" property="customCoverType" />
|
|
<result column="custom_cover_type" jdbcType="INTEGER" property="customCoverType" />
|
|
|
<result column="video" jdbcType="VARCHAR" property="video" />
|
|
<result column="video" jdbcType="VARCHAR" property="video" />
|
|
|
<result column="page_url" jdbcType="VARCHAR" property="pageUrl" />
|
|
<result column="page_url" jdbcType="VARCHAR" property="pageUrl" />
|
|
|
|
|
+ <result column="status" jdbcType="INTEGER" property="status" />
|
|
|
<result column="create_account_id" jdbcType="BIGINT" property="createAccountId" />
|
|
<result column="create_account_id" jdbcType="BIGINT" property="createAccountId" />
|
|
|
<result column="create_timestamp" jdbcType="BIGINT" property="createTimestamp" />
|
|
<result column="create_timestamp" jdbcType="BIGINT" property="createTimestamp" />
|
|
|
</resultMap>
|
|
</resultMap>
|
|
@@ -74,8 +77,8 @@
|
|
|
</where>
|
|
</where>
|
|
|
</sql>
|
|
</sql>
|
|
|
<sql id="Base_Column_List">
|
|
<sql id="Base_Column_List">
|
|
|
- id, plan_id, video_id, title, custom_title, cover, custom_cover, custom_cover_type,
|
|
|
|
|
- video, page_url, create_account_id, create_timestamp
|
|
|
|
|
|
|
+ id, plan_id, video_id, title, custom_title_id, custom_title, cover, custom_cover_id,
|
|
|
|
|
+ custom_cover, custom_cover_type, video, page_url, `status`, create_account_id, create_timestamp
|
|
|
</sql>
|
|
</sql>
|
|
|
<select id="selectByExample" parameterType="com.tzld.piaoquan.api.model.po.contentplatform.ContentPlatformGzhPlanVideoExample" resultMap="BaseResultMap">
|
|
<select id="selectByExample" parameterType="com.tzld.piaoquan.api.model.po.contentplatform.ContentPlatformGzhPlanVideoExample" resultMap="BaseResultMap">
|
|
|
select
|
|
select
|
|
@@ -112,14 +115,16 @@
|
|
|
</delete>
|
|
</delete>
|
|
|
<insert id="insert" parameterType="com.tzld.piaoquan.api.model.po.contentplatform.ContentPlatformGzhPlanVideo">
|
|
<insert id="insert" parameterType="com.tzld.piaoquan.api.model.po.contentplatform.ContentPlatformGzhPlanVideo">
|
|
|
insert into content_platform_gzh_plan_video (id, plan_id, video_id,
|
|
insert into content_platform_gzh_plan_video (id, plan_id, video_id,
|
|
|
- title, custom_title, cover,
|
|
|
|
|
- custom_cover, custom_cover_type, video,
|
|
|
|
|
- page_url, create_account_id, create_timestamp
|
|
|
|
|
|
|
+ title, custom_title_id, custom_title,
|
|
|
|
|
+ cover, custom_cover_id, custom_cover,
|
|
|
|
|
+ custom_cover_type, video, page_url,
|
|
|
|
|
+ `status`, create_account_id, create_timestamp
|
|
|
)
|
|
)
|
|
|
values (#{id,jdbcType=BIGINT}, #{planId,jdbcType=BIGINT}, #{videoId,jdbcType=BIGINT},
|
|
values (#{id,jdbcType=BIGINT}, #{planId,jdbcType=BIGINT}, #{videoId,jdbcType=BIGINT},
|
|
|
- #{title,jdbcType=VARCHAR}, #{customTitle,jdbcType=VARCHAR}, #{cover,jdbcType=VARCHAR},
|
|
|
|
|
- #{customCover,jdbcType=VARCHAR}, #{customCoverType,jdbcType=INTEGER}, #{video,jdbcType=VARCHAR},
|
|
|
|
|
- #{pageUrl,jdbcType=VARCHAR}, #{createAccountId,jdbcType=BIGINT}, #{createTimestamp,jdbcType=BIGINT}
|
|
|
|
|
|
|
+ #{title,jdbcType=VARCHAR}, #{customTitleId,jdbcType=BIGINT}, #{customTitle,jdbcType=VARCHAR},
|
|
|
|
|
+ #{cover,jdbcType=VARCHAR}, #{customCoverId,jdbcType=BIGINT}, #{customCover,jdbcType=VARCHAR},
|
|
|
|
|
+ #{customCoverType,jdbcType=INTEGER}, #{video,jdbcType=VARCHAR}, #{pageUrl,jdbcType=VARCHAR},
|
|
|
|
|
+ #{status,jdbcType=INTEGER}, #{createAccountId,jdbcType=BIGINT}, #{createTimestamp,jdbcType=BIGINT}
|
|
|
)
|
|
)
|
|
|
</insert>
|
|
</insert>
|
|
|
<insert id="insertSelective" parameterType="com.tzld.piaoquan.api.model.po.contentplatform.ContentPlatformGzhPlanVideo">
|
|
<insert id="insertSelective" parameterType="com.tzld.piaoquan.api.model.po.contentplatform.ContentPlatformGzhPlanVideo">
|
|
@@ -137,12 +142,18 @@
|
|
|
<if test="title != null">
|
|
<if test="title != null">
|
|
|
title,
|
|
title,
|
|
|
</if>
|
|
</if>
|
|
|
|
|
+ <if test="customTitleId != null">
|
|
|
|
|
+ custom_title_id,
|
|
|
|
|
+ </if>
|
|
|
<if test="customTitle != null">
|
|
<if test="customTitle != null">
|
|
|
custom_title,
|
|
custom_title,
|
|
|
</if>
|
|
</if>
|
|
|
<if test="cover != null">
|
|
<if test="cover != null">
|
|
|
cover,
|
|
cover,
|
|
|
</if>
|
|
</if>
|
|
|
|
|
+ <if test="customCoverId != null">
|
|
|
|
|
+ custom_cover_id,
|
|
|
|
|
+ </if>
|
|
|
<if test="customCover != null">
|
|
<if test="customCover != null">
|
|
|
custom_cover,
|
|
custom_cover,
|
|
|
</if>
|
|
</if>
|
|
@@ -155,6 +166,9 @@
|
|
|
<if test="pageUrl != null">
|
|
<if test="pageUrl != null">
|
|
|
page_url,
|
|
page_url,
|
|
|
</if>
|
|
</if>
|
|
|
|
|
+ <if test="status != null">
|
|
|
|
|
+ `status`,
|
|
|
|
|
+ </if>
|
|
|
<if test="createAccountId != null">
|
|
<if test="createAccountId != null">
|
|
|
create_account_id,
|
|
create_account_id,
|
|
|
</if>
|
|
</if>
|
|
@@ -175,12 +189,18 @@
|
|
|
<if test="title != null">
|
|
<if test="title != null">
|
|
|
#{title,jdbcType=VARCHAR},
|
|
#{title,jdbcType=VARCHAR},
|
|
|
</if>
|
|
</if>
|
|
|
|
|
+ <if test="customTitleId != null">
|
|
|
|
|
+ #{customTitleId,jdbcType=BIGINT},
|
|
|
|
|
+ </if>
|
|
|
<if test="customTitle != null">
|
|
<if test="customTitle != null">
|
|
|
#{customTitle,jdbcType=VARCHAR},
|
|
#{customTitle,jdbcType=VARCHAR},
|
|
|
</if>
|
|
</if>
|
|
|
<if test="cover != null">
|
|
<if test="cover != null">
|
|
|
#{cover,jdbcType=VARCHAR},
|
|
#{cover,jdbcType=VARCHAR},
|
|
|
</if>
|
|
</if>
|
|
|
|
|
+ <if test="customCoverId != null">
|
|
|
|
|
+ #{customCoverId,jdbcType=BIGINT},
|
|
|
|
|
+ </if>
|
|
|
<if test="customCover != null">
|
|
<if test="customCover != null">
|
|
|
#{customCover,jdbcType=VARCHAR},
|
|
#{customCover,jdbcType=VARCHAR},
|
|
|
</if>
|
|
</if>
|
|
@@ -193,6 +213,9 @@
|
|
|
<if test="pageUrl != null">
|
|
<if test="pageUrl != null">
|
|
|
#{pageUrl,jdbcType=VARCHAR},
|
|
#{pageUrl,jdbcType=VARCHAR},
|
|
|
</if>
|
|
</if>
|
|
|
|
|
+ <if test="status != null">
|
|
|
|
|
+ #{status,jdbcType=INTEGER},
|
|
|
|
|
+ </if>
|
|
|
<if test="createAccountId != null">
|
|
<if test="createAccountId != null">
|
|
|
#{createAccountId,jdbcType=BIGINT},
|
|
#{createAccountId,jdbcType=BIGINT},
|
|
|
</if>
|
|
</if>
|
|
@@ -222,12 +245,18 @@
|
|
|
<if test="record.title != null">
|
|
<if test="record.title != null">
|
|
|
title = #{record.title,jdbcType=VARCHAR},
|
|
title = #{record.title,jdbcType=VARCHAR},
|
|
|
</if>
|
|
</if>
|
|
|
|
|
+ <if test="record.customTitleId != null">
|
|
|
|
|
+ custom_title_id = #{record.customTitleId,jdbcType=BIGINT},
|
|
|
|
|
+ </if>
|
|
|
<if test="record.customTitle != null">
|
|
<if test="record.customTitle != null">
|
|
|
custom_title = #{record.customTitle,jdbcType=VARCHAR},
|
|
custom_title = #{record.customTitle,jdbcType=VARCHAR},
|
|
|
</if>
|
|
</if>
|
|
|
<if test="record.cover != null">
|
|
<if test="record.cover != null">
|
|
|
cover = #{record.cover,jdbcType=VARCHAR},
|
|
cover = #{record.cover,jdbcType=VARCHAR},
|
|
|
</if>
|
|
</if>
|
|
|
|
|
+ <if test="record.customCoverId != null">
|
|
|
|
|
+ custom_cover_id = #{record.customCoverId,jdbcType=BIGINT},
|
|
|
|
|
+ </if>
|
|
|
<if test="record.customCover != null">
|
|
<if test="record.customCover != null">
|
|
|
custom_cover = #{record.customCover,jdbcType=VARCHAR},
|
|
custom_cover = #{record.customCover,jdbcType=VARCHAR},
|
|
|
</if>
|
|
</if>
|
|
@@ -240,6 +269,9 @@
|
|
|
<if test="record.pageUrl != null">
|
|
<if test="record.pageUrl != null">
|
|
|
page_url = #{record.pageUrl,jdbcType=VARCHAR},
|
|
page_url = #{record.pageUrl,jdbcType=VARCHAR},
|
|
|
</if>
|
|
</if>
|
|
|
|
|
+ <if test="record.status != null">
|
|
|
|
|
+ `status` = #{record.status,jdbcType=INTEGER},
|
|
|
|
|
+ </if>
|
|
|
<if test="record.createAccountId != null">
|
|
<if test="record.createAccountId != null">
|
|
|
create_account_id = #{record.createAccountId,jdbcType=BIGINT},
|
|
create_account_id = #{record.createAccountId,jdbcType=BIGINT},
|
|
|
</if>
|
|
</if>
|
|
@@ -257,12 +289,15 @@
|
|
|
plan_id = #{record.planId,jdbcType=BIGINT},
|
|
plan_id = #{record.planId,jdbcType=BIGINT},
|
|
|
video_id = #{record.videoId,jdbcType=BIGINT},
|
|
video_id = #{record.videoId,jdbcType=BIGINT},
|
|
|
title = #{record.title,jdbcType=VARCHAR},
|
|
title = #{record.title,jdbcType=VARCHAR},
|
|
|
|
|
+ custom_title_id = #{record.customTitleId,jdbcType=BIGINT},
|
|
|
custom_title = #{record.customTitle,jdbcType=VARCHAR},
|
|
custom_title = #{record.customTitle,jdbcType=VARCHAR},
|
|
|
cover = #{record.cover,jdbcType=VARCHAR},
|
|
cover = #{record.cover,jdbcType=VARCHAR},
|
|
|
|
|
+ custom_cover_id = #{record.customCoverId,jdbcType=BIGINT},
|
|
|
custom_cover = #{record.customCover,jdbcType=VARCHAR},
|
|
custom_cover = #{record.customCover,jdbcType=VARCHAR},
|
|
|
custom_cover_type = #{record.customCoverType,jdbcType=INTEGER},
|
|
custom_cover_type = #{record.customCoverType,jdbcType=INTEGER},
|
|
|
video = #{record.video,jdbcType=VARCHAR},
|
|
video = #{record.video,jdbcType=VARCHAR},
|
|
|
page_url = #{record.pageUrl,jdbcType=VARCHAR},
|
|
page_url = #{record.pageUrl,jdbcType=VARCHAR},
|
|
|
|
|
+ `status` = #{record.status,jdbcType=INTEGER},
|
|
|
create_account_id = #{record.createAccountId,jdbcType=BIGINT},
|
|
create_account_id = #{record.createAccountId,jdbcType=BIGINT},
|
|
|
create_timestamp = #{record.createTimestamp,jdbcType=BIGINT}
|
|
create_timestamp = #{record.createTimestamp,jdbcType=BIGINT}
|
|
|
<if test="_parameter != null">
|
|
<if test="_parameter != null">
|
|
@@ -281,12 +316,18 @@
|
|
|
<if test="title != null">
|
|
<if test="title != null">
|
|
|
title = #{title,jdbcType=VARCHAR},
|
|
title = #{title,jdbcType=VARCHAR},
|
|
|
</if>
|
|
</if>
|
|
|
|
|
+ <if test="customTitleId != null">
|
|
|
|
|
+ custom_title_id = #{customTitleId,jdbcType=BIGINT},
|
|
|
|
|
+ </if>
|
|
|
<if test="customTitle != null">
|
|
<if test="customTitle != null">
|
|
|
custom_title = #{customTitle,jdbcType=VARCHAR},
|
|
custom_title = #{customTitle,jdbcType=VARCHAR},
|
|
|
</if>
|
|
</if>
|
|
|
<if test="cover != null">
|
|
<if test="cover != null">
|
|
|
cover = #{cover,jdbcType=VARCHAR},
|
|
cover = #{cover,jdbcType=VARCHAR},
|
|
|
</if>
|
|
</if>
|
|
|
|
|
+ <if test="customCoverId != null">
|
|
|
|
|
+ custom_cover_id = #{customCoverId,jdbcType=BIGINT},
|
|
|
|
|
+ </if>
|
|
|
<if test="customCover != null">
|
|
<if test="customCover != null">
|
|
|
custom_cover = #{customCover,jdbcType=VARCHAR},
|
|
custom_cover = #{customCover,jdbcType=VARCHAR},
|
|
|
</if>
|
|
</if>
|
|
@@ -299,6 +340,9 @@
|
|
|
<if test="pageUrl != null">
|
|
<if test="pageUrl != null">
|
|
|
page_url = #{pageUrl,jdbcType=VARCHAR},
|
|
page_url = #{pageUrl,jdbcType=VARCHAR},
|
|
|
</if>
|
|
</if>
|
|
|
|
|
+ <if test="status != null">
|
|
|
|
|
+ `status` = #{status,jdbcType=INTEGER},
|
|
|
|
|
+ </if>
|
|
|
<if test="createAccountId != null">
|
|
<if test="createAccountId != null">
|
|
|
create_account_id = #{createAccountId,jdbcType=BIGINT},
|
|
create_account_id = #{createAccountId,jdbcType=BIGINT},
|
|
|
</if>
|
|
</if>
|
|
@@ -313,12 +357,15 @@
|
|
|
set plan_id = #{planId,jdbcType=BIGINT},
|
|
set plan_id = #{planId,jdbcType=BIGINT},
|
|
|
video_id = #{videoId,jdbcType=BIGINT},
|
|
video_id = #{videoId,jdbcType=BIGINT},
|
|
|
title = #{title,jdbcType=VARCHAR},
|
|
title = #{title,jdbcType=VARCHAR},
|
|
|
|
|
+ custom_title_id = #{customTitleId,jdbcType=BIGINT},
|
|
|
custom_title = #{customTitle,jdbcType=VARCHAR},
|
|
custom_title = #{customTitle,jdbcType=VARCHAR},
|
|
|
cover = #{cover,jdbcType=VARCHAR},
|
|
cover = #{cover,jdbcType=VARCHAR},
|
|
|
|
|
+ custom_cover_id = #{customCoverId,jdbcType=BIGINT},
|
|
|
custom_cover = #{customCover,jdbcType=VARCHAR},
|
|
custom_cover = #{customCover,jdbcType=VARCHAR},
|
|
|
custom_cover_type = #{customCoverType,jdbcType=INTEGER},
|
|
custom_cover_type = #{customCoverType,jdbcType=INTEGER},
|
|
|
video = #{video,jdbcType=VARCHAR},
|
|
video = #{video,jdbcType=VARCHAR},
|
|
|
page_url = #{pageUrl,jdbcType=VARCHAR},
|
|
page_url = #{pageUrl,jdbcType=VARCHAR},
|
|
|
|
|
+ `status` = #{status,jdbcType=INTEGER},
|
|
|
create_account_id = #{createAccountId,jdbcType=BIGINT},
|
|
create_account_id = #{createAccountId,jdbcType=BIGINT},
|
|
|
create_timestamp = #{createTimestamp,jdbcType=BIGINT}
|
|
create_timestamp = #{createTimestamp,jdbcType=BIGINT}
|
|
|
where id = #{id,jdbcType=BIGINT}
|
|
where id = #{id,jdbcType=BIGINT}
|