@Override
 public PaginationSupport<NoticeModel> getNoticesByConditions(
     String userId,
     String schoolId,
     String departmentId,
     String name,
     String status,
     String type,
     String emergence,
     String beginDate,
     String endDate,
     int index,
     int pageSize)
     throws ServiceException {
   // TODO Auto-generated method stub
   return noticeDAO.getNoticesByConditions(
       userId,
       schoolId,
       departmentId,
       name,
       status,
       type,
       emergence,
       beginDate,
       endDate,
       index,
       pageSize);
 }