FsCourseWatchLogMapper.xml 43 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!DOCTYPE mapper
  3. PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
  4. "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
  5. <mapper namespace="com.fs.course.mapper.FsCourseWatchLogMapper">
  6. <resultMap type="FsCourseWatchLog" id="FsCourseWatchLogResult">
  7. <result property="logId" column="log_id" />
  8. <result property="userId" column="user_id" />
  9. <result property="videoId" column="video_id" />
  10. <result property="logType" column="log_type" />
  11. <result property="createTime" column="create_time" />
  12. <result property="updateTime" column="update_time" />
  13. <result property="qwExternalContactId" column="qw_external_contact_id" />
  14. <result property="duration" column="duration" />
  15. <result property="qwUserId" column="qw_user_id" />
  16. <result property="companyUserId" column="company_user_id" />
  17. <result property="companyId" column="company_id" />
  18. <result property="courseId" column="course_id" />
  19. <result property="sendType" column="send_type" />
  20. <result property="rewardType" column="reward_type" />
  21. <result property="sopId" column="sop_id" />
  22. <result property="finishTime" column="finish_time" />
  23. <result property="sendFinishMsg" column="send_finish_msg" />
  24. <result property="campPeriodTime" column="camp_period_time" />
  25. <result property="lastHeartbeatTime" column="last_heartbeat_time" />
  26. <result property="project" column="project" />
  27. <result property="periodId" column="period_id" />
  28. </resultMap>
  29. <sql id="selectFsCourseWatchLogVo">
  30. select log_id, user_id,finish_time,send_finish_msg,sop_id,video_id,reward_type, log_type, create_time, update_time, qw_external_contact_id, duration, qw_user_id, company_user_id, company_id, course_id,camp_period_time,project,period_id from fs_course_watch_log
  31. </sql>
  32. <select id="selectFsCourseWatchLogList" parameterType="FsCourseWatchLog" resultMap="FsCourseWatchLogResult">
  33. <include refid="selectFsCourseWatchLogVo"/>
  34. <where>
  35. <if test="userId != null "> and user_id = #{userId}</if>
  36. <if test="videoId != null "> and video_id = #{videoId}</if>
  37. <if test="logType != null "> and log_type = #{logType}</if>
  38. <if test="qwExternalContactId != null "> and qw_external_contact_id = #{qwExternalContactId}</if>
  39. <if test="duration != null "> and duration = #{duration}</if>
  40. <if test="qwUserId != null and qwUserId != ''"> and qw_user_id = #{qwUserId}</if>
  41. <if test="companyUserId != null "> and company_user_id = #{companyUserId}</if>
  42. <if test="companyId != null "> and company_id = #{companyId}</if>
  43. <if test="courseId != null "> and course_id = #{courseId}</if>
  44. <if test="sendType != null "> and send_type = #{sendType}</if>
  45. <if test="campPeriodTime != null "> and camp_period_time = #{campPeriodTime}</if>
  46. <if test="project != null "> and project = #{project}</if>
  47. </where>
  48. </select>
  49. <select id="selectFsCourseWatchLogByLogId" parameterType="Long" resultMap="FsCourseWatchLogResult">
  50. <include refid="selectFsCourseWatchLogVo"/>
  51. where log_id = #{logId}
  52. </select>
  53. <select id="selectFsCourseWatchLogListVO" resultType="com.fs.course.vo.FsCourseWatchLogListVO">
  54. select l.log_id,l.project,l.period_id,l.user_id,uc.course_name,v.title as video_name,qec.avatar as external_user_avatar,
  55. l.log_type,SEC_TO_TIME(l.duration) as duration,c.company_name,l.camp_period_time,l.finish_time,
  56. cu.nick_name as company_user_name ,l.send_type,l.create_time,l.update_time,l.last_heartbeat_time,
  57. qu.qw_user_name,qec.name as external_user_name,c.company_id,u.avatar as fsAvatar,u.nick_name as fsNickName,qec.create_time as qec_create_time,
  58. u.is_vip isVip,l.reward_type
  59. from fs_course_watch_log l
  60. left join fs_user_course_video v on v.video_id = l.video_id
  61. left join fs_user_course uc on uc.course_id = l.course_id
  62. left join fs_user u on u.user_id = l.user_id
  63. left join company_user cu on cu.user_id = l.company_user_id
  64. left join company c on c.company_id = l.company_id
  65. LEFT JOIN qw_user qu on qu.id= l.qw_user_id
  66. LEFT JOIN qw_external_contact qec on l.qw_external_contact_id = qec.id
  67. <where>
  68. <if test ='maps.isVip != null and maps.isVip == 0'>
  69. and (l.user_id = 0 or l.user_id is null)
  70. </if>
  71. <if test ='maps.isVip != null and maps.isVip == 1'>
  72. and l.user_id != 0 and l.user_id is not null
  73. </if>
  74. <if test ='maps.sendType !=null'>
  75. and l.send_type = #{maps.sendType}
  76. </if>
  77. <if test ='maps.userId !=null'>
  78. and l.user_id = #{maps.userId}
  79. </if>
  80. <if test ='maps.project !=null'>
  81. and l.project = #{maps.project}
  82. </if>
  83. <if test ='maps.qwExternalContactId !=null'>
  84. and l.qw_external_contact_id = #{maps.qwExternalContactId}
  85. </if>
  86. <if test ='maps.qwUserId !=null'>
  87. and l.qw_user_id = #{maps.qwUserId}
  88. </if>
  89. <if test ='maps.courseId !=null'>
  90. and l.course_id = #{maps.courseId}
  91. </if>
  92. <if test ='maps.videoId !=null'>
  93. and l.video_id = #{maps.videoId}
  94. </if>
  95. <if test ='maps.logType !=null'>
  96. and l.log_type = #{maps.logType}
  97. </if>
  98. <if test ='maps.companyId !=null'>
  99. and l.company_id = #{maps.companyId}
  100. </if>
  101. <if test ='maps.companyUserId !=null'>
  102. and l.company_user_id = #{maps.companyUserId}
  103. </if>
  104. <if test ='maps.companyUserName !=null and maps.companyUserName!=""'>
  105. and cu.nick_name like concat('%', #{maps.companyUserName}, '%')
  106. </if>
  107. <if test ='maps.nickName !=null and maps.nickName!=""'>
  108. and u.nick_name like concat('%', #{maps.nickName}, '%')
  109. </if>
  110. <if test ='maps.externalUserName !=null and maps.externalUserName!=""'>
  111. and qec.name like concat('%', #{maps.externalUserName}, '%')
  112. </if>
  113. <if test= 'maps.qecSTime != null '>
  114. and DATE(qec.create_time) &gt;= DATE(#{maps.qecSTime})
  115. </if>
  116. <if test='maps.qecETime != null '>
  117. and DATE(qec.create_time) &lt;= DATE(#{maps.qecETime})
  118. </if>
  119. <if test= 'maps.sTime != null '>
  120. and l.create_time &gt;= #{maps.sTime}
  121. </if>
  122. <if test='maps.eTime != null '>
  123. and l.create_time &lt;= #{maps.eTime}
  124. </if>
  125. <if test= 'maps.scheduleStartTime != null '>
  126. and l.camp_period_time &gt;= #{maps.scheduleStartTime}
  127. </if>
  128. <if test='maps.scheduleEndTime != null '>
  129. and l.camp_period_time &lt;= #{maps.scheduleEndTime}
  130. </if>
  131. <if test= 'maps.upSTime != null '>
  132. and l.update_time &gt;= #{maps.upSTime}
  133. </if>
  134. <if test='maps.upETime != null '>
  135. and l.update_time &lt;= #{maps.upETime}
  136. </if>
  137. <if test="maps.sopIds != null and maps.sopIds.size() > 0">
  138. and l.sop_id in
  139. <foreach item="sopId" index="index" collection="maps.sopIds" open="(" separator="," close=")">
  140. #{sopId}
  141. </foreach>
  142. </if>
  143. <if test ='maps.project !=null'>
  144. and l.project = #{maps.project}
  145. </if>
  146. <if test="maps.sopId != null and maps.sopId != '' ">
  147. and l.sop_id = #{maps.sopId}
  148. </if>
  149. <if test="maps.periodId != null">
  150. and l.period_id = #{maps.periodId}
  151. </if>
  152. <if test="maps.periodIds != null and maps.periodIds.size() > 0">
  153. and l.period_id in
  154. <foreach item="periodId" index="index" collection="maps.periodIds" open="(" separator="," close=")">
  155. #{periodId}
  156. </foreach>
  157. </if>
  158. <if test="maps.qwUserName != null and maps.qwUserName != '' ">
  159. and qu.qw_user_name = #{maps.qwUserName}
  160. </if>
  161. <if test='maps.cuDeptIdList != null and !maps.cuDeptIdList.isEmpty() and maps.userType != "00" '>
  162. AND cu.dept_id IN
  163. <foreach collection='maps.cuDeptIdList' item='item' open='(' separator=',' close=')'>
  164. #{item}
  165. </foreach>
  166. </if>
  167. </where>
  168. order by l.finish_time desc,l.update_time desc,l.create_time desc
  169. </select>
  170. <select id="selectFsCourseWatchLogListByParam" resultType="com.fs.course.vo.FsCourseWatchLogListVO">
  171. select l.log_id,l.user_id,uc.course_name,v.title as video_name,u.nick_name as fsNickName, u.avatar as fsAvatar,
  172. l.log_type,SEC_TO_TIME(l.duration) as duration,c.company_name,l.camp_period_time,l.finish_time,
  173. cu.nick_name as company_user_name ,l.send_type,l.create_time, qu.qw_user_name,qec.name as external_user_name
  174. from fs_course_watch_log l
  175. left join fs_user_course_video v on v.video_id = l.video_id
  176. left join fs_user_course uc on uc.course_id = l.course_id
  177. left join fs_user u on u.user_id = l.user_id
  178. left join company_user cu on cu.user_id = l.company_user_id
  179. left join company c on c.company_id = l.company_id
  180. LEFT JOIN qw_user qu on qu.id= l.qw_user_id
  181. LEFT JOIN qw_external_contact qec on l.qw_external_contact_id = qec.id
  182. <where>
  183. <if test ='userId !=null'>
  184. and l.user_id = #{userId}
  185. </if>
  186. <if test ='qwUserId !=null'>
  187. and l.qw_user_id = #{qwUserId}
  188. </if>
  189. <if test ='courseId !=null'>
  190. and l.course_id = #{courseId}
  191. </if>
  192. <if test ='videoId !=null'>
  193. and l.video_id = #{videoId}
  194. </if>
  195. <if test ='logType !=null'>
  196. and l.log_type = #{logType}
  197. </if>
  198. <if test ='companyId !=null'>
  199. and l.company_id = #{companyId}
  200. </if>
  201. <if test ='companyUserId !=null'>
  202. and l.company_user_id = #{companyUserId}
  203. </if>
  204. <if test ='companyUserName !=null and maps.companyUserName!=""'>
  205. and cu.nick_name like concat('%', #{companyUserName}, '%')
  206. </if>
  207. <if test ='nickName !=null and maps.nickName!=""'>
  208. and u.nick_name like concat('%', #{nickName}, '%')
  209. </if>
  210. <if test= 'sTime != null '>
  211. and DATE(l.create_time) &gt;= DATE(#{sTime})
  212. </if>
  213. <if test='eTime != null '>
  214. and DATE(l.create_time) &lt;= DATE(#{eTime})
  215. </if>
  216. <if test= 'maps.scheduleStartTime != null '>
  217. and DATE(l.camp_period_time) &gt;= DATE(#{maps.scheduleStartTime})
  218. </if>
  219. <if test='maps.scheduleEndTime != null '>
  220. and DATE(l.camp_period_time) &lt;= DATE(#{maps.scheduleEndTime})
  221. </if>
  222. <if test="sopIds != null and sopIds.size() > 0">
  223. and l.sop_id in
  224. <foreach item="sopId" index="index" collection="sopIds" open="(" separator="," close=")">
  225. #{sopId}
  226. </foreach>
  227. </if>
  228. </where>
  229. order by l.log_id desc
  230. </select>
  231. <insert id="insertFsCourseWatchLog" parameterType="FsCourseWatchLog" useGeneratedKeys="true" keyProperty="logId">
  232. insert into fs_course_watch_log
  233. <trim prefix="(" suffix=")" suffixOverrides=",">
  234. <if test="userId != null">user_id,</if>
  235. <if test="videoId != null">video_id,</if>
  236. <if test="logType != null">log_type,</if>
  237. <if test="createTime != null">create_time,</if>
  238. <if test="updateTime != null">update_time,</if>
  239. <if test="qwExternalContactId != null">qw_external_contact_id,</if>
  240. <if test="duration != null">duration,</if>
  241. <if test="qwUserId != null">qw_user_id,</if>
  242. <if test="companyUserId != null">company_user_id,</if>
  243. <if test="companyId != null">company_id,</if>
  244. <if test="courseId != null">course_id,</if>
  245. <if test="sendType != null">send_type,</if>
  246. <if test="rewardType != null">reward_type,</if>
  247. <if test="sopId != null">sop_id,</if>
  248. <if test="finishTime != null">finish_time,</if>
  249. <if test="sendFinishMsg != null">send_finish_msg,</if>
  250. <if test="campPeriodTime != null">camp_period_time,</if>
  251. <if test="periodId != null">period_id,</if>
  252. <if test="project != null">project,</if>
  253. </trim>
  254. <trim prefix="values (" suffix=")" suffixOverrides=",">
  255. <if test="userId != null">#{userId},</if>
  256. <if test="videoId != null">#{videoId},</if>
  257. <if test="logType != null">#{logType},</if>
  258. <if test="createTime != null">#{createTime},</if>
  259. <if test="updateTime != null">#{updateTime},</if>
  260. <if test="qwExternalContactId != null">#{qwExternalContactId},</if>
  261. <if test="duration != null">#{duration},</if>
  262. <if test="qwUserId != null">#{qwUserId},</if>
  263. <if test="companyUserId != null">#{companyUserId},</if>
  264. <if test="companyId != null">#{companyId},</if>
  265. <if test="courseId != null">#{courseId},</if>
  266. <if test="sendType != null">#{sendType},</if>
  267. <if test="rewardType != null">#{rewardType},</if>
  268. <if test="sopId != null">#{sopId},</if>
  269. <if test="finishTime != null">#{finishTime},</if>
  270. <if test="sendFinishMsg != null">#{sendFinishMsg},</if>
  271. <if test="campPeriodTime != null">#{campPeriodTime},</if>
  272. <if test="periodId != null">#{periodId},</if>
  273. <if test="project != null">#{project},</if>
  274. </trim>
  275. </insert>
  276. <insert id="insertOrUpdateFsCourseWatchLog" parameterType="FsCourseWatchLog">
  277. insert into fs_course_watch_log
  278. <trim prefix="(" suffix=")" suffixOverrides=",">
  279. <if test="userId != null">user_id,</if>
  280. <if test="videoId != null">video_id,</if>
  281. <if test="logType != null">log_type,</if>
  282. <if test="createTime != null">create_time,</if>
  283. <if test="updateTime != null">update_time,</if>
  284. <if test="qwExternalContactId != null">qw_external_contact_id,</if>
  285. <if test="duration != null">duration,</if>
  286. <if test="qwUserId != null">qw_user_id,</if>
  287. <if test="companyUserId != null">company_user_id,</if>
  288. <if test="companyId != null">company_id,</if>
  289. <if test="courseId != null">course_id,</if>
  290. <if test="sendType != null">send_type,</if>
  291. <if test="rewardType != null">reward_type,</if>
  292. <if test="sopId != null">sop_id,</if>
  293. <if test="finishTime != null">finish_time,</if>
  294. <if test="sendFinishMsg != null">send_finish_msg,</if>
  295. <if test="campPeriodTime != null">camp_period_time,</if>
  296. <if test="project != null">project,</if>
  297. </trim>
  298. <trim prefix="values (" suffix=")" suffixOverrides=",">
  299. <if test="userId != null">#{userId},</if>
  300. <if test="videoId != null">#{videoId},</if>
  301. <if test="logType != null">#{logType},</if>
  302. <if test="createTime != null">#{createTime},</if>
  303. <if test="updateTime != null">#{updateTime},</if>
  304. <if test="qwExternalContactId != null">#{qwExternalContactId},</if>
  305. <if test="duration != null">#{duration},</if>
  306. <if test="qwUserId != null">#{qwUserId},</if>
  307. <if test="companyUserId != null">#{companyUserId},</if>
  308. <if test="companyId != null">#{companyId},</if>
  309. <if test="courseId != null">#{courseId},</if>
  310. <if test="sendType != null">#{sendType},</if>
  311. <if test="rewardType != null">#{rewardType},</if>
  312. <if test="sopId != null">#{sopId},</if>
  313. <if test="finishTime != null">#{finishTime},</if>
  314. <if test="sendFinishMsg != null">#{sendFinishMsg},</if>
  315. <if test="campPeriodTime != null">#{campPeriodTime},</if>
  316. <if test="project != null">#{project},</if>
  317. </trim>
  318. on duplicate key update
  319. <trim suffixOverrides=",">
  320. <if test="updateTime != null">update_time = #{updateTime},</if>
  321. </trim>
  322. </insert>
  323. <insert id="insertFsCourseWatchLogBatch" parameterType="java.util.List" useGeneratedKeys="true" keyProperty="logId">
  324. INSERT INTO fs_course_watch_log (
  325. user_id,
  326. video_id,
  327. log_type,
  328. create_time,
  329. update_time,
  330. qw_external_contact_id,
  331. duration,
  332. qw_user_id,
  333. company_user_id,
  334. company_id,
  335. course_id,
  336. send_type,
  337. reward_type,
  338. sop_id,
  339. camp_period_time,
  340. project,
  341. period_id,
  342. im_msg_send_detail_id
  343. )
  344. VALUES
  345. <foreach collection="watchLogs" item="log" separator=",">
  346. (
  347. #{log.userId},
  348. #{log.videoId},
  349. #{log.logType},
  350. #{log.createTime},
  351. #{log.updateTime},
  352. #{log.qwExternalContactId},
  353. #{log.duration},
  354. #{log.qwUserId},
  355. #{log.companyUserId},
  356. #{log.companyId},
  357. #{log.courseId},
  358. #{log.sendType},
  359. #{log.rewardType},
  360. #{log.sopId},
  361. #{log.campPeriodTime},
  362. #{log.project},
  363. #{log.periodId},
  364. #{log.imMsgSendDetailId}
  365. )
  366. </foreach>
  367. ON DUPLICATE KEY UPDATE
  368. update_time = NOW(),
  369. im_msg_send_detail_id = VALUES(im_msg_send_detail_id)
  370. </insert>
  371. <update id="updateFsCourseWatchLog" parameterType="FsCourseWatchLog">
  372. update fs_course_watch_log
  373. <trim prefix="SET" suffixOverrides=",">
  374. <if test="userId != null">user_id = #{userId},</if>
  375. <if test="videoId != null">video_id = #{videoId},</if>
  376. <if test="logType != null">log_type = #{logType},</if>
  377. <if test="createTime != null">create_time = #{createTime},</if>
  378. <if test="updateTime != null">update_time = #{updateTime},</if>
  379. <if test="qwExternalContactId != null">qw_external_contact_id = #{qwExternalContactId},</if>
  380. <if test="duration != null">duration = #{duration},</if>
  381. <if test="qwUserId != null">qw_user_id = #{qwUserId},</if>
  382. <if test="companyUserId != null">company_user_id = #{companyUserId},</if>
  383. <if test="companyId != null">company_id = #{companyId},</if>
  384. <if test="courseId != null">course_id = #{courseId},</if>
  385. <if test="sendType != null">send_type = #{sendType},</if>
  386. <if test="rewardType != null">reward_type = #{rewardType},</if>
  387. <if test="sopId != null">sop_id = #{sopId},</if>
  388. <if test="finishTime != null">finish_time = #{finishTime},</if>
  389. <if test="sendFinishMsg != null">send_finish_msg = #{sendFinishMsg},</if>
  390. <if test="lastHeartbeatTime != null">last_heartbeat_time = #{lastHeartbeatTime},</if>
  391. <if test="periodId != null">period_id = #{periodId},</if>
  392. <if test="project != null">project = #{project},</if>
  393. </trim>
  394. where log_id = #{logId}
  395. </update>
  396. <delete id="deleteFsCourseWatchLogByLogId" parameterType="Long">
  397. delete from fs_course_watch_log where log_id = #{logId}
  398. </delete>
  399. <delete id="deleteFsCourseWatchLogByLogIds" parameterType="String">
  400. delete from fs_course_watch_log where log_id in
  401. <foreach item="logId" collection="array" open="(" separator="," close=")">
  402. #{logId}
  403. </foreach>
  404. </delete>
  405. <select id="selectFsCourseWatchLogByFinishTime" resultType="com.fs.course.param.FsCourseWatchLogByFinishTimeParam">
  406. <![CDATA[
  407. SELECT
  408. fcwl.log_id,
  409. fcwl.create_time,
  410. fcwl.qw_external_contact_id,
  411. fcwl.qw_user_id,
  412. fcwl.user_id,
  413. fcwl.company_user_id,
  414. fcwl.company_id,
  415. fcwl.sop_id,
  416. fcwl.finish_time,
  417. fcwl.camp_period_time,
  418. qec.corp_id,
  419. qec.external_user_id,
  420. qec.tag_ids,
  421. qec.user_id AS qw_user,
  422. qec.name AS external_contact_name
  423. FROM
  424. fs_course_watch_log fcwl
  425. LEFT JOIN qw_external_contact qec ON fcwl.qw_external_contact_id = qec.id
  426. WHERE
  427. DATE(fcwl.finish_time)= '2025-02-09'
  428. and fcwl.camp_period_time is not NULL
  429. ]]>
  430. </select>
  431. <select id="getWatchLogByFsUser" resultType="com.fs.course.domain.FsCourseWatchLog">
  432. SELECT
  433. log_id,
  434. user_id,
  435. video_id,
  436. log_type,
  437. create_time,
  438. update_time,
  439. duration,
  440. company_user_id,
  441. company_id,
  442. course_id,
  443. send_type,
  444. reward_type,
  445. last_heartbeat_time,
  446. sop_id,
  447. finish_time,
  448. send_finish_msg,
  449. camp_period_time
  450. FROM
  451. fs_course_watch_log
  452. WHERE
  453. send_type = 1
  454. AND video_id = #{videoId}
  455. AND user_id = #{fsUserId}
  456. AND company_user_id = #{companyUserId} order by log_id desc limit 1
  457. </select>
  458. <select id="selectFsCourseWatchLogStatisticsListVONew"
  459. resultType="com.fs.course.vo.FsCourseWatchLogStatisticsListVO">
  460. SELECT
  461. o.company_user_id,o.user_id,DATE(o.create_time) create_time,
  462. SUM(CASE WHEN o.log_type = '1' THEN 1 ELSE 0 END) AS type1,
  463. SUM(CASE WHEN o.log_type = '2' THEN 1 ELSE 0 END) AS type2,
  464. SUM(CASE WHEN o.log_type = '3' THEN 1 ELSE 0 END) AS type3,
  465. SUM(CASE WHEN o.log_type = '4' THEN 1 ELSE 0 END) AS type4,
  466. o.project as project,
  467. o.course_id as course_id,
  468. o.video_id as video_id
  469. FROM fs_course_watch_log o
  470. <where>
  471. send_type=1
  472. <if test="companyId != null">
  473. and o.company_id=#{companyId}
  474. </if>
  475. <if test= 'sTime != null '>
  476. and DATE(o.create_time) &gt;= #{sTime}
  477. </if>
  478. <if test='eTime != null '>
  479. and DATE(o.create_time) &lt;= #{eTime}
  480. </if>
  481. <if test ='courseId !=null'>
  482. and o.course_id = #{courseId}
  483. </if>
  484. <if test ='videoId !=null'>
  485. and o.video_id = #{videoId}
  486. </if>
  487. <if test="companyUserId != null">
  488. and o.company_user_id = #{companyUserId}
  489. </if>
  490. <if test="project != null">
  491. and o.project = #{project}
  492. </if>
  493. <if test="userId != null">
  494. and o.user_id = #{userId}
  495. </if>
  496. </where>
  497. GROUP BY o.video_id,o.user_id,DATE(o.create_time),o.project,o.course_id
  498. ORDER BY o.video_id ,DATE(o.create_time)
  499. <!-- limit ${(pageNum-1)*pageSize},${pageSize}-->
  500. </select>
  501. <select id="selectFsCourseWatchLogStatisticsListVONewCount" resultType="java.lang.Long">
  502. SELECT COUNT(*)
  503. FROM (
  504. SELECT 1
  505. FROM fs_course_watch_log o
  506. <where>
  507. send_type=2
  508. <if test="companyId != null">
  509. and o.company_id=#{companyId}
  510. </if>
  511. <if test= 'sTime != null '>
  512. and o.create_time &gt;= #{startDate}
  513. </if>
  514. <if test='eTime != null '>
  515. and o.create_time &lt;= #{endDate}
  516. </if>
  517. <if test ='courseId !=null'>
  518. and o.course_id = #{courseId}
  519. </if>
  520. <if test ='videoId !=null'>
  521. and o.video_id = #{videoId}
  522. </if>
  523. <if test="companyUserId != null">
  524. and o.company_user_id = #{companyUserId}
  525. </if>
  526. <if test="project != null">
  527. and o.project = #{project}
  528. </if>
  529. <if test="userId != null">
  530. and o.user_id = #{userId}
  531. </if>
  532. </where>
  533. GROUP BY o.video_id, o.user_id, DATE(o.create_time), o.project, o.course_id
  534. ) AS grouped_results_count
  535. </select>
  536. <!-- 根据条件查询条数 -->
  537. <select id="countByMap" resultType="java.lang.Integer">
  538. select count(fcwl.log_id) from fs_course_watch_log fcwl
  539. <where>
  540. <if test="params.logTypes != null and params.logTypes.size() > 0">
  541. and fcwl.log_type in
  542. <foreach collection="params.logTypes" open="(" close=")" separator="," item="logType">
  543. #{logType}
  544. </foreach>
  545. </if>
  546. <if test="params.companyUserId != null">
  547. and fcwl.company_user_id = #{params.companyUserId}
  548. </if>
  549. <if test="params.date != null">
  550. and date(fcwl.create_time) = #{params.date}
  551. </if>
  552. </where>
  553. </select>
  554. <update id="batchUpdateWatchLog" parameterType="java.util.List">
  555. UPDATE fs_course_watch_log
  556. SET
  557. duration = CASE
  558. <foreach collection="list" item="item" index="index">
  559. WHEN video_id = #{item.videoId} AND qw_external_contact_id = #{item.qwExternalContactId} AND qw_user_id = #{item.qwUserId} THEN
  560. CASE
  561. <!-- 仅当传入的duration > 当前值时才更新 -->
  562. WHEN #{item.duration} IS NOT NULL AND #{item.duration} > duration THEN #{item.duration}
  563. ELSE duration <!-- 如果 duration 为 null,保持原值 -->
  564. END
  565. </foreach>
  566. END,
  567. last_heartbeat_time = CASE
  568. <foreach collection="list" item="item" index="index">
  569. WHEN video_id = #{item.videoId} AND qw_external_contact_id = #{item.qwExternalContactId} AND qw_user_id = #{item.qwUserId} THEN
  570. CASE
  571. WHEN #{item.lastHeartbeatTime} IS NOT NULL THEN #{item.lastHeartbeatTime}
  572. ELSE last_heartbeat_time <!-- 如果 last_heartbeat_time 为 null,保持原值 -->
  573. END
  574. </foreach>
  575. END,
  576. finish_time = CASE
  577. <foreach collection="list" item="item" index="index">
  578. WHEN video_id = #{item.videoId} AND qw_external_contact_id = #{item.qwExternalContactId} AND qw_user_id = #{item.qwUserId} THEN
  579. CASE
  580. WHEN finish_time IS NULL THEN #{item.finishTime} <!-- 如果表中 finish_time 为 null,更新为传入的值 -->
  581. ELSE finish_time <!-- 如果表中 finish_time 不为 null,保持原值 -->
  582. END
  583. </foreach>
  584. END,
  585. log_type = CASE
  586. <foreach collection="list" item="item" index="index">
  587. WHEN video_id = #{item.videoId} AND qw_external_contact_id = #{item.qwExternalContactId} AND qw_user_id = #{item.qwUserId} THEN
  588. CASE
  589. WHEN log_type = 2 THEN log_type <!-- 如果 log_type 已经是 2,保持原值 -->
  590. WHEN #{item.logType} IS NOT NULL AND log_type != 2 THEN #{item.logType} <!-- 如果 log_type 不是 2,更新为传入的值 -->
  591. ELSE log_type <!-- 其他情况保持原值 -->
  592. END
  593. </foreach>
  594. END
  595. WHERE
  596. (video_id, qw_external_contact_id, qw_user_id) IN
  597. <foreach collection="list" item="item" index="index" open="(" separator="," close=")">
  598. (#{item.videoId}, #{item.qwExternalContactId}, #{item.qwUserId})
  599. </foreach>
  600. </update>
  601. <update id="batchUpdateWatchLogSendMsg" parameterType="java.util.List">
  602. UPDATE fs_course_watch_log
  603. SET send_finish_msg = CASE
  604. <foreach collection="list" item="item">
  605. WHEN log_id = #{item.logId} THEN #{item.sendFinishMsg}
  606. </foreach>
  607. ELSE send_finish_msg
  608. END
  609. WHERE log_id IN
  610. <foreach collection="list" item="item" open="(" separator="," close=")">
  611. #{item.logId}
  612. </foreach>
  613. </update>
  614. <update id="batchUpdateFsUserWatchLog" parameterType="java.util.List">
  615. UPDATE fs_course_watch_log
  616. SET
  617. duration = CASE
  618. <foreach collection="list" item="item" index="index">
  619. WHEN video_id = #{item.videoId} AND user_id = #{item.userId} AND company_user_id = #{item.companyUserId} THEN
  620. CASE
  621. <!-- 仅当传入的duration > 当前值时才更新 -->
  622. WHEN #{item.duration} IS NOT NULL AND #{item.duration} > duration THEN #{item.duration}
  623. ELSE duration <!-- 如果 duration 为 null,保持原值 -->
  624. END
  625. </foreach>
  626. END,
  627. last_heartbeat_time = CASE
  628. <foreach collection="list" item="item" index="index">
  629. WHEN video_id = #{item.videoId} AND user_id = #{item.userId} AND company_user_id = #{item.companyUserId} THEN
  630. CASE
  631. WHEN #{item.lastHeartbeatTime} IS NOT NULL THEN #{item.lastHeartbeatTime}
  632. ELSE last_heartbeat_time <!-- 如果 last_heartbeat_time 为 null,保持原值 -->
  633. END
  634. </foreach>
  635. END,
  636. finish_time = CASE
  637. <foreach collection="list" item="item" index="index">
  638. WHEN video_id = #{item.videoId} AND user_id = #{item.userId} AND company_user_id = #{item.companyUserId} THEN
  639. CASE
  640. WHEN finish_time IS NULL THEN #{item.finishTime} <!-- 如果表中 finish_time 为 null,更新为传入的值 -->
  641. ELSE finish_time <!-- 如果表中 finish_time 不为 null,保持原值 -->
  642. END
  643. </foreach>
  644. END,
  645. log_type = CASE
  646. <foreach collection="list" item="item" index="index">
  647. WHEN video_id = #{item.videoId} AND user_id = #{item.userId} AND company_user_id = #{item.companyUserId} THEN
  648. CASE
  649. WHEN log_type = 2 THEN log_type <!-- 如果 log_type 已经是 2,保持原值 -->
  650. WHEN #{item.logType} IS NOT NULL AND log_type != 2 THEN #{item.logType} <!-- 如果 log_type 不是 2,更新为传入的值 -->
  651. ELSE log_type <!-- 其他情况保持原值 -->
  652. END
  653. </foreach>
  654. END
  655. WHERE
  656. (video_id, user_id, company_user_id) IN
  657. <foreach collection="list" item="item" index="index" open="(" separator="," close=")">
  658. (#{item.videoId}, #{item.userId}, #{item.companyUserId})
  659. </foreach>
  660. </update>
  661. <update id="batchUpdateWatchLogIsOpen">
  662. UPDATE fs_course_watch_log
  663. SET
  664. duration = CASE
  665. <foreach collection="list" item="item" index="index">
  666. WHEN video_id = #{item.videoId} AND user_id = #{item.userId} THEN
  667. CASE
  668. <!-- 仅当传入的duration > 当前值时才更新 -->
  669. WHEN #{item.duration} IS NOT NULL AND #{item.duration} > duration THEN #{item.duration}
  670. ELSE duration <!-- 如果 duration 为 null,保持原值 -->
  671. END
  672. </foreach>
  673. END,
  674. last_heartbeat_time = CASE
  675. <foreach collection="list" item="item" index="index">
  676. WHEN video_id = #{item.videoId} AND user_id = #{item.userId} THEN
  677. CASE
  678. WHEN #{item.lastHeartbeatTime} IS NOT NULL THEN #{item.lastHeartbeatTime}
  679. ELSE last_heartbeat_time <!-- 如果 last_heartbeat_time 为 null,保持原值 -->
  680. END
  681. </foreach>
  682. END,
  683. finish_time = CASE
  684. <foreach collection="list" item="item" index="index">
  685. WHEN video_id = #{item.videoId} AND user_id = #{item.userId} THEN
  686. CASE
  687. WHEN finish_time IS NULL THEN #{item.finishTime} <!-- 如果表中 finish_time 为 null,更新为传入的值 -->
  688. ELSE finish_time <!-- 如果表中 finish_time 不为 null,保持原值 -->
  689. END
  690. </foreach>
  691. END,
  692. log_type = CASE
  693. <foreach collection="list" item="item" index="index">
  694. WHEN video_id = #{item.videoId} AND user_id = #{item.userId} THEN
  695. CASE
  696. WHEN log_type = 2 THEN log_type <!-- 如果 log_type 已经是 2,保持原值 -->
  697. WHEN #{item.logType} IS NOT NULL AND log_type != 2 THEN #{item.logType} <!-- 如果 log_type 不是 2,更新为传入的值 -->
  698. ELSE log_type <!-- 其他情况保持原值 -->
  699. END
  700. </foreach>
  701. END
  702. WHERE
  703. (video_id, user_id) IN
  704. <foreach collection="list" item="item" index="index" open="(" separator="," close=")">
  705. (#{item.videoId}, #{item.userId})
  706. </foreach>
  707. </update>
  708. <select id="selectListBytrainingCampId" resultType="com.fs.course.vo.FsCourseWatchLogVO">
  709. select
  710. uc.course_name,v.title as video_name,
  711. watch.log_id,
  712. watch.user_id,
  713. watch.finish_time,
  714. watch.send_finish_msg,
  715. watch.sop_id,
  716. watch.video_id,
  717. watch.reward_type,
  718. watch.log_type,
  719. watch.create_time,
  720. watch.update_time,
  721. watch.qw_external_contact_id,
  722. watch.duration,
  723. watch.qw_user_id,
  724. watch.company_user_id,
  725. watch.company_id,
  726. watch.course_id,
  727. watch.camp_period_time
  728. from
  729. fs_user_course_training_camp camp
  730. left join fs_user_course_period period on
  731. camp.training_camp_id = period.training_camp_id
  732. left join fs_course_watch_log watch on
  733. period.period_id = watch.period_id
  734. left join fs_user_course uc on uc.course_id = watch.course_id
  735. left join fs_user_course_video v on v.video_id = watch.video_id
  736. <where>
  737. `period`.del_flag = '0' and watch.log_type &lt;&gt; 3
  738. <if test="trainingCampId != null">and camp.training_camp_id = #{trainingCampId}</if>
  739. <if test="userId != null">and watch.user_id = #{userId}</if>
  740. <if test="periodId != null">and `period`.period_id = #{periodId}</if>
  741. </where>
  742. </select>
  743. <select id="selectFsCourseWatchLogListVOexport" resultType="com.fs.course.vo.FsCourseWatchLogListVO">
  744. SELECT
  745. l.log_id,
  746. l.project AS project,
  747. l.period_id,
  748. l.user_id,
  749. l.log_type,
  750. SEC_TO_TIME(l.duration) AS duration,
  751. l.camp_period_time,
  752. l.finish_time,
  753. l.send_type,
  754. l.create_time,
  755. l.update_time,
  756. l.last_heartbeat_time,
  757. l.company_id,
  758. l.company_user_id,
  759. l.course_id,
  760. l.video_id,
  761. l.qw_user_id,
  762. l.qw_external_contact_id,
  763. l.sop_id,
  764. qec.create_time as qec_create_time
  765. FROM
  766. fs_course_watch_log l LEFT JOIN qw_external_contact qec on l.qw_external_contact_id = qec.id
  767. left join fs_user u on u.user_id = l.user_id
  768. left join company_user cu on cu.user_id = l.company_user_id
  769. <where>
  770. <if test ='maps.sendType !=null'>
  771. and l.send_type = #{maps.sendType}
  772. </if>
  773. <if test ='maps.userId !=null'>
  774. and l.user_id = #{maps.userId}
  775. </if>
  776. <if test ='maps.qwExternalContactId !=null'>
  777. and l.qw_external_contact_id = #{maps.qwExternalContactId}
  778. </if>
  779. <if test ='maps.qwUserId !=null'>
  780. and l.qw_user_id = #{maps.qwUserId}
  781. </if>
  782. <if test ='maps.courseId !=null'>
  783. and l.course_id = #{maps.courseId}
  784. </if>
  785. <if test ='maps.videoId !=null'>
  786. and l.video_id = #{maps.videoId}
  787. </if>
  788. <if test ='maps.logType !=null'>
  789. and l.log_type = #{maps.logType}
  790. </if>
  791. <if test ='maps.companyId !=null'>
  792. and l.company_id = #{maps.companyId}
  793. </if>
  794. <if test ='maps.companyUserId !=null'>
  795. and l.company_user_id = #{maps.companyUserId}
  796. </if>
  797. <if test ='maps.companyUserName !=null and maps.companyUserName!=""'>
  798. and cu.nick_name like concat('%', #{maps.companyUserName}, '%')
  799. </if>
  800. <if test ='maps.nickName !=null and maps.nickName!=""'>
  801. and u.nick_name like concat('%', #{maps.nickName}, '%')
  802. </if>
  803. <if test ='maps.externalUserName !=null and maps.externalUserName!=""'>
  804. and qec.name like concat('%', #{maps.externalUserName}, '%')
  805. </if>
  806. <if test= 'maps.qecSTime != null '>
  807. and DATE(qec.create_time) &gt;= DATE(#{maps.qecSTime})
  808. </if>
  809. <if test='maps.qecETime != null '>
  810. and DATE(qec.create_time) &lt;= DATE(#{maps.qecETime})
  811. </if>
  812. <if test= 'maps.sTime != null '>
  813. and DATE(l.create_time) &gt;= DATE(#{maps.sTime})
  814. </if>
  815. <if test='maps.eTime != null '>
  816. and DATE(l.create_time) &lt;= DATE(#{maps.eTime})
  817. </if>
  818. <if test= 'maps.scheduleStartTime != null '>
  819. and DATE(l.camp_period_time) &gt;= DATE(#{maps.scheduleStartTime})
  820. </if>
  821. <if test='maps.scheduleEndTime != null '>
  822. and DATE(l.camp_period_time) &lt;= DATE(#{maps.scheduleEndTime})
  823. </if>
  824. <if test= 'maps.upSTime != null '>
  825. and DATE(l.update_time) &gt;= DATE(#{maps.upSTime})
  826. </if>
  827. <if test='maps.upETime != null '>
  828. and DATE(l.update_time) &lt;= DATE(#{maps.upETime})
  829. </if>
  830. <if test="maps.sopIds != null and maps.sopIds.size() > 0">
  831. and l.sop_id in
  832. <foreach item="sopId" index="index" collection="maps.sopIds" open="(" separator="," close=")">
  833. #{sopId}
  834. </foreach>
  835. </if>
  836. <if test="maps.periodIds != null and maps.periodIds.size() > 0">
  837. and l.period_id in
  838. <foreach item="periodId" index="index" collection="maps.periodIds" open="(" separator="," close=")">
  839. #{periodId}
  840. </foreach>
  841. </if>
  842. </where>
  843. order by l.finish_time desc,l.update_time desc,l.create_time desc
  844. </select>
  845. <select id="getWatchCourseByVideoId" resultType="com.fs.course.domain.FsCourseWatchLog">
  846. SELECT
  847. *
  848. FROM
  849. fs_course_watch_log
  850. WHERE
  851. send_type = 1
  852. AND video_id = #{videoId}
  853. AND user_id in
  854. <foreach item="userId" index="index" collection="userIds" open="(" separator="," close=")">
  855. #{userId}
  856. </foreach>
  857. ORDER BY
  858. log_id DESC
  859. </select>
  860. <select id="getUserCountByCampId" resultType="java.lang.Integer">
  861. select count(distinct cwl.user_id)
  862. from fs_user_course_period ucp
  863. inner join fs_course_watch_log cwl on ucp.period_id = cwl.period_id
  864. where ucp.training_camp_id = #{trainingCampId}
  865. </select>
  866. <select id="selectFsCourseWatchLogStatisticsListByCompanyVO"
  867. resultType="com.fs.course.vo.FsCourseWatchLogStatisticsListByCompanyVO">
  868. SELECT
  869. o.video_id,
  870. o.company_id,
  871. comp.company_name,
  872. o.qw_user_id,
  873. DATE(o.create_time) create_time,
  874. v.title videoName,
  875. uc.course_name,
  876. SUM(CASE WHEN o.log_type = '1' THEN 1 ELSE 0 END) AS type1,
  877. SUM(CASE WHEN o.log_type = '2' THEN 1 ELSE 0 END) AS type2,
  878. SUM(CASE WHEN o.log_type = '3' THEN 1 ELSE 0 END) AS type3,
  879. SUM(CASE WHEN o.log_type = '4' THEN 1 ELSE 0 END) AS type4
  880. FROM
  881. fs_course_watch_log o
  882. LEFT JOIN fs_user_course_video v ON v.video_id = o.video_id
  883. LEFT JOIN company comp ON comp.company_id = o.company_id
  884. LEFT JOIN qw_user qu ON qu.id = o.qw_user_id
  885. LEFT JOIN fs_user_course uc ON uc.course_id = v.course_id
  886. <where>
  887. <if test="sendType != null">
  888. and send_type = #{sendType}
  889. </if>
  890. <if test="companyId != null">
  891. and o.company_id = #{companyId}
  892. </if>
  893. <if test="sTime != null">
  894. AND DATE (o.create_time) &gt;= DATE (#{sTime})
  895. </if>
  896. <if test="eTime != null">
  897. AND DATE (o.create_time) &lt;= DATE (#{eTime})
  898. </if>
  899. <if test="courseId != null">
  900. and o.course_id = #{courseId}
  901. </if>
  902. <if test="videoId != null">
  903. and o.video_id = #{videoId}
  904. </if>
  905. </where>
  906. GROUP BY
  907. DATE (o.create_time),
  908. o.company_id
  909. ORDER BY
  910. comp.company_id,
  911. DATE (o.create_time)
  912. </select>
  913. <select id="selectQwFsCourseWatchLogStatisticsListVO"
  914. resultType="com.fs.course.vo.FsCourseWatchLogStatisticsListVO" parameterType="com.fs.qw.param.QwSidebarStatsParam">
  915. SELECT
  916. o.project,
  917. o.course_id AS courseId,
  918. uc.course_name AS courseName,
  919. o.video_id AS videoId,
  920. v.title AS videoName,
  921. CASE WHEN o.log_type = 1 THEN 1 END AS type1,
  922. CASE WHEN o.log_type = 2 THEN 1 END AS type2,
  923. CASE WHEN o.log_type = 3 THEN 1 END AS type3,
  924. CASE WHEN o.log_type = 4 THEN 1 END AS type4,
  925. o.qw_user_id,
  926. o.user_id AS userId,
  927. o.company_user_id AS companyUserId,
  928. o.company_id AS companyId,
  929. o.create_time AS createTime
  930. FROM
  931. fs_course_watch_log o
  932. LEFT JOIN fs_user_course_video v ON v.video_id = o.video_id
  933. LEFT JOIN fs_user_course uc ON uc.course_id = v.course_id
  934. WHERE o.qw_external_contact_id=#{qwExternalContactId}
  935. <if test="sendType != null">
  936. AND send_type = #{sendType}
  937. </if>
  938. <if test="startTime != null">
  939. AND DATE(o.create_time) &gt;= DATE(#{startTime})
  940. </if>
  941. <if test="endTime != null">
  942. AND DATE(o.create_time) &lt;= DATE(#{endTime})
  943. </if>
  944. o.create_time DESC
  945. </select>
  946. <!-- 统计当天各公司的观看人数和完播人数, 存到redis中,定时任务每 ? 分钟执行一次 -->
  947. <select id="watchCourseStatisticsGroupByCompany" resultType="com.fs.statis.dto.WatchCourseStatisticsResultDTO">
  948. SELECT
  949. o.company_id AS companyId,
  950. c.company_name AS companyName,
  951. o.send_type,
  952. COUNT(DISTINCT o.user_id) AS watchUserCount,
  953. COUNT(o.log_id) AS watchCount,
  954. sum(case when o.log_type = 2 then 1 else 0 end) AS finishCount,
  955. COUNT(DISTINCT CASE WHEN o.log_type = 2 THEN o.user_id END) AS finishUserCount
  956. FROM
  957. fs_course_watch_log o
  958. LEFT JOIN company c ON c.company_id = o.company_id
  959. WHERE
  960. o.create_time &gt;= #{params.startTime}
  961. AND o.create_time &lt;= #{params.endTime}
  962. GROUP BY
  963. o.company_id,
  964. o.send_type
  965. </select>
  966. </mapper>