|
@@ -8,7 +8,7 @@
|
|
<result column="flow_pool_level" jdbcType="VARCHAR" property="flowPoolLevel" />
|
|
<result column="flow_pool_level" jdbcType="VARCHAR" property="flowPoolLevel" />
|
|
<result column="gh_id" jdbcType="VARCHAR" property="ghId" />
|
|
<result column="gh_id" jdbcType="VARCHAR" property="ghId" />
|
|
<result column="account_name" jdbcType="VARCHAR" property="accountName" />
|
|
<result column="account_name" jdbcType="VARCHAR" property="accountName" />
|
|
- <result column="content_trace_id" jdbcType="VARCHAR" property="contentTraceId" />
|
|
|
|
|
|
+ <result column="video_pool_trace_id" jdbcType="VARCHAR" property="videoPoolTraceId" />
|
|
<result column="content_status" jdbcType="INTEGER" property="contentStatus" />
|
|
<result column="content_status" jdbcType="INTEGER" property="contentStatus" />
|
|
<result column="content_status_update_time" jdbcType="INTEGER" property="contentStatusUpdateTime" />
|
|
<result column="content_status_update_time" jdbcType="INTEGER" property="contentStatusUpdateTime" />
|
|
<result column="success_status" jdbcType="INTEGER" property="successStatus" />
|
|
<result column="success_status" jdbcType="INTEGER" property="successStatus" />
|
|
@@ -79,7 +79,7 @@
|
|
</where>
|
|
</where>
|
|
</sql>
|
|
</sql>
|
|
<sql id="Base_Column_List">
|
|
<sql id="Base_Column_List">
|
|
- id, trace_id, content_id, flow_pool_level, gh_id, account_name, content_trace_id,
|
|
|
|
|
|
+ id, trace_id, content_id, flow_pool_level, gh_id, account_name, video_pool_trace_id,
|
|
content_status, content_status_update_time, success_status, request_timestamp, update_time,
|
|
content_status, content_status_update_time, success_status, request_timestamp, update_time,
|
|
process_times, publish_flag
|
|
process_times, publish_flag
|
|
</sql>
|
|
</sql>
|
|
@@ -143,13 +143,13 @@
|
|
<insert id="insert" parameterType="com.tzld.piaoquan.longarticle.model.po.longarticle.MatchVideo">
|
|
<insert id="insert" parameterType="com.tzld.piaoquan.longarticle.model.po.longarticle.MatchVideo">
|
|
insert into long_articles_match_videos (id, trace_id, content_id,
|
|
insert into long_articles_match_videos (id, trace_id, content_id,
|
|
flow_pool_level, gh_id, account_name,
|
|
flow_pool_level, gh_id, account_name,
|
|
- content_trace_id, content_status, content_status_update_time,
|
|
|
|
|
|
+ video_pool_trace_id, content_status, content_status_update_time,
|
|
success_status, request_timestamp, update_time,
|
|
success_status, request_timestamp, update_time,
|
|
process_times, publish_flag, response
|
|
process_times, publish_flag, response
|
|
)
|
|
)
|
|
values (#{id,jdbcType=INTEGER}, #{traceId,jdbcType=VARCHAR}, #{contentId,jdbcType=VARCHAR},
|
|
values (#{id,jdbcType=INTEGER}, #{traceId,jdbcType=VARCHAR}, #{contentId,jdbcType=VARCHAR},
|
|
#{flowPoolLevel,jdbcType=VARCHAR}, #{ghId,jdbcType=VARCHAR}, #{accountName,jdbcType=VARCHAR},
|
|
#{flowPoolLevel,jdbcType=VARCHAR}, #{ghId,jdbcType=VARCHAR}, #{accountName,jdbcType=VARCHAR},
|
|
- #{contentTraceId,jdbcType=VARCHAR}, #{contentStatus,jdbcType=INTEGER}, #{contentStatusUpdateTime,jdbcType=INTEGER},
|
|
|
|
|
|
+ #{videoPoolTraceId,jdbcType=VARCHAR}, #{contentStatus,jdbcType=INTEGER}, #{contentStatusUpdateTime,jdbcType=INTEGER},
|
|
#{successStatus,jdbcType=INTEGER}, #{requestTimestamp,jdbcType=INTEGER}, #{updateTime,jdbcType=TIMESTAMP},
|
|
#{successStatus,jdbcType=INTEGER}, #{requestTimestamp,jdbcType=INTEGER}, #{updateTime,jdbcType=TIMESTAMP},
|
|
#{processTimes,jdbcType=INTEGER}, #{publishFlag,jdbcType=INTEGER}, #{response,jdbcType=LONGVARCHAR}
|
|
#{processTimes,jdbcType=INTEGER}, #{publishFlag,jdbcType=INTEGER}, #{response,jdbcType=LONGVARCHAR}
|
|
)
|
|
)
|
|
@@ -175,8 +175,8 @@
|
|
<if test="accountName != null">
|
|
<if test="accountName != null">
|
|
account_name,
|
|
account_name,
|
|
</if>
|
|
</if>
|
|
- <if test="contentTraceId != null">
|
|
|
|
- content_trace_id,
|
|
|
|
|
|
+ <if test="videoPoolTraceId != null">
|
|
|
|
+ video_pool_trace_id,
|
|
</if>
|
|
</if>
|
|
<if test="contentStatus != null">
|
|
<if test="contentStatus != null">
|
|
content_status,
|
|
content_status,
|
|
@@ -222,8 +222,8 @@
|
|
<if test="accountName != null">
|
|
<if test="accountName != null">
|
|
#{accountName,jdbcType=VARCHAR},
|
|
#{accountName,jdbcType=VARCHAR},
|
|
</if>
|
|
</if>
|
|
- <if test="contentTraceId != null">
|
|
|
|
- #{contentTraceId,jdbcType=VARCHAR},
|
|
|
|
|
|
+ <if test="videoPoolTraceId != null">
|
|
|
|
+ #{videoPoolTraceId,jdbcType=VARCHAR},
|
|
</if>
|
|
</if>
|
|
<if test="contentStatus != null">
|
|
<if test="contentStatus != null">
|
|
#{contentStatus,jdbcType=INTEGER},
|
|
#{contentStatus,jdbcType=INTEGER},
|
|
@@ -278,8 +278,8 @@
|
|
<if test="record.accountName != null">
|
|
<if test="record.accountName != null">
|
|
account_name = #{record.accountName,jdbcType=VARCHAR},
|
|
account_name = #{record.accountName,jdbcType=VARCHAR},
|
|
</if>
|
|
</if>
|
|
- <if test="record.contentTraceId != null">
|
|
|
|
- content_trace_id = #{record.contentTraceId,jdbcType=VARCHAR},
|
|
|
|
|
|
+ <if test="record.videoPoolTraceId != null">
|
|
|
|
+ video_pool_trace_id = #{record.videoPoolTraceId,jdbcType=VARCHAR},
|
|
</if>
|
|
</if>
|
|
<if test="record.contentStatus != null">
|
|
<if test="record.contentStatus != null">
|
|
content_status = #{record.contentStatus,jdbcType=INTEGER},
|
|
content_status = #{record.contentStatus,jdbcType=INTEGER},
|
|
@@ -318,7 +318,7 @@
|
|
flow_pool_level = #{record.flowPoolLevel,jdbcType=VARCHAR},
|
|
flow_pool_level = #{record.flowPoolLevel,jdbcType=VARCHAR},
|
|
gh_id = #{record.ghId,jdbcType=VARCHAR},
|
|
gh_id = #{record.ghId,jdbcType=VARCHAR},
|
|
account_name = #{record.accountName,jdbcType=VARCHAR},
|
|
account_name = #{record.accountName,jdbcType=VARCHAR},
|
|
- content_trace_id = #{record.contentTraceId,jdbcType=VARCHAR},
|
|
|
|
|
|
+ video_pool_trace_id = #{record.videoPoolTraceId,jdbcType=VARCHAR},
|
|
content_status = #{record.contentStatus,jdbcType=INTEGER},
|
|
content_status = #{record.contentStatus,jdbcType=INTEGER},
|
|
content_status_update_time = #{record.contentStatusUpdateTime,jdbcType=INTEGER},
|
|
content_status_update_time = #{record.contentStatusUpdateTime,jdbcType=INTEGER},
|
|
success_status = #{record.successStatus,jdbcType=INTEGER},
|
|
success_status = #{record.successStatus,jdbcType=INTEGER},
|
|
@@ -339,7 +339,7 @@
|
|
flow_pool_level = #{record.flowPoolLevel,jdbcType=VARCHAR},
|
|
flow_pool_level = #{record.flowPoolLevel,jdbcType=VARCHAR},
|
|
gh_id = #{record.ghId,jdbcType=VARCHAR},
|
|
gh_id = #{record.ghId,jdbcType=VARCHAR},
|
|
account_name = #{record.accountName,jdbcType=VARCHAR},
|
|
account_name = #{record.accountName,jdbcType=VARCHAR},
|
|
- content_trace_id = #{record.contentTraceId,jdbcType=VARCHAR},
|
|
|
|
|
|
+ video_pool_trace_id = #{record.videoPoolTraceId,jdbcType=VARCHAR},
|
|
content_status = #{record.contentStatus,jdbcType=INTEGER},
|
|
content_status = #{record.contentStatus,jdbcType=INTEGER},
|
|
content_status_update_time = #{record.contentStatusUpdateTime,jdbcType=INTEGER},
|
|
content_status_update_time = #{record.contentStatusUpdateTime,jdbcType=INTEGER},
|
|
success_status = #{record.successStatus,jdbcType=INTEGER},
|
|
success_status = #{record.successStatus,jdbcType=INTEGER},
|
|
@@ -369,8 +369,8 @@
|
|
<if test="accountName != null">
|
|
<if test="accountName != null">
|
|
account_name = #{accountName,jdbcType=VARCHAR},
|
|
account_name = #{accountName,jdbcType=VARCHAR},
|
|
</if>
|
|
</if>
|
|
- <if test="contentTraceId != null">
|
|
|
|
- content_trace_id = #{contentTraceId,jdbcType=VARCHAR},
|
|
|
|
|
|
+ <if test="videoPoolTraceId != null">
|
|
|
|
+ video_pool_trace_id = #{videoPoolTraceId,jdbcType=VARCHAR},
|
|
</if>
|
|
</if>
|
|
<if test="contentStatus != null">
|
|
<if test="contentStatus != null">
|
|
content_status = #{contentStatus,jdbcType=INTEGER},
|
|
content_status = #{contentStatus,jdbcType=INTEGER},
|
|
@@ -406,7 +406,7 @@
|
|
flow_pool_level = #{flowPoolLevel,jdbcType=VARCHAR},
|
|
flow_pool_level = #{flowPoolLevel,jdbcType=VARCHAR},
|
|
gh_id = #{ghId,jdbcType=VARCHAR},
|
|
gh_id = #{ghId,jdbcType=VARCHAR},
|
|
account_name = #{accountName,jdbcType=VARCHAR},
|
|
account_name = #{accountName,jdbcType=VARCHAR},
|
|
- content_trace_id = #{contentTraceId,jdbcType=VARCHAR},
|
|
|
|
|
|
+ video_pool_trace_id = #{videoPoolTraceId,jdbcType=VARCHAR},
|
|
content_status = #{contentStatus,jdbcType=INTEGER},
|
|
content_status = #{contentStatus,jdbcType=INTEGER},
|
|
content_status_update_time = #{contentStatusUpdateTime,jdbcType=INTEGER},
|
|
content_status_update_time = #{contentStatusUpdateTime,jdbcType=INTEGER},
|
|
success_status = #{successStatus,jdbcType=INTEGER},
|
|
success_status = #{successStatus,jdbcType=INTEGER},
|
|
@@ -424,7 +424,7 @@
|
|
flow_pool_level = #{flowPoolLevel,jdbcType=VARCHAR},
|
|
flow_pool_level = #{flowPoolLevel,jdbcType=VARCHAR},
|
|
gh_id = #{ghId,jdbcType=VARCHAR},
|
|
gh_id = #{ghId,jdbcType=VARCHAR},
|
|
account_name = #{accountName,jdbcType=VARCHAR},
|
|
account_name = #{accountName,jdbcType=VARCHAR},
|
|
- content_trace_id = #{contentTraceId,jdbcType=VARCHAR},
|
|
|
|
|
|
+ video_pool_trace_id = #{videoPoolTraceId,jdbcType=VARCHAR},
|
|
content_status = #{contentStatus,jdbcType=INTEGER},
|
|
content_status = #{contentStatus,jdbcType=INTEGER},
|
|
content_status_update_time = #{contentStatusUpdateTime,jdbcType=INTEGER},
|
|
content_status_update_time = #{contentStatusUpdateTime,jdbcType=INTEGER},
|
|
success_status = #{successStatus,jdbcType=INTEGER},
|
|
success_status = #{successStatus,jdbcType=INTEGER},
|