|
@@ -773,11 +773,10 @@
|
|
|
</select>
|
|
|
|
|
|
<select id="getHasVipCourseStudentIdsFromNewStudents" resultType="int">
|
|
|
- SELECT DISTINCT s.user_id_
|
|
|
- FROM student s
|
|
|
- LEFT JOIN course_schedule_student_payment cssp ON s.user_id_=cssp.user_id_
|
|
|
- WHERE s.is_new_user_=1 AND cssp.group_type_='VIP'
|
|
|
+ SELECT DISTINCT(spo.user_id_) from student_payment_order spo LEFT JOIN student s on spo.user_id_ = s.user_id_ WHERE spo.type_ in ('DOUBLE_ELEVEN2021','DOUBLE_ELEVEN2020','SMALL_CLASS_TO_BUY')
|
|
|
+ and spo.status_ = 'SUCCESS' and spo.expect_amount_ > 0 and s.is_new_user_ = 1
|
|
|
</select>
|
|
|
+
|
|
|
<select id="getMemberNum" resultType="int">
|
|
|
SELECT COUNT(0) FROM student WHERE member_rank_setting_id_ IS NOT NULL AND FIND_IN_SET(user_id_,#{studentIdsStr})
|
|
|
</select>
|