LongArticlesTextMapper.xml 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
  3. <mapper namespace="com.tzld.piaoquan.longarticle.dao.mapper.longarticle.LongArticlesTextMapper">
  4. <resultMap id="BaseResultMap" type="com.tzld.piaoquan.longarticle.model.po.longarticle.LongArticlesText">
  5. <id column="content_id" jdbcType="VARCHAR" property="contentId" />
  6. <result column="article_title" jdbcType="VARCHAR" property="articleTitle" />
  7. <result column="old_article_title" jdbcType="VARCHAR" property="oldArticleTitle" />
  8. <result column="article_title_update_account" jdbcType="VARCHAR" property="articleTitleUpdateAccount" />
  9. <result column="article_title_update_timestamp" jdbcType="BIGINT" property="articleTitleUpdateTimestamp" />
  10. <result column="kimi_title" jdbcType="VARCHAR" property="kimiTitle" />
  11. <result column="old_kimi_title" jdbcType="VARCHAR" property="oldKimiTitle" />
  12. <result column="kimi_title_update_account" jdbcType="VARCHAR" property="kimiTitleUpdateAccount" />
  13. <result column="kimi_title_update_timestamp" jdbcType="BIGINT" property="kimiTitleUpdateTimestamp" />
  14. <result column="kimi_summary" jdbcType="VARCHAR" property="kimiSummary" />
  15. <result column="kimi_keys" jdbcType="VARCHAR" property="kimiKeys" />
  16. <result column="kimi_status" jdbcType="INTEGER" property="kimiStatus" />
  17. <result column="similarity_status" jdbcType="INTEGER" property="similarityStatus" />
  18. <result column="start_processing_time" jdbcType="TIMESTAMP" property="startProcessingTime" />
  19. <result column="result_status" jdbcType="INTEGER" property="resultStatus" />
  20. <result column="create_time" jdbcType="TIMESTAMP" property="createTime" />
  21. </resultMap>
  22. <resultMap extends="BaseResultMap" id="ResultMapWithBLOBs" type="com.tzld.piaoquan.longarticle.model.po.longarticle.LongArticlesText">
  23. <result column="article_text" jdbcType="LONGVARCHAR" property="articleText" />
  24. </resultMap>
  25. <sql id="Example_Where_Clause">
  26. <where>
  27. <foreach collection="oredCriteria" item="criteria" separator="or">
  28. <if test="criteria.valid">
  29. <trim prefix="(" prefixOverrides="and" suffix=")">
  30. <foreach collection="criteria.criteria" item="criterion">
  31. <choose>
  32. <when test="criterion.noValue">
  33. and ${criterion.condition}
  34. </when>
  35. <when test="criterion.singleValue">
  36. and ${criterion.condition} #{criterion.value}
  37. </when>
  38. <when test="criterion.betweenValue">
  39. and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
  40. </when>
  41. <when test="criterion.listValue">
  42. and ${criterion.condition}
  43. <foreach close=")" collection="criterion.value" item="listItem" open="(" separator=",">
  44. #{listItem}
  45. </foreach>
  46. </when>
  47. </choose>
  48. </foreach>
  49. </trim>
  50. </if>
  51. </foreach>
  52. </where>
  53. </sql>
  54. <sql id="Update_By_Example_Where_Clause">
  55. <where>
  56. <foreach collection="example.oredCriteria" item="criteria" separator="or">
  57. <if test="criteria.valid">
  58. <trim prefix="(" prefixOverrides="and" suffix=")">
  59. <foreach collection="criteria.criteria" item="criterion">
  60. <choose>
  61. <when test="criterion.noValue">
  62. and ${criterion.condition}
  63. </when>
  64. <when test="criterion.singleValue">
  65. and ${criterion.condition} #{criterion.value}
  66. </when>
  67. <when test="criterion.betweenValue">
  68. and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
  69. </when>
  70. <when test="criterion.listValue">
  71. and ${criterion.condition}
  72. <foreach close=")" collection="criterion.value" item="listItem" open="(" separator=",">
  73. #{listItem}
  74. </foreach>
  75. </when>
  76. </choose>
  77. </foreach>
  78. </trim>
  79. </if>
  80. </foreach>
  81. </where>
  82. </sql>
  83. <sql id="Base_Column_List">
  84. content_id, article_title, old_article_title, article_title_update_account, article_title_update_timestamp,
  85. kimi_title, old_kimi_title, kimi_title_update_account, kimi_title_update_timestamp,
  86. kimi_summary, kimi_keys, kimi_status, similarity_status, start_processing_time, result_status,
  87. create_time
  88. </sql>
  89. <sql id="Blob_Column_List">
  90. article_text
  91. </sql>
  92. <select id="selectByExampleWithBLOBs" parameterType="com.tzld.piaoquan.longarticle.model.po.longarticle.LongArticlesTextExample" resultMap="ResultMapWithBLOBs">
  93. select
  94. <if test="distinct">
  95. distinct
  96. </if>
  97. <include refid="Base_Column_List" />
  98. ,
  99. <include refid="Blob_Column_List" />
  100. from long_articles_text
  101. <if test="_parameter != null">
  102. <include refid="Example_Where_Clause" />
  103. </if>
  104. <if test="orderByClause != null">
  105. order by ${orderByClause}
  106. </if>
  107. <if test="page != null">
  108. limit #{page.offset} , #{page.pageSize}
  109. </if>
  110. </select>
  111. <select id="selectByExample" parameterType="com.tzld.piaoquan.longarticle.model.po.longarticle.LongArticlesTextExample" resultMap="BaseResultMap">
  112. select
  113. <if test="distinct">
  114. distinct
  115. </if>
  116. <include refid="Base_Column_List" />
  117. from long_articles_text
  118. <if test="_parameter != null">
  119. <include refid="Example_Where_Clause" />
  120. </if>
  121. <if test="orderByClause != null">
  122. order by ${orderByClause}
  123. </if>
  124. <if test="page != null">
  125. limit #{page.offset} , #{page.pageSize}
  126. </if>
  127. </select>
  128. <select id="selectByPrimaryKey" parameterType="java.lang.String" resultMap="ResultMapWithBLOBs">
  129. select
  130. <include refid="Base_Column_List" />
  131. ,
  132. <include refid="Blob_Column_List" />
  133. from long_articles_text
  134. where content_id = #{contentId,jdbcType=VARCHAR}
  135. </select>
  136. <delete id="deleteByPrimaryKey" parameterType="java.lang.String">
  137. delete from long_articles_text
  138. where content_id = #{contentId,jdbcType=VARCHAR}
  139. </delete>
  140. <delete id="deleteByExample" parameterType="com.tzld.piaoquan.longarticle.model.po.longarticle.LongArticlesTextExample">
  141. delete from long_articles_text
  142. <if test="_parameter != null">
  143. <include refid="Example_Where_Clause" />
  144. </if>
  145. </delete>
  146. <insert id="insert" parameterType="com.tzld.piaoquan.longarticle.model.po.longarticle.LongArticlesText">
  147. insert into long_articles_text (content_id, article_title, old_article_title,
  148. article_title_update_account, article_title_update_timestamp,
  149. kimi_title, old_kimi_title, kimi_title_update_account,
  150. kimi_title_update_timestamp, kimi_summary, kimi_keys,
  151. kimi_status, similarity_status, start_processing_time,
  152. result_status, create_time, article_text
  153. )
  154. values (#{contentId,jdbcType=VARCHAR}, #{articleTitle,jdbcType=VARCHAR}, #{oldArticleTitle,jdbcType=VARCHAR},
  155. #{articleTitleUpdateAccount,jdbcType=VARCHAR}, #{articleTitleUpdateTimestamp,jdbcType=BIGINT},
  156. #{kimiTitle,jdbcType=VARCHAR}, #{oldKimiTitle,jdbcType=VARCHAR}, #{kimiTitleUpdateAccount,jdbcType=VARCHAR},
  157. #{kimiTitleUpdateTimestamp,jdbcType=BIGINT}, #{kimiSummary,jdbcType=VARCHAR}, #{kimiKeys,jdbcType=VARCHAR},
  158. #{kimiStatus,jdbcType=INTEGER}, #{similarityStatus,jdbcType=INTEGER}, #{startProcessingTime,jdbcType=TIMESTAMP},
  159. #{resultStatus,jdbcType=INTEGER}, #{createTime,jdbcType=TIMESTAMP}, #{articleText,jdbcType=LONGVARCHAR}
  160. )
  161. </insert>
  162. <insert id="insertSelective" parameterType="com.tzld.piaoquan.longarticle.model.po.longarticle.LongArticlesText">
  163. insert into long_articles_text
  164. <trim prefix="(" suffix=")" suffixOverrides=",">
  165. <if test="contentId != null">
  166. content_id,
  167. </if>
  168. <if test="articleTitle != null">
  169. article_title,
  170. </if>
  171. <if test="oldArticleTitle != null">
  172. old_article_title,
  173. </if>
  174. <if test="articleTitleUpdateAccount != null">
  175. article_title_update_account,
  176. </if>
  177. <if test="articleTitleUpdateTimestamp != null">
  178. article_title_update_timestamp,
  179. </if>
  180. <if test="kimiTitle != null">
  181. kimi_title,
  182. </if>
  183. <if test="oldKimiTitle != null">
  184. old_kimi_title,
  185. </if>
  186. <if test="kimiTitleUpdateAccount != null">
  187. kimi_title_update_account,
  188. </if>
  189. <if test="kimiTitleUpdateTimestamp != null">
  190. kimi_title_update_timestamp,
  191. </if>
  192. <if test="kimiSummary != null">
  193. kimi_summary,
  194. </if>
  195. <if test="kimiKeys != null">
  196. kimi_keys,
  197. </if>
  198. <if test="kimiStatus != null">
  199. kimi_status,
  200. </if>
  201. <if test="similarityStatus != null">
  202. similarity_status,
  203. </if>
  204. <if test="startProcessingTime != null">
  205. start_processing_time,
  206. </if>
  207. <if test="resultStatus != null">
  208. result_status,
  209. </if>
  210. <if test="createTime != null">
  211. create_time,
  212. </if>
  213. <if test="articleText != null">
  214. article_text,
  215. </if>
  216. </trim>
  217. <trim prefix="values (" suffix=")" suffixOverrides=",">
  218. <if test="contentId != null">
  219. #{contentId,jdbcType=VARCHAR},
  220. </if>
  221. <if test="articleTitle != null">
  222. #{articleTitle,jdbcType=VARCHAR},
  223. </if>
  224. <if test="oldArticleTitle != null">
  225. #{oldArticleTitle,jdbcType=VARCHAR},
  226. </if>
  227. <if test="articleTitleUpdateAccount != null">
  228. #{articleTitleUpdateAccount,jdbcType=VARCHAR},
  229. </if>
  230. <if test="articleTitleUpdateTimestamp != null">
  231. #{articleTitleUpdateTimestamp,jdbcType=BIGINT},
  232. </if>
  233. <if test="kimiTitle != null">
  234. #{kimiTitle,jdbcType=VARCHAR},
  235. </if>
  236. <if test="oldKimiTitle != null">
  237. #{oldKimiTitle,jdbcType=VARCHAR},
  238. </if>
  239. <if test="kimiTitleUpdateAccount != null">
  240. #{kimiTitleUpdateAccount,jdbcType=VARCHAR},
  241. </if>
  242. <if test="kimiTitleUpdateTimestamp != null">
  243. #{kimiTitleUpdateTimestamp,jdbcType=BIGINT},
  244. </if>
  245. <if test="kimiSummary != null">
  246. #{kimiSummary,jdbcType=VARCHAR},
  247. </if>
  248. <if test="kimiKeys != null">
  249. #{kimiKeys,jdbcType=VARCHAR},
  250. </if>
  251. <if test="kimiStatus != null">
  252. #{kimiStatus,jdbcType=INTEGER},
  253. </if>
  254. <if test="similarityStatus != null">
  255. #{similarityStatus,jdbcType=INTEGER},
  256. </if>
  257. <if test="startProcessingTime != null">
  258. #{startProcessingTime,jdbcType=TIMESTAMP},
  259. </if>
  260. <if test="resultStatus != null">
  261. #{resultStatus,jdbcType=INTEGER},
  262. </if>
  263. <if test="createTime != null">
  264. #{createTime,jdbcType=TIMESTAMP},
  265. </if>
  266. <if test="articleText != null">
  267. #{articleText,jdbcType=LONGVARCHAR},
  268. </if>
  269. </trim>
  270. </insert>
  271. <select id="countByExample" parameterType="com.tzld.piaoquan.longarticle.model.po.longarticle.LongArticlesTextExample" resultType="java.lang.Long">
  272. select count(*) from long_articles_text
  273. <if test="_parameter != null">
  274. <include refid="Example_Where_Clause" />
  275. </if>
  276. </select>
  277. <update id="updateByExampleSelective" parameterType="map">
  278. update long_articles_text
  279. <set>
  280. <if test="record.contentId != null">
  281. content_id = #{record.contentId,jdbcType=VARCHAR},
  282. </if>
  283. <if test="record.articleTitle != null">
  284. article_title = #{record.articleTitle,jdbcType=VARCHAR},
  285. </if>
  286. <if test="record.oldArticleTitle != null">
  287. old_article_title = #{record.oldArticleTitle,jdbcType=VARCHAR},
  288. </if>
  289. <if test="record.articleTitleUpdateAccount != null">
  290. article_title_update_account = #{record.articleTitleUpdateAccount,jdbcType=VARCHAR},
  291. </if>
  292. <if test="record.articleTitleUpdateTimestamp != null">
  293. article_title_update_timestamp = #{record.articleTitleUpdateTimestamp,jdbcType=BIGINT},
  294. </if>
  295. <if test="record.kimiTitle != null">
  296. kimi_title = #{record.kimiTitle,jdbcType=VARCHAR},
  297. </if>
  298. <if test="record.oldKimiTitle != null">
  299. old_kimi_title = #{record.oldKimiTitle,jdbcType=VARCHAR},
  300. </if>
  301. <if test="record.kimiTitleUpdateAccount != null">
  302. kimi_title_update_account = #{record.kimiTitleUpdateAccount,jdbcType=VARCHAR},
  303. </if>
  304. <if test="record.kimiTitleUpdateTimestamp != null">
  305. kimi_title_update_timestamp = #{record.kimiTitleUpdateTimestamp,jdbcType=BIGINT},
  306. </if>
  307. <if test="record.kimiSummary != null">
  308. kimi_summary = #{record.kimiSummary,jdbcType=VARCHAR},
  309. </if>
  310. <if test="record.kimiKeys != null">
  311. kimi_keys = #{record.kimiKeys,jdbcType=VARCHAR},
  312. </if>
  313. <if test="record.kimiStatus != null">
  314. kimi_status = #{record.kimiStatus,jdbcType=INTEGER},
  315. </if>
  316. <if test="record.similarityStatus != null">
  317. similarity_status = #{record.similarityStatus,jdbcType=INTEGER},
  318. </if>
  319. <if test="record.startProcessingTime != null">
  320. start_processing_time = #{record.startProcessingTime,jdbcType=TIMESTAMP},
  321. </if>
  322. <if test="record.resultStatus != null">
  323. result_status = #{record.resultStatus,jdbcType=INTEGER},
  324. </if>
  325. <if test="record.createTime != null">
  326. create_time = #{record.createTime,jdbcType=TIMESTAMP},
  327. </if>
  328. <if test="record.articleText != null">
  329. article_text = #{record.articleText,jdbcType=LONGVARCHAR},
  330. </if>
  331. </set>
  332. <if test="_parameter != null">
  333. <include refid="Update_By_Example_Where_Clause" />
  334. </if>
  335. </update>
  336. <update id="updateByExampleWithBLOBs" parameterType="map">
  337. update long_articles_text
  338. set content_id = #{record.contentId,jdbcType=VARCHAR},
  339. article_title = #{record.articleTitle,jdbcType=VARCHAR},
  340. old_article_title = #{record.oldArticleTitle,jdbcType=VARCHAR},
  341. article_title_update_account = #{record.articleTitleUpdateAccount,jdbcType=VARCHAR},
  342. article_title_update_timestamp = #{record.articleTitleUpdateTimestamp,jdbcType=BIGINT},
  343. kimi_title = #{record.kimiTitle,jdbcType=VARCHAR},
  344. old_kimi_title = #{record.oldKimiTitle,jdbcType=VARCHAR},
  345. kimi_title_update_account = #{record.kimiTitleUpdateAccount,jdbcType=VARCHAR},
  346. kimi_title_update_timestamp = #{record.kimiTitleUpdateTimestamp,jdbcType=BIGINT},
  347. kimi_summary = #{record.kimiSummary,jdbcType=VARCHAR},
  348. kimi_keys = #{record.kimiKeys,jdbcType=VARCHAR},
  349. kimi_status = #{record.kimiStatus,jdbcType=INTEGER},
  350. similarity_status = #{record.similarityStatus,jdbcType=INTEGER},
  351. start_processing_time = #{record.startProcessingTime,jdbcType=TIMESTAMP},
  352. result_status = #{record.resultStatus,jdbcType=INTEGER},
  353. create_time = #{record.createTime,jdbcType=TIMESTAMP},
  354. article_text = #{record.articleText,jdbcType=LONGVARCHAR}
  355. <if test="_parameter != null">
  356. <include refid="Update_By_Example_Where_Clause" />
  357. </if>
  358. </update>
  359. <update id="updateByExample" parameterType="map">
  360. update long_articles_text
  361. set content_id = #{record.contentId,jdbcType=VARCHAR},
  362. article_title = #{record.articleTitle,jdbcType=VARCHAR},
  363. old_article_title = #{record.oldArticleTitle,jdbcType=VARCHAR},
  364. article_title_update_account = #{record.articleTitleUpdateAccount,jdbcType=VARCHAR},
  365. article_title_update_timestamp = #{record.articleTitleUpdateTimestamp,jdbcType=BIGINT},
  366. kimi_title = #{record.kimiTitle,jdbcType=VARCHAR},
  367. old_kimi_title = #{record.oldKimiTitle,jdbcType=VARCHAR},
  368. kimi_title_update_account = #{record.kimiTitleUpdateAccount,jdbcType=VARCHAR},
  369. kimi_title_update_timestamp = #{record.kimiTitleUpdateTimestamp,jdbcType=BIGINT},
  370. kimi_summary = #{record.kimiSummary,jdbcType=VARCHAR},
  371. kimi_keys = #{record.kimiKeys,jdbcType=VARCHAR},
  372. kimi_status = #{record.kimiStatus,jdbcType=INTEGER},
  373. similarity_status = #{record.similarityStatus,jdbcType=INTEGER},
  374. start_processing_time = #{record.startProcessingTime,jdbcType=TIMESTAMP},
  375. result_status = #{record.resultStatus,jdbcType=INTEGER},
  376. create_time = #{record.createTime,jdbcType=TIMESTAMP}
  377. <if test="_parameter != null">
  378. <include refid="Update_By_Example_Where_Clause" />
  379. </if>
  380. </update>
  381. <update id="updateByPrimaryKeySelective" parameterType="com.tzld.piaoquan.longarticle.model.po.longarticle.LongArticlesText">
  382. update long_articles_text
  383. <set>
  384. <if test="articleTitle != null">
  385. article_title = #{articleTitle,jdbcType=VARCHAR},
  386. </if>
  387. <if test="oldArticleTitle != null">
  388. old_article_title = #{oldArticleTitle,jdbcType=VARCHAR},
  389. </if>
  390. <if test="articleTitleUpdateAccount != null">
  391. article_title_update_account = #{articleTitleUpdateAccount,jdbcType=VARCHAR},
  392. </if>
  393. <if test="articleTitleUpdateTimestamp != null">
  394. article_title_update_timestamp = #{articleTitleUpdateTimestamp,jdbcType=BIGINT},
  395. </if>
  396. <if test="kimiTitle != null">
  397. kimi_title = #{kimiTitle,jdbcType=VARCHAR},
  398. </if>
  399. <if test="oldKimiTitle != null">
  400. old_kimi_title = #{oldKimiTitle,jdbcType=VARCHAR},
  401. </if>
  402. <if test="kimiTitleUpdateAccount != null">
  403. kimi_title_update_account = #{kimiTitleUpdateAccount,jdbcType=VARCHAR},
  404. </if>
  405. <if test="kimiTitleUpdateTimestamp != null">
  406. kimi_title_update_timestamp = #{kimiTitleUpdateTimestamp,jdbcType=BIGINT},
  407. </if>
  408. <if test="kimiSummary != null">
  409. kimi_summary = #{kimiSummary,jdbcType=VARCHAR},
  410. </if>
  411. <if test="kimiKeys != null">
  412. kimi_keys = #{kimiKeys,jdbcType=VARCHAR},
  413. </if>
  414. <if test="kimiStatus != null">
  415. kimi_status = #{kimiStatus,jdbcType=INTEGER},
  416. </if>
  417. <if test="similarityStatus != null">
  418. similarity_status = #{similarityStatus,jdbcType=INTEGER},
  419. </if>
  420. <if test="startProcessingTime != null">
  421. start_processing_time = #{startProcessingTime,jdbcType=TIMESTAMP},
  422. </if>
  423. <if test="resultStatus != null">
  424. result_status = #{resultStatus,jdbcType=INTEGER},
  425. </if>
  426. <if test="createTime != null">
  427. create_time = #{createTime,jdbcType=TIMESTAMP},
  428. </if>
  429. <if test="articleText != null">
  430. article_text = #{articleText,jdbcType=LONGVARCHAR},
  431. </if>
  432. </set>
  433. where content_id = #{contentId,jdbcType=VARCHAR}
  434. </update>
  435. <update id="updateByPrimaryKeyWithBLOBs" parameterType="com.tzld.piaoquan.longarticle.model.po.longarticle.LongArticlesText">
  436. update long_articles_text
  437. set article_title = #{articleTitle,jdbcType=VARCHAR},
  438. old_article_title = #{oldArticleTitle,jdbcType=VARCHAR},
  439. article_title_update_account = #{articleTitleUpdateAccount,jdbcType=VARCHAR},
  440. article_title_update_timestamp = #{articleTitleUpdateTimestamp,jdbcType=BIGINT},
  441. kimi_title = #{kimiTitle,jdbcType=VARCHAR},
  442. old_kimi_title = #{oldKimiTitle,jdbcType=VARCHAR},
  443. kimi_title_update_account = #{kimiTitleUpdateAccount,jdbcType=VARCHAR},
  444. kimi_title_update_timestamp = #{kimiTitleUpdateTimestamp,jdbcType=BIGINT},
  445. kimi_summary = #{kimiSummary,jdbcType=VARCHAR},
  446. kimi_keys = #{kimiKeys,jdbcType=VARCHAR},
  447. kimi_status = #{kimiStatus,jdbcType=INTEGER},
  448. similarity_status = #{similarityStatus,jdbcType=INTEGER},
  449. start_processing_time = #{startProcessingTime,jdbcType=TIMESTAMP},
  450. result_status = #{resultStatus,jdbcType=INTEGER},
  451. create_time = #{createTime,jdbcType=TIMESTAMP},
  452. article_text = #{articleText,jdbcType=LONGVARCHAR}
  453. where content_id = #{contentId,jdbcType=VARCHAR}
  454. </update>
  455. <update id="updateByPrimaryKey" parameterType="com.tzld.piaoquan.longarticle.model.po.longarticle.LongArticlesText">
  456. update long_articles_text
  457. set article_title = #{articleTitle,jdbcType=VARCHAR},
  458. old_article_title = #{oldArticleTitle,jdbcType=VARCHAR},
  459. article_title_update_account = #{articleTitleUpdateAccount,jdbcType=VARCHAR},
  460. article_title_update_timestamp = #{articleTitleUpdateTimestamp,jdbcType=BIGINT},
  461. kimi_title = #{kimiTitle,jdbcType=VARCHAR},
  462. old_kimi_title = #{oldKimiTitle,jdbcType=VARCHAR},
  463. kimi_title_update_account = #{kimiTitleUpdateAccount,jdbcType=VARCHAR},
  464. kimi_title_update_timestamp = #{kimiTitleUpdateTimestamp,jdbcType=BIGINT},
  465. kimi_summary = #{kimiSummary,jdbcType=VARCHAR},
  466. kimi_keys = #{kimiKeys,jdbcType=VARCHAR},
  467. kimi_status = #{kimiStatus,jdbcType=INTEGER},
  468. similarity_status = #{similarityStatus,jdbcType=INTEGER},
  469. start_processing_time = #{startProcessingTime,jdbcType=TIMESTAMP},
  470. result_status = #{resultStatus,jdbcType=INTEGER},
  471. create_time = #{createTime,jdbcType=TIMESTAMP}
  472. where content_id = #{contentId,jdbcType=VARCHAR}
  473. </update>
  474. </mapper>