Пример #1
0
 /**
  * @param date yyyy-MM-dd
  * @return
  * @throws Exception
  */
 public Map<Long, Long> findMonitorCountMapAsValueByDate(long appId, String date, long[] keyId)
     throws Exception {
   if (dao != null) {
     try {
       Map<Long, Long> result = dao.findMonitorCountMapAsValueByDate(appId, date, keyId);
       return result;
     } catch (Exception e) {
       logger.error("查询出错,发送WEB旺旺邮件", e);
     }
   }
   return null;
 }