wangyunpeng il y a 2 mois
Parent
commit
0993067eaa

+ 5 - 5
api-module/src/main/resources/mapper/contentplatform/ext/ContentPlatformPlanMapperExt.xml

@@ -147,21 +147,21 @@
     </select>
 
     <insert id="batchInsertQwPlan">
-        insert into content_platform_qw_plan (publish_stage, `type`, scene, page_url, root_source_id,
+        insert into content_platform_qw_plan (`type`, scene, page_url, root_source_id,
         create_account_id, create_timestamp, update_timestamp
         )
         values 
         <foreach collection="records" item="item" separator=",">
-            (#{item.publishStage}, #{item.type}, #{item.scene}, #{item.pageUrl}, #{item.rootSourceId},
+            (#{item.type}, #{item.scene}, #{item.pageUrl}, #{item.rootSourceId},
             #{item.createAccountId}, #{item.createTimestamp}, #{item.updateTimestamp}
             )
         </foreach>
     </insert>
 
     <insert id="insertQwPlanReturnId" useGeneratedKeys="true" keyProperty="id">
-        insert into content_platform_qw_plan (publish_stage, `type`, scene, page_url, root_source_id,
-                                              create_account_id, create_timestamp, update_timestamp)
-        values (#{record.publishStage}, #{record.type}, #{record.scene}, #{record.pageUrl}, #{record.rootSourceId},
+        insert into content_platform_qw_plan (`type`, scene, page_url, root_source_id, create_account_id,
+                                              create_timestamp, update_timestam)
+        values ( #{record.type}, #{record.scene}, #{record.pageUrl}, #{record.rootSourceId},
                 #{record.createAccountId}, #{record.createTimestamp}, #{record.updateTimestamp})
     </insert>