CourseScheduleMapper.xml 41 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932
  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.yonge.cooleshow.biz.dal.dao.CourseScheduleDao">
  4. <resultMap id="BaseResultMap" type="com.yonge.cooleshow.biz.dal.entity.CourseSchedule">
  5. <id column="id_" jdbcType="INTEGER" property="id"/>
  6. <result column="course_group_id_" jdbcType="INTEGER" property="courseGroupId"/>
  7. <result column="type_" jdbcType="VARCHAR" property="type"/>
  8. <result column="status_" jdbcType="VARCHAR" property="status"/>
  9. <result column="class_num_" jdbcType="INTEGER" property="classNum"/>
  10. <result column="teacher_id_" jdbcType="INTEGER" property="teacherId"/>
  11. <result column="class_date_" jdbcType="TIMESTAMP" property="classDate"/>
  12. <result column="start_time_" jdbcType="TIMESTAMP" property="startTime"/>
  13. <result column="end_time_" jdbcType="TIMESTAMP" property="endTime"/>
  14. <result column="lock_" jdbcType="INTEGER" property="lock"/>
  15. <result column="lock_time_" jdbcType="TIMESTAMP" property="lockTime"/>
  16. <result column="ex_student_num_" jdbcType="INTEGER" property="exStudentNum"/>
  17. <result column="created_by_" jdbcType="INTEGER" property="createdBy"/>
  18. <result column="created_time_" jdbcType="TIMESTAMP" property="createdTime"/>
  19. <result column="updated_by_" jdbcType="INTEGER" property="updatedBy"/>
  20. <result column="updated_time_" jdbcType="TIMESTAMP" property="updatedTime"/>
  21. </resultMap>
  22. <sql id="Base_Column_List">
  23. id_
  24. , course_group_id_, type_, status_,class_num_, teacher_id_, class_date_, start_time_, end_time_, lock_, lock_time_, ex_student_num_, created_by_, created_time_, updated_by_, updated_time_
  25. </sql>
  26. <insert id="insertBatch" keyColumn="id_" keyProperty="id" useGeneratedKeys="true"
  27. parameterType="com.yonge.cooleshow.biz.dal.entity.CourseSchedule">
  28. insert into course_schedule(course_group_id_, type_, status_,class_num_, teacher_id_, class_date_, start_time_,
  29. end_time_, lock_, lock_time_, ex_student_num_, created_by_, created_time_, updated_by_,
  30. updated_time_)
  31. values
  32. <foreach collection="entities" item="entity" separator=",">
  33. (#{entity.courseGroupId}, #{entity.type}, #{entity.status},#{entity.classNum}, #{entity.teacherId}, #{entity.classDate},
  34. #{entity.startTime}, #{entity.endTime}, #{entity.lock}, #{entity.lockTime},
  35. #{entity.exStudentNum}, #{entity.createdBy}, #{entity.createdTime}, #{entity.updatedBy},
  36. #{entity.updatedTime})
  37. </foreach>
  38. </insert>
  39. <select id="queryTeacherTotal" resultType="com.yonge.cooleshow.biz.dal.vo.TeacherTotalVo">
  40. select
  41. t.user_id_ as userId,
  42. a.expTime,
  43. a.unExpTime,
  44. b.starGrade
  45. from teacher t
  46. left join (
  47. <!-- 统计查询已上课时数,未上课时数 -->
  48. select
  49. a.teacher_id_ as userId,
  50. sum(if(a.end_time_ &lt;= now(),1,0)) as expTime,
  51. sum(if(a.end_time_ &gt; now(),1,0)) as unExpTime
  52. from course_schedule a
  53. where a.lock_ = 0 and a.type_ in ('PRACTICE','PIANO_ROOM_CLASS')
  54. <if test="userId != null and userId != ''">
  55. and a.teacher_id_ = #{userId}
  56. </if>
  57. group by a.teacher_id_
  58. ) a on t.user_id_ = a.userId
  59. left join (
  60. <!-- 统计老师星级评分 -->
  61. select
  62. a.teacher_id_ as userId,
  63. avg (b.score_) as starGrade
  64. from course_schedule a
  65. join course_schedule_replied b on a.id_ = b.course_schedule_id_
  66. where a.lock_ = 0 and a.type_ in ('PRACTICE','PIANO_ROOM_CLASS') and b.score_ is not null
  67. <if test="userId != null and userId != ''">
  68. and a.teacher_id_ = #{userId}
  69. </if>
  70. group by a.teacher_id_
  71. ) b on t.user_id_ = b.userId
  72. <where>
  73. <if test="userId != null and userId != ''">
  74. and t.user_id_ = #{userId}
  75. </if>
  76. </where>
  77. </select>
  78. <select id="queryStudentTotal" resultType="com.yonge.cooleshow.biz.dal.vo.StudentTotalVo">
  79. select
  80. t.user_id_ as userId,
  81. sum(if(b.end_time_ &lt;= now(),1,0)) as finshHours,
  82. sum(if(b.end_time_ &gt; now(),1,0)) as unfinshHours
  83. from student t
  84. left join course_schedule_student_payment a on t.user_id_ = a.user_id_
  85. left join course_schedule b on a.course_id_ = b.id_
  86. where b.lock_ = 0 and b.type_ in ('PRACTICE','PIANO_ROOM_CLASS')
  87. <if test="userId != null and userId != ''">
  88. and t.user_id_ = #{userId}
  89. </if>
  90. group by t.user_id_
  91. </select>
  92. <select id="queryStudentCourse" resultMap="BaseResultMap">
  93. select b.id_,
  94. b.course_group_id_,
  95. b.type_,
  96. b.class_num_,
  97. b.teacher_id_,
  98. b.class_date_,
  99. b.start_time_,
  100. b.end_time_,
  101. b.lock_,
  102. b.lock_time_,
  103. b.ex_student_num_,
  104. b.status_,
  105. b.created_by_,
  106. b.created_time_,
  107. b.updated_by_,
  108. b.updated_time_
  109. from course_schedule_student_payment as a
  110. left join course_schedule as b on a.course_id_ = b.id_
  111. <where>
  112. a.user_id_ = #{param.studentId}
  113. <if test="param.greaterDate != null">
  114. AND <![CDATA[ b.start_time_ > #{param.greaterDate} ]]>
  115. </if>
  116. <if test="param.startClassDate != null">
  117. AND <![CDATA[ b.class_date_ >= #{param.startClassDate} ]]>
  118. </if>
  119. <if test="param.endClassDate != null">
  120. AND <![CDATA[ b.class_date_ <= #{param.endClassDate} ]]>
  121. </if>
  122. <if test="param.classDate != null">
  123. AND b.class_date_ = #{param.classDate}
  124. </if>
  125. <if test="param.status != null">
  126. AND b.status_ = #{param.status}
  127. </if>
  128. <if test="param.statusList != null">
  129. AND b.status_ IN
  130. <foreach collection="param.statusList" item="item" open="(" separator="," close=")">
  131. #{item}
  132. </foreach>
  133. </if>
  134. </where>
  135. order by b.start_time_ desc
  136. </select>
  137. <select id="queryLiveTeacherCourse" resultType="com.yonge.cooleshow.biz.dal.vo.TeacherLiveCourseInfoVo">
  138. select
  139. b.id_ as courseGroupId,
  140. b.name_ as courseGroupName,
  141. a.id_ as courseId,
  142. a.class_num_ as classNum,
  143. s.name_ as subjectName,
  144. a.start_time_ as startTime,
  145. a.end_time_ as endTime,
  146. a.status_ as `status`,
  147. b.pre_student_num_ as studentCount,
  148. b.background_pic_ as backgroundPic,
  149. b.im_group_id_ as imGroupId
  150. from course_schedule as a
  151. left join course_group as b on a.course_group_id_ = b.id_
  152. left join subject as s on b.subject_id_ = s.id_
  153. where b.teacher_id_ = #{param.teacherId}
  154. AND a.lock_ = 0
  155. AND a.type_ = #{param.type}
  156. <![CDATA[ AND a.class_date_ >= #{param.startDate} ]]>
  157. <![CDATA[ AND a.class_date_ <= #{param.endDate} ]]>
  158. <if test="param.groupState !=null and param.groupState !=''">
  159. AND find_in_set(b.status_, #{param.groupState})
  160. </if>
  161. <if test="param.status !=null and param.status !=''">
  162. AND a.status_ = #{param.status}
  163. </if>
  164. <if test="param.subjectId != null and param.subjectId !=''">
  165. AND b.subject_id_ = #{param.subjectId}
  166. </if>
  167. order by start_time_
  168. </select>
  169. <select id="queryTeacherPracticeCourse" resultType="com.yonge.cooleshow.biz.dal.vo.MyCourseVo">
  170. SELECT distinct
  171. u.id_ AS userId,
  172. u.username_ AS userName,
  173. u.real_name_ AS realName,
  174. u.avatar_ AS avatar,
  175. cs.class_date_ AS classDate,
  176. cs.start_time_ AS startTime,
  177. cs.end_time_ AS endTime,
  178. cs.status_ AS `status`,
  179. g.subject_id_ AS subjectId,
  180. sb.name_ AS subjectName,
  181. p.course_id_ AS courseId,
  182. p.course_group_id_ AS courseGoupId,
  183. (r.student_replied_ IS NOT NULL) AS studentReplied,
  184. (r.teacher_replied_ IS NOT NULL) AS teacherReplied
  185. FROM course_schedule_student_payment p
  186. LEFT JOIN sys_user u ON p.user_id_ =u.id_
  187. LEFT JOIN course_schedule cs ON p.course_id_=cs.id_
  188. LEFT JOIN course_group g ON p.course_group_id_ = g.id_
  189. LEFT JOIN `subject` sb ON g.subject_id_=sb.id_
  190. LEFT JOIN course_schedule_replied r ON cs.id_=r.course_schedule_id_
  191. WHERE p.course_id_ IN
  192. (SELECT s.id_ FROM course_schedule s WHERE s.type_='PRACTICE' AND lock_=0 AND s.teacher_id_=#{param.teacherId})
  193. <if test="param.status !=null and param.status !=''">
  194. AND cs.status_ = #{param.status}
  195. </if>
  196. <if test="param.subjectId !=null">
  197. AND g.subject_id_ = #{param.subjectId}
  198. </if>
  199. <if test="param.classDate !=null and param.classDate !=''">
  200. AND cs.class_date_ = #{param.classDate}
  201. </if>
  202. <if test="param.startDate !=null and param.startDate !=''">
  203. <![CDATA[ AND cs.class_date_ >= #{param.startDate} ]]>
  204. </if>
  205. <if test="param.endDate !=null and param.endDate !=''">
  206. <![CDATA[ AND cs.class_date_ <= #{param.endDate} ]]>
  207. </if>
  208. <if test="param.repliedIds !=null and param.repliedIds.size > 0">
  209. AND p.user_id_ IN
  210. <foreach collection="param.repliedIds" item="repliedIds" open="(" close=")" separator=",">
  211. #{repliedIds}
  212. </foreach>
  213. </if>
  214. <if test="param.studentName !=null and param.studentName !=''">
  215. AND u.username_ LIKE CONCAT('%', #{param.studentName}, '%')
  216. </if>
  217. ORDER BY cs.start_time_
  218. </select>
  219. <select id="countTeacherNoDecorateHomework" resultType="java.lang.Integer">
  220. select count(1)
  221. from course_schedule cs
  222. left join course_homework ch on ch.course_schedule_id_ = cs.id_
  223. <where>
  224. <!-- 没有布置作业记录 -->
  225. <if test="param.decorate != null">
  226. <if test="param.decorate.code == 0">
  227. and ch.id_ is null
  228. </if>
  229. <if test="param.decorate.code == 1">
  230. and ch.id_ is not null
  231. </if>
  232. </if>
  233. <if test="param.courseStatus != null">
  234. and cs.type_ = #{param.courseType}
  235. </if>
  236. <if test="param.courseType != null">
  237. and cs.status_ = #{param.courseStatus}
  238. </if>
  239. <if test="param.teacherId != null">
  240. and cs.teacher_id_ = #{param.teacherId}
  241. </if>
  242. <if test="param.courseScheduleId != null ">
  243. and cs.id_ = #{param.courseScheduleId}
  244. </if>
  245. </where>
  246. </select>
  247. <select id="queryCourseSchedule" resultType="java.lang.String"
  248. parameterType="com.yonge.cooleshow.biz.dal.dto.search.MyCourseSearch">
  249. SELECT s.class_date_
  250. FROM course_schedule_student_payment p
  251. LEFT JOIN course_schedule s ON p.course_id_ = s.id_
  252. WHERE s.teacher_id_=#{teacherId}
  253. AND s.lock_=0
  254. AND s.status_ IN ('ING','COMPLETE','NOT_START')
  255. AND p.course_type_ IN ('PIANO_ROOM_CLASS','PRACTICE')
  256. <![CDATA[ AND s.class_date_ >= #{startDate} ]]>
  257. <![CDATA[ AND s.class_date_ <= #{endDate} ]]>
  258. UNION
  259. SELECT s.class_date_
  260. FROM course_group g
  261. LEFT JOIN course_schedule s ON g.id_=s.course_group_id_
  262. WHERE g.teacher_id_=#{teacherId}
  263. AND g.type_='LIVE'
  264. AND g.status_ IN ('COMPLETE','ING')
  265. <![CDATA[ AND s.class_date_ >= #{startDate} ]]>
  266. <![CDATA[ AND s.class_date_ <= #{endDate} ]]>
  267. </select>
  268. <select id="queryStudentPracticeCourse" resultType="com.yonge.cooleshow.biz.dal.vo.MyCourseVo">
  269. SELECT
  270. s.id_ AS courseId,
  271. s.course_group_id_ AS courseGoupId,
  272. s.class_date_ AS classDate,
  273. s.start_time_ AS startTime,
  274. s.end_time_ AS endTime,
  275. s.status_ AS `status`,
  276. s.teacher_id_ AS teacherId,
  277. u.id_ AS userId,
  278. u.username_ AS userName,
  279. u.real_name_ AS realName,
  280. u.avatar_ AS avatar,
  281. g.subject_id_ AS subjectId,
  282. b.name_ AS subjectName
  283. FROM course_schedule s
  284. LEFT JOIN sys_user u ON s.teacher_id_ = u.id_
  285. LEFT JOIN course_group g ON s.course_group_id_ = g.id_
  286. LEFT JOIN `subject` b ON g.subject_id_ = b.id_
  287. WHERE s.lock_=0
  288. AND s.status_ IN ('ING','NOT_START','COMPLETE')
  289. AND s.id_ IN
  290. (SELECT course_id_ FROM course_schedule_student_payment WHERE user_id_ = #{param.studentId} AND course_type_ = 'PRACTICE')
  291. <if test="param.status !=null and param.status !=''">
  292. AND s.status_ = #{param.status}
  293. </if>
  294. <if test="param.subjectId !=null">
  295. AND g.subject_id_ = #{param.subjectId}
  296. </if>
  297. <if test="param.classDate !=null and param.classDate !=''">
  298. AND s.class_date_ = #{param.classDate}
  299. </if>
  300. <if test="param.startDate !=null and param.startDate !=''">
  301. <![CDATA[ AND s.class_date_ >= #{param.startDate} ]]>
  302. </if>
  303. <if test="param.endDate !=null and param.endDate !=''">
  304. <![CDATA[ AND s.class_date_ <= #{param.endDate} ]]>
  305. </if>
  306. ORDER BY s.start_time_
  307. </select>
  308. <select id="queryCourseUser" resultType="com.yonge.cooleshow.biz.dal.vo.CourseStudent">
  309. SELECT
  310. cs.id_ AS courseId,
  311. cs.course_group_id_ AS courseGoupId,
  312. cs.class_date_ AS classDate,
  313. cs.start_time_ AS startTime,
  314. cs.end_time_ AS endTime,
  315. cs.status_ AS `status`,
  316. cs.type_ AS courseType,
  317. NULL AS userId,
  318. CONCAT(g.name_,'-第',cs.class_num_,'课') AS name,
  319. NULL AS realName,
  320. p.payCount AS payCount,
  321. g.background_pic_ AS cover,
  322. g.subject_id_ AS subjectId,
  323. sb.name_ AS subjectName,
  324. (r.student_replied_ IS NOT NULL) AS studentReplied,
  325. (r.teacher_replied_ IS NOT NULL) AS teacherReplied,
  326. i.id_ AS imGroupId
  327. FROM course_schedule cs
  328. LEFT JOIN course_group g ON cs.course_group_id_ = g.id_
  329. LEFT JOIN (SELECT course_id_ AS pid,count(*) AS payCount FROM course_schedule_student_payment GROUP BY course_id_ ) p ON cs.id_=p.pid
  330. LEFT JOIN `subject` sb ON g.subject_id_=sb.id_
  331. LEFT JOIN course_schedule_replied r ON cs.id_ = r.course_schedule_id_
  332. LEFT JOIN im_group i ON g.id_ = i.course_group_id_
  333. WHERE cs.lock_=0
  334. AND cs.status_ IN ('ING','COMPLETE','NOT_START')
  335. AND cs.type_ IN ('LIVE','PIANO_ROOM_CLASS')
  336. AND cs.teacher_id_=#{param.teacherId}
  337. AND cs.class_date_=#{param.classDate}
  338. AND cs.id_ IN(
  339. SELECT c.id_
  340. FROM course_schedule_student_payment p,course_schedule c
  341. WHERE p.course_id_=c.id_
  342. AND p.course_group_id_ = c.course_group_id_
  343. AND c.teacher_id_=#{param.teacherId}
  344. AND c.class_date_=#{param.classDate}
  345. AND c.type_ IN ('LIVE','PIANO_ROOM_CLASS')
  346. )
  347. UNION
  348. SELECT
  349. p.course_id_ AS courseId,
  350. p.course_group_id_ AS courseGoupId,
  351. cs.class_date_ AS classDate,
  352. cs.start_time_ AS startTime,
  353. cs.end_time_ AS endTime,
  354. cs.status_ AS `status`,
  355. cs.type_ AS courseType,
  356. u.id_ AS userId,
  357. u.username_ AS name,
  358. u.real_name_ AS realName,
  359. NULL AS payCount,
  360. u.avatar_ AS cover,
  361. g.subject_id_ AS subjectId,
  362. sb.name_ AS subjectName,
  363. (r.student_replied_ IS NOT NULL) AS studentReplied,
  364. (r.teacher_replied_ IS NOT NULL) AS teacherReplied,
  365. NULL AS imGroupId
  366. FROM course_schedule_student_payment p
  367. LEFT JOIN sys_user u ON p.user_id_ =u.id_
  368. LEFT JOIN course_schedule cs ON p.course_id_=cs.id_
  369. LEFT JOIN course_group g ON p.course_group_id_ = g.id_
  370. LEFT JOIN `subject` sb ON g.subject_id_=sb.id_
  371. LEFT JOIN course_schedule_replied r ON cs.id_ = r.course_schedule_id_
  372. WHERE cs.lock_=0
  373. AND cs.status_ IN ('ING','COMPLETE','NOT_START')
  374. AND p.course_id_ IN (SELECT s.id_ FROM course_schedule s WHERE s.type_='PRACTICE' AND s.teacher_id_=#{param.teacherId})
  375. AND cs.class_date_=#{param.classDate}
  376. ORDER BY startTime
  377. </select>
  378. <select id="queryCourseScheduleStudent" resultType="java.lang.String"
  379. parameterType="com.yonge.cooleshow.biz.dal.dto.search.MyCourseSearch">
  380. SELECT class_date_ FROM course_schedule
  381. WHERE lock_=0
  382. AND status_ IN ('ING','NOT_START','COMPLETE')
  383. AND id_ IN (SELECT course_id_ FROM course_schedule_student_payment WHERE user_id_ = #{studentId})
  384. <![CDATA[ AND class_date_ >= #{startDate} ]]>
  385. <![CDATA[ AND class_date_ <= #{endDate} ]]>
  386. </select>
  387. <select id="teacherList" resultType="com.yonge.cooleshow.biz.dal.vo.PracticeTeacherVo">
  388. SELECT
  389. t.user_id_ AS teacherId,
  390. u.username_ AS userName,
  391. u.real_name_ AS realName,
  392. u.avatar_ AS avatar,
  393. tt.star_grade_ AS starGrade,
  394. tt.exp_time_ AS expTime,
  395. t.graduate_school_ AS school,
  396. t.subject_ AS schoolSubject,
  397. (SELECT group_concat(p.subject_name_) FROM teacher_subject_price p WHERE find_in_set(t.user_id_,p.teacher_id_)) AS configSubject,
  398. sp.subjectId AS subjectId,
  399. sp.subjectName AS subjectName,
  400. sp.subjectPrice AS subjectPrice,
  401. sp.courseMinutes AS courseMinutes
  402. FROM teacher t
  403. LEFT JOIN sys_user u ON t.user_id_ = u.id_
  404. LEFT JOIN teacher_total tt ON t.user_id_=tt.user_id_
  405. LEFT JOIN (SELECT
  406. f.teacher_id_ AS teacherId,
  407. p.subject_id_ AS subjectId,
  408. p.subject_name_ AS subjectName,
  409. p.subject_price_ AS subjectPrice,
  410. p.course_minutes_ AS courseMinutes
  411. FROM teacher_free_time f
  412. LEFT JOIN teacher_subject_price p ON f.id_=p.teacher_free_time_id
  413. WHERE f.default_flag_=1 AND f.enable_flag_=1
  414. AND p.subject_id_=#{param.subjectId}) sp ON t.user_id_=sp.teacherId
  415. <where>
  416. <if test="param.teacherIdList != null and param.teacherIdList.size>0">
  417. AND t.user_id_ IN
  418. <foreach collection="param.teacherIdList" item="item" open="(" separator="," close=")">
  419. #{item}
  420. </foreach>
  421. </if>
  422. <if test="param.subjectId !=null">
  423. AND sp.subjectId=#{param.subjectId}
  424. </if>
  425. <if test="param.search !=null and param.search !=''">
  426. AND u.username_ LIKE CONCAT('%', #{param.search}, '%')
  427. </if>
  428. <choose>
  429. <when test="param.sort !=null and param.sort !=''">
  430. ORDER BY ${param.sort}
  431. </when>
  432. </choose>
  433. </where>
  434. </select>
  435. <select id="queryCourseTeacher" resultType="com.yonge.cooleshow.biz.dal.vo.CourseStudent"
  436. parameterType="com.yonge.cooleshow.biz.dal.dto.search.MyCourseSearch">
  437. SELECT
  438. s.id_ AS courseId,
  439. s.course_group_id_ AS courseGoupId,
  440. s.class_date_ AS classDate,
  441. s.start_time_ AS startTime,
  442. s.end_time_ AS endTime,
  443. s.type_ AS courseType,
  444. s.status_ AS `status`,
  445. u.id_ AS userId,
  446. u.username_ AS name,
  447. u.real_name_ AS realName,
  448. u.avatar_ AS cover,
  449. g.subject_id_ AS subjectId,
  450. b.name_ AS subjectName,
  451. ig.id_ AS imGroupId,
  452. (r.student_replied_ IS NOT NULL) AS studentReplied,
  453. (r.teacher_replied_ IS NOT NULL) AS teacherReplied,
  454. 1 AS payCount
  455. FROM course_schedule s
  456. LEFT JOIN sys_user u ON s.teacher_id_ = u.id_
  457. LEFT JOIN course_group g ON s.course_group_id_ = g.id_
  458. LEFT JOIN `subject` b ON g.subject_id_ = b.id_
  459. LEFT JOIN course_schedule_replied r ON s.id_ = r.course_schedule_id_
  460. LEFT JOIN im_group ig ON ig.course_group_id_ = g.id_
  461. WHERE s.lock_=0
  462. AND s.status_ IN ('ING','NOT_START','COMPLETE')
  463. AND s.id_ IN
  464. (SELECT course_id_ FROM course_schedule_student_payment WHERE user_id_ = #{param.studentId} AND course_type_ = 'PRACTICE')
  465. AND s.class_date_ = #{param.classDate}
  466. UNION
  467. SELECT
  468. s.id_ AS courseId,
  469. s.course_group_id_ AS courseGoupId,
  470. s.class_date_ AS classDate,
  471. s.start_time_ AS startTime,
  472. s.end_time_ AS endTime,
  473. s.type_ AS courseType,
  474. s.status_ AS `status`,
  475. NULL AS userId,
  476. CONCAT(g.name_,'-第',s.class_num_,'课') AS name,
  477. NULL AS realName,
  478. g.background_pic_ AS cover,
  479. g.subject_id_ AS subjectId,
  480. sb.name_ AS subjectName,
  481. ig.id_ AS imGroupId,
  482. (r.student_replied_ IS NOT NULL) AS studentReplied,
  483. (r.teacher_replied_ IS NOT NULL) AS teacherReplied,
  484. IFNULL(a.payCount,0) AS payCount
  485. FROM course_schedule s
  486. LEFT JOIN course_group g ON s.course_group_id_ = g.id_
  487. LEFT JOIN `subject` sb ON g.subject_id_=sb.id_
  488. LEFT JOIN course_schedule_replied r ON s.id_ = r.course_schedule_id_
  489. LEFT JOIN im_group ig ON ig.course_group_id_ = g.id_
  490. LEFT JOIN (SELECT course_id_,COUNT(1) AS payCount FROM course_schedule_student_payment GROUP BY course_id_) a ON s.id_=a.course_id_
  491. WHERE s.lock_=0
  492. AND s.status_ IN ('ING','NOT_START','COMPLETE')
  493. AND s.id_ IN
  494. (SELECT course_id_ FROM course_schedule_student_payment WHERE user_id_ = #{param.studentId} AND course_type_ IN ('LIVE','PIANO_ROOM_CLASS'))
  495. AND s.class_date_ = #{param.classDate}
  496. ORDER BY startTime
  497. </select>
  498. <select id="queryStudentLiveCourse" parameterType="map" resultType="com.yonge.cooleshow.biz.dal.vo.CourseStudent">
  499. SELECT distinct
  500. cs.id_ AS courseId,
  501. cs.course_group_id_ AS courseGoupId,
  502. cs.class_date_ AS classDate,
  503. cs.start_time_ AS startTime,
  504. cs.end_time_ AS endTime,
  505. cs.status_ AS `status`,
  506. cs.type_ AS courseType,
  507. su.username_ AS userId,
  508. CONCAT(g.name_,'-第',cs.class_num_,'课') AS name,
  509. IFNULL(g.pre_student_num_, 0) AS payCount,
  510. g.background_pic_ AS cover,
  511. g.subject_id_ AS subjectId,
  512. sb.name_ AS subjectName,
  513. su.avatar_ AS avatar,
  514. g.im_group_id_ as imGroupId
  515. FROM
  516. course_schedule_student_payment as a
  517. LEFT JOIN course_schedule cs on a.course_id_ = cs.id_
  518. LEFT JOIN course_group g ON cs.course_group_id_ = g.id_
  519. LEFT JOIN `subject` sb ON g.subject_id_=sb.id_
  520. LEFT JOIN sys_user su on g.teacher_id_ = su.id_
  521. LEFT JOIN user_order o on a.order_no_ = o.order_no_
  522. WHERE cs.type_=#{param.type}
  523. AND a.user_id_ = #{param.studentId}
  524. <![CDATA[ AND class_date_ >= #{param.startDate} ]]>
  525. <![CDATA[ AND class_date_ <= #{param.endDate} ]]>
  526. <if test="param.orderState != null">
  527. AND o.status_ = #{param.orderState}
  528. </if>
  529. <if test="param.subjectId != null">
  530. AND g.subject_id_ = #{param.subjectId}
  531. </if>
  532. <if test="param.courseState != null">
  533. and cs.status_ = #{param.courseState}
  534. </if>
  535. </select>
  536. <insert id="addCourseGroup" parameterType="com.yonge.cooleshow.biz.dal.dto.PracticeScheduleDto" useGeneratedKeys="true" keyProperty="groupId">
  537. Insert INTO course_group(teacher_id_,type_,name_,subject_id_,single_course_minutes_,course_num_,course_introduce_,
  538. course_price_,status_,created_by_,mix_student_num_,course_start_time_,pre_student_num_)
  539. VALUES (#{teacherId},#{type},#{courseGroupName},#{subjectId},#{singleCourseMinutes},#{courseNum},#{courseIntroduce},
  540. #{coursePrice},#{status},#{studentId},#{mixStudentNum},#{courseStartTime},1)
  541. </insert>
  542. <update id="updateLock" parameterType="java.util.List">
  543. UPDATE course_schedule SET lock_ = 0 WHERE id_ IN
  544. <foreach collection="list" item="item" open="(" separator="," close=")">
  545. #{item}
  546. </foreach>
  547. </update>
  548. <update id="courseAdjust" parameterType="com.yonge.cooleshow.biz.dal.vo.CourseAdjustVo">
  549. UPDATE course_schedule
  550. SET class_date_=#{classDate},start_time_=#{startTime},end_time_=#{endTime}
  551. WHERE id_ = #{courseId}
  552. </update>
  553. <select id="selectLive" resultType="com.yonge.cooleshow.biz.dal.vo.StudentHomePage$Live">
  554. SELECT
  555. u.id_ AS teacherId,
  556. u.username_ AS teacherName,
  557. u.real_name_ AS realName,
  558. u.avatar_ AS avatar,
  559. g.id_ AS courseGroupId,
  560. g.name_ AS courseGroupName,
  561. g.course_price_ AS courseGroupPrice,
  562. g.course_start_time_ AS courseStartTime,
  563. g.background_pic_ AS backgroundPic,
  564. g.course_num_ AS courseNum,
  565. g.pre_student_num_ AS buyCount,
  566. g.subject_id_ AS subjectId,
  567. s.name_ AS subjectName
  568. FROM course_group g
  569. LEFT JOIN sys_user u ON g.teacher_id_=u.id_
  570. LEFT JOIN subject s ON g.subject_id_=s.id_
  571. WHERE type_='LIVE' and g.status_ = 'APPLY' and #{appAuditVersion} = g.audit_version_
  572. ORDER BY courseStartTime DESC LIMIT 4
  573. </select>
  574. <select id="selectVideo" resultType="com.yonge.cooleshow.biz.dal.vo.StudentHomePage$Video">
  575. SELECT
  576. u.id_ AS teacherId,
  577. u.username_ AS teacherName,
  578. u.real_name_ AS realName,
  579. u.avatar_ AS avatar,
  580. g.id_ AS videoGroupId,
  581. g.lesson_name_ AS videoGroupName,
  582. g.lesson_price_ AS lessonPrice,
  583. g.create_time_ AS createTime,
  584. g.lesson_cover_url_ AS lessonCoverUrl,
  585. g.lesson_count_ AS lessonCount,
  586. g.lesson_subject_ AS subjectId,
  587. s.name_ AS subjectName,
  588. IFNULL(r.count_,0) AS buyCount
  589. FROM video_lesson_group g
  590. LEFT JOIN sys_user u ON g.teacher_id_=u.id_
  591. LEFT JOIN `subject` s ON g.lesson_subject_=s.id_
  592. LEFT JOIN (SELECT video_lesson_group_id_ ,COUNT(1) AS count_ FROM video_lesson_purchase_record WHERE order_status_='PAID' GROUP BY video_lesson_group_id_) r ON g.id_= r.video_lesson_group_id_
  593. WHERE g.audit_status_='PASS' and #{appAuditVersion} = g.audit_version_
  594. ORDER BY g.create_time_ DESC LIMIT 4
  595. </select>
  596. <select id="selectRecentCourses" resultType="com.yonge.cooleshow.biz.dal.vo.StudentHomePage$RecentCourses">
  597. SELECT
  598. u.id_ AS teacherId,
  599. u.username_ AS teacherName,
  600. u.real_name_ AS realName,
  601. u.avatar_ AS avatar,
  602. p.course_group_id_ AS courseGroupId,
  603. p.course_id_ AS courseId,
  604. g.name_ AS courseGroupName,
  605. p.course_type_ AS courseType,
  606. s.status_ AS `status`,
  607. s.start_time_ AS courseStartTime
  608. FROM course_schedule_student_payment p
  609. LEFT JOIN course_schedule s ON p.course_id_=s.id_
  610. LEFT JOIN sys_user u ON s.teacher_id_=u.id_
  611. LEFT JOIN course_group g ON p.course_group_id_=g.id_
  612. WHERE p.user_id_=#{studentId}
  613. AND s.status_ = 'ING'
  614. ORDER BY ABS(NOW() - s.start_time_) ASC
  615. limit 1
  616. </select>
  617. <select id="selectRecentCoursesPractice" resultType="com.yonge.cooleshow.biz.dal.vo.StudentHomePage$RecentCourses">
  618. SELECT
  619. p.user_id_ AS studentId,
  620. u.id_ AS teacherId,
  621. u.username_ AS teacherName,
  622. u.real_name_ AS realName,
  623. u.avatar_ AS avatar,
  624. s.course_group_id_ AS courseGroupId,
  625. s.id_ AS courseId,
  626. g.name_ AS courseGroupName,
  627. s.type_ AS courseType,
  628. s.status_ AS `status`,
  629. s.start_time_ AS courseStartTime
  630. FROM course_schedule s
  631. LEFT JOIN sys_user u ON s.teacher_id_=u.id_
  632. LEFT JOIN course_group g ON s.course_group_id_=g.id_
  633. LEFT JOIN course_schedule_student_payment p ON s.id_=p.course_id_
  634. WHERE s.teacher_id_=#{teacherId}
  635. AND s.type_='PRACTICE'
  636. AND s.status_ = 'ING'
  637. ORDER BY ABS(NOW() - s.start_time_) ASC
  638. limit 1
  639. </select>
  640. <select id="selectRecentCoursesLive" resultType="com.yonge.cooleshow.biz.dal.vo.StudentHomePage$RecentCourses"
  641. parameterType="java.lang.Long">
  642. SELECT
  643. u.id_ AS teacherId,
  644. u.username_ AS teacherName,
  645. u.real_name_ AS realName,
  646. u.avatar_ AS avatar,
  647. s.course_group_id_ AS courseGroupId,
  648. s.id_ AS courseId,
  649. g.name_ AS courseGroupName,
  650. s.type_ AS courseType,
  651. s.status_ AS `status`,
  652. s.start_time_ AS courseStartTime
  653. FROM course_schedule s
  654. LEFT JOIN sys_user u ON s.teacher_id_=u.id_
  655. LEFT JOIN course_group g ON s.course_group_id_=g.id_
  656. WHERE s.teacher_id_=#{teacherId}
  657. AND s.type_ IN ('LIVE','PIANO_ROOM_CLASS')
  658. AND s.status_ ='ING'
  659. ORDER BY ABS(NOW() - s.start_time_) ASC
  660. limit 1
  661. </select>
  662. <select id="selectWeekNotStartCourseSchedule" resultType="java.lang.Integer">
  663. select count(1)
  664. from course_schedule cs
  665. left join course_group cg on cs.course_group_id_ = cg.id_
  666. where cs.teacher_id_ = #{userId} and cs.status_ in ('NOT_START','ING') and cg.status_ = 'ING'
  667. and YEARWEEK(date_format(cs.class_date_,'%Y-%m-%d'),7) = YEARWEEK(now(),7)
  668. </select>
  669. <select id="selectHomeworkNotDecorate" resultType="java.lang.Integer">
  670. select count(1)
  671. from course_schedule cs
  672. left join course_homework ch on cs.id_ = ch.course_schedule_id_
  673. where cs.teacher_id_ = #{userId} and cs.status_ = 'COMPLETE' and cs.type_ in( 'PRACTICE','PIANO_ROOM_CLASS')
  674. and YEARWEEK(date_format(cs.class_date_,'%Y-%m-%d'),7) = YEARWEEK(now(),7)
  675. and ch.id_ is null
  676. </select>
  677. <select id="selectNotRepliedCourseSchedule" resultType="java.lang.Integer">
  678. select count(1)
  679. from course_schedule cs
  680. left join course_schedule_replied csr on cs.id_ = csr.course_schedule_id_
  681. where cs.teacher_id_ = #{userId} and cs.status_ = 'COMPLETE' and cs.type_ = 'PRACTICE'
  682. and csr.teacher_replied_ is null
  683. </select>
  684. <select id="selectWeekStudentRepliedCourseSchedule" resultType="java.lang.Integer">
  685. select count(1)
  686. from course_schedule cs
  687. left join course_schedule_replied csr on cs.id_ = csr.course_schedule_id_
  688. where cs.teacher_id_ = #{userId} and cs.status_ = 'COMPLETE' and cs.type_ = 'PRACTICE'
  689. and csr.student_replied_ is not null
  690. and YEARWEEK(date_format(csr.student_replied_time_,'%Y-%m-%d'),7) = YEARWEEK(now(),7)
  691. </select>
  692. <select id="selectStartTime" resultType="java.lang.String" parameterType="java.lang.String">
  693. SELECT s.start_time_
  694. FROM course_schedule_student_payment p
  695. LEFT JOIN course_schedule s ON p.course_id_=s.id_
  696. WHERE p.order_no_=#{orderNo}
  697. </select>
  698. <select id="selectTeacher" resultType="com.yonge.cooleshow.auth.api.entity.SysUser"
  699. parameterType="java.lang.String">
  700. SELECT DISTINCT
  701. s.teacher_id_ AS id,
  702. u.phone_ AS phone
  703. FROM course_schedule s
  704. LEFT JOIN sys_user u ON s.teacher_id_ = u.id_
  705. LEFT JOIN course_group g ON s.course_group_id_=g.id_
  706. WHERE lock_=0
  707. AND class_date_ = DATE_SUB(curdate(),INTERVAL -1 DAY)
  708. AND g.status_='ING'
  709. </select>
  710. <select id="selectTypeCount" resultType="com.yonge.cooleshow.biz.dal.vo.CountVo">
  711. SELECT
  712. s.type_ AS type,
  713. COUNT(1) AS `count`
  714. FROM course_schedule s
  715. LEFT JOIN course_group g ON s.course_group_id_=g.id_
  716. WHERE s.lock_=0
  717. AND s.teacher_id_=#{teacherId}
  718. AND s.class_date_=DATE_SUB(curdate(),INTERVAL -1 DAY)
  719. AND g.status_='ING'
  720. GROUP BY s.type_
  721. </select>
  722. <select id="selectTodayNotRepliedAndNotDecorateHomework"
  723. resultType="com.yonge.cooleshow.biz.dal.vo.TodayNotRepliedAndNotDecorateHomeworkVo">
  724. select sum(if(ch.id_ is null,1,0)) as decorateNum,
  725. sum(if(csr.teacher_replied_ is null,1,0)) as repliedNum,
  726. su.id_ as teacherId,
  727. su.phone_ as phone
  728. from course_schedule cs
  729. left join course_schedule_replied csr on cs.id_ = csr.course_schedule_id_
  730. left join course_homework ch on cs.id_ = ch.course_schedule_id_
  731. left join sys_user su on cs.teacher_id_ = su.id_
  732. where cs.status_ = 'COMPLETE' and date_format(cs.class_date_,'%Y-%m-%d') = date_format(now(),'%Y-%m-%d')
  733. and cs.type_ = 'PRACTICE'
  734. group by su.id_,su.phone_
  735. </select>
  736. <select id="countAllReplie" resultType="com.yonge.cooleshow.biz.dal.vo.RepliedCountVo"
  737. parameterType="java.lang.String">
  738. SELECT
  739. p.user_id_ AS userId,
  740. u.phone_ AS phone,
  741. COUNT(1) AS count
  742. FROM course_schedule_student_payment p
  743. LEFT JOIN sys_user u ON p.user_id_=u.id_
  744. WHERE p.course_id_ IN (SELECT id_ FROM course_schedule WHERE class_date_=#{today} AND lock_=0 AND type_='PRACTICE')
  745. GROUP BY p.user_id_;
  746. </select>
  747. <select id="countReplies" resultType="java.lang.Integer" parameterType="java.lang.Integer">
  748. SELECT COUNT(1)
  749. FROM course_schedule_replied
  750. WHERE student_id_=#{studentId}
  751. </select>
  752. <select id="queryCourseHomeOfYear" parameterType="map"
  753. resultType="com.yonge.cooleshow.biz.dal.vo.CourseHomeVo$CourseHomeInfoVo">
  754. select `date`,
  755. sum(a.not_start_count) as undoneCount,
  756. sum(a.complete_count) as doneCount
  757. from (select date_format(class_date_, '%Y-%m-01') as `date`,
  758. ifnull(case when status_ in ('NOT_START', 'ING') then count(1) end, 0) as not_start_count,
  759. ifnull(case when status_ = 'COMPLETE' then count(1) end, 0) as complete_count
  760. from course_schedule
  761. where type_ = #{param.type}
  762. and status_ in ('NOT_START', 'ING', 'COMPLETE')
  763. <![CDATA[ AND class_date_ >= #{param.startDate} ]]>
  764. <![CDATA[ AND class_date_ <= #{param.endDate} ]]>
  765. group by class_date_) as a
  766. group by date
  767. </select>
  768. <select id="queryCourseHomeOfMonth" parameterType="map"
  769. resultType="com.yonge.cooleshow.biz.dal.vo.CourseHomeVo$CourseHomeInfoVo">
  770. select class_date_ as `date`,
  771. ifnull(case when status_ in ('NOT_START', 'ING') then count(1) end, 0) as undoneCount,
  772. ifnull(case when status_ = 'COMPLETE' then count(1) end, 0) as doneCount
  773. from course_schedule
  774. where type_ = #{param.type}
  775. and status_ in ('NOT_START', 'ING', 'COMPLETE')
  776. <![CDATA[ AND class_date_ >= #{param.startDate} ]]>
  777. <![CDATA[ AND class_date_ <= #{param.endDate} ]]>
  778. group by class_date_
  779. </select>
  780. <select id="selectPrice" resultType="java.math.BigDecimal">
  781. SELECT p.subject_price_
  782. FROM teacher_free_time t
  783. LEFT JOIN teacher_subject_price p ON t.id_=p.teacher_free_time_id
  784. WHERE t.teacher_id_=#{teacherId}
  785. AND p.subject_id_=#{subjectId}
  786. AND t.default_flag_=1
  787. </select>
  788. <select id="selectSchedule" resultType="com.yonge.cooleshow.biz.dal.entity.CourseSchedule"
  789. parameterType="java.lang.Integer">
  790. SELECT * FROM course_schedule
  791. WHERE id_ IN (
  792. SELECT course_id_ FROM course_schedule_student_payment
  793. WHERE user_id_=(SELECT user_id_ FROM course_schedule_student_payment WHERE course_id_=#{courseId} AND course_type_='PRACTICE')
  794. )
  795. </select>
  796. <select id="teacherIdList" resultType="java.lang.Long">
  797. SELECT teacher_id_ FROM teacher_free_time WHERE enable_flag_=1 GROUP BY teacher_id_
  798. </select>
  799. <select id="selectIdList" resultType="java.lang.Long">
  800. SELECT id_ FROM course_schedule WHERE lock_=0 AND class_date_ &lt;= #{day}
  801. </select>
  802. <select id="selectComplete" resultType="com.yonge.cooleshow.biz.dal.vo.CourseCompleteVo">
  803. SELECT *
  804. FROM (
  805. SELECT course_group_id_ AS courseGroupId ,COUNT(1) AS courseCount
  806. FROM course_schedule
  807. WHERE lock_=0 AND status_='COMPLETE' GROUP BY course_group_id_) a
  808. LEFT JOIN course_group g ON g.id_=a.courseGroupId
  809. </select>
  810. <update id="updateStartTime">
  811. UPDATE course_schedule SET status_='ING' WHERE id_ IN(
  812. <foreach collection="list" item="item" index="index" open="" close="" separator=",">
  813. #{item.id}
  814. </foreach>)
  815. </update>
  816. <update id="updateEndTime">
  817. UPDATE course_schedule SET status_='COMPLETE' WHERE id_ IN(
  818. <foreach collection="list" item="item" index="index" open="" close="" separator=",">
  819. #{item.courseId}
  820. </foreach>)
  821. </update>
  822. <update id="updateTeacherSalary" parameterType="java.util.List">
  823. UPDATE course_schedule_teacher_salary
  824. SET status_='COMPLETE',settlement_time_=NOW()
  825. WHERE status_='NOT_START'
  826. AND course_schedule_id_ IN
  827. <foreach collection="list" item="item" open="(" separator="," close=")">
  828. #{item}
  829. </foreach>
  830. </update>
  831. <select id="queryPianoClass" resultType="com.yonge.cooleshow.biz.dal.vo.PianoClassVo">
  832. SELECT DISTINCT
  833. s.id_ AS courseId,
  834. g.id_ AS courseGroupId,
  835. CONCAT(g.name_,'-第',s.class_num_,'课') AS courseGroupName,
  836. b.id_ AS subjectId,
  837. b.name_ AS subjectName,
  838. s.teacher_id_ AS teacherId,
  839. u.username_ AS teacherName,
  840. u.real_name_ AS teacherRealName,
  841. u.avatar_ AS avatar,
  842. s.status_ AS `status`,
  843. i.id_ AS imGroupId,
  844. s.start_time_ AS startTime,
  845. s.end_time_ AS endTime,
  846. CASE WHEN a.sign_in_time_ IS NOT NULL THEN 1 ELSE 0 END AS studentSign
  847. FROM course_schedule s
  848. LEFT JOIN sys_user u ON s.teacher_id_=u.id_
  849. LEFT JOIN course_group g ON s.course_group_id_=g.id_
  850. LEFT JOIN `subject` b ON g.subject_id_=b.id_
  851. LEFT JOIN course_schedule_student_payment p ON s.id_=p.course_id_
  852. LEFT JOIN student_attendance a ON s.id_=a.course_group_id_
  853. LEFT JOIN im_group i ON s.course_group_id_=i.course_group_id_
  854. WHERE s.type_='PIANO_ROOM_CLASS'
  855. AND p.user_id_=#{param.studentId}
  856. <if test="param.status !=null and param.status !=''">
  857. AND s.status_ = #{param.status}
  858. </if>
  859. <if test="param.subjectId !=null">
  860. AND b.id_ = #{param.subjectId}
  861. </if>
  862. <if test="param.classMonth !=null">
  863. <![CDATA[ AND s.class_date_ >= #{param.startDate} ]]>
  864. <![CDATA[ AND s.class_date_ <= #{param.endDate} ]]>
  865. </if>
  866. ORDER BY s.start_time_
  867. </select>
  868. <select id="selectWaitCourse" resultType="com.yonge.cooleshow.biz.dal.dto.UserAccountRecordDto">
  869. SELECT DISTINCT
  870. ts.teacher_id_ AS userId,
  871. ts.actual_salary_ AS transAmount,
  872. ts.course_group_type_ AS bizType,
  873. ts.course_schedule_id_ AS bizId,
  874. lr.room_title_ AS bizName,
  875. 'IN' AS inOrOut,
  876. sp.order_no_ AS orderNo,
  877. ts.update_time_ AS updateTime
  878. FROM course_schedule_teacher_salary ts
  879. LEFT JOIN live_room lr ON ts.course_schedule_id_ = lr.course_id_
  880. LEFT JOIN course_schedule_student_payment sp ON ts.course_schedule_id_ = sp.course_id_
  881. WHERE ts.course_group_type_ = 'LIVE'
  882. AND ts.status_ = 'WAIT'
  883. <![CDATA[ AND DATE_FORMAT(ts.update_time_,'%Y-%m-%d') <= #{day}]]>
  884. UNION
  885. SELECT DISTINCT
  886. ts.teacher_id_ AS userId,
  887. ts.actual_salary_ AS transAmount,
  888. ts.course_group_type_ AS bizType,
  889. ts.course_schedule_id_ AS bizId,
  890. g.name_ AS bizName,
  891. 'IN' AS inOrOut,
  892. sp.order_no_ AS orderNo,
  893. ts.update_time_ AS updateTime
  894. FROM course_schedule_teacher_salary ts
  895. LEFT JOIN course_group g ON ts.course_group_id_ = g.id_
  896. LEFT JOIN course_schedule_student_payment sp ON ts.course_schedule_id_ = sp.course_id_
  897. WHERE ts.course_group_type_ = 'PRACTICE'
  898. AND ts.status_ = 'WAIT'
  899. <![CDATA[ AND DATE_FORMAT(ts.update_time_,'%Y-%m-%d') <= #{day}]]>
  900. </select>
  901. </mapper>