Examples of DailyReportContent


Examples of com.dianping.cat.home.dal.report.DailyReportContent

    problemReport.setEndTime(end);
    return problemReport;
  }

  private ProblemReport queryFromDailyBinary(int id, String domain) throws DalException {
    DailyReportContent content = m_dailyReportContentDao.findByPK(id, DailyReportContentEntity.READSET_FULL);

    if (content != null) {
      return DefaultNativeParser.parse(content.getContent());
    } else {
      return new ProblemReport(domain);
    }
  }
View Full Code Here

Examples of com.dianping.cat.home.dal.report.DailyReportContent

    transactionReport.setEndTime(end);
    return transactionReport;
  }

  private TransactionReport queryFromDailyBinary(int id, String domain) throws DalException {
    DailyReportContent content = m_dailyReportContentDao.findByPK(id, DailyReportContentEntity.READSET_FULL);

    if (content != null) {
      return DefaultNativeParser.parse(content.getContent());
    } else {
      return new TransactionReport(domain);
    }
  }
View Full Code Here

Examples of com.dianping.cat.home.dal.report.DailyReportContent

    heavyReport.setEndTime(end);
    return heavyReport;
  }

  private HeavyReport queryFromDailyBinary(int id, String domain) throws DalException {
    DailyReportContent content = m_dailyReportContentDao.findByPK(id, DailyReportContentEntity.READSET_FULL);

    if (content != null) {
      return DefaultNativeParser.parse(content.getContent());
    } else {
      return new HeavyReport(domain);
    }
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.