2 コミット db6cb88190 ... a3aa0249c2

作者 SHA1 メッセージ 日付
  liujc a3aa0249c2 Merge branch 'feature/0822_logoff' into develop-new 2 日 前
  liujc ca403da009 fix 2 日 前
共有1 個のファイルを変更した3 個の追加3 個の削除を含む
  1. 3 3
      cooleshow-user/user-biz/src/main/resources/config/mybatis/StudentStarMapper.xml

+ 3 - 3
cooleshow-user/user-biz/src/main/resources/config/mybatis/StudentStarMapper.xml

@@ -21,7 +21,7 @@
 		from student_star t
 		left join sys_user us on t.teacher_id_ = us.id_
 		left join sys_user ut on t.student_id_ = ut.id_
-		where us.del_flag_ = 0 and ut.del_flag_ = 0
+<!--		where us.del_flag_ = 0 and ut.del_flag_ = 0-->
 		group by t.teacher_id_
 	</select>
 
@@ -32,7 +32,7 @@
 		from student_star t
 		left join sys_user us on t.teacher_id_ = us.id_
 		left join sys_user ut on t.student_id_ = ut.id_
-		where us.del_flag_ = 0 and ut.del_flag_ = 0
+<!--		where us.del_flag_ = 0 and ut.del_flag_ = 0-->
 		group by t.student_id_
 	</select>
 
@@ -42,7 +42,7 @@
 		from student_star t
 		left join sys_user us on t.teacher_id_ = us.id_
 		left join sys_user ut on t.student_id_ = ut.id_
-		where us.del_flag_ = 0 and ut.del_flag_ = 0
+<!--		where us.del_flag_ = 0 and ut.del_flag_ = 0-->
 		and t.student_id_ = #{studentId} and t.teacher_id_ = #{teacherId}
 	</select>