派生自 projectDept/qhighschool

EricsHu
2022-12-05 068fc7f2e81178e55fa191a13709af64b1a163f6
src/main/java/com/qxueyou/scc/admin/notice/service/impl/NoticeService.java
@@ -150,7 +150,7 @@
       if(lstClassIds == null || lstClassIds.size()==0){
          return ;
       }
      //查询直播关联的班级
      //查询直播关联的班级
      String hql = "select userId from StuStudent  where classId in (:classIds) and deleteFlag is false ";
      
      List<String> lstUserIds = this.findByComplexHql(hql, CollectionUtils.newObjectMap("classIds",lstClassIds.toArray(new String[lstClassIds.size()])), String.class);
@@ -160,7 +160,7 @@
               "creator",notice.getCreator(),"noticeTypeName",notice.getNoticeTypeName());
            
         msgInfoService.doSendTextMsgToUsers(lstUserIds.toArray(new String[lstUserIds.size()]), 
                                 MsgInfo.TYPE_NOTICE," 发布了公告", attrs);
                                 MsgInfo.TYPE_NOTICE," 发布了公告", attrs);
      }
   }