Commit a7475e00 authored by liuyuanjun's avatar liuyuanjun

修改sql查询标签的bug

parent 12d032d4
...@@ -379,7 +379,7 @@ public interface BLessonRepository extends BaseMapper<BLesson> { ...@@ -379,7 +379,7 @@ public interface BLessonRepository extends BaseMapper<BLesson> {
*/ */
@Select("<script> select business_id businessId,l_name lName ,'1' type " + @Select("<script> select business_id businessId,l_name lName ,'1' type " +
" from b_label " + " from b_label " +
" where business_id in " + " where del_flag != '1' and flag = '1' and business_id in " +
" <foreach item='item' index='index' collection='list' open='(' separator=',' close=')'> #{item} </foreach> " + " <foreach item='item' index='index' collection='list' open='(' separator=',' close=')'> #{item} </foreach> " +
" </script>") " </script>")
List<QueryLabelResDTO> queryPushLabelByLessonId(List<String> list); List<QueryLabelResDTO> queryPushLabelByLessonId(List<String> list);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment