Package com.dianping.cat.home.dal.report

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


      return new TransactionReport(domain);
    }
  }

  private TransactionReport queryFromMonthlyBinary(int id, String domain) throws DalException {
    MonthlyReportContent content = m_monthlyReportContentDao.findByPK(id, MonthlyReportContentEntity.READSET_FULL);

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


      return new HeavyReport(domain);
    }
  }

  private HeavyReport queryFromMonthlyBinary(int id, String domain) throws DalException {
    MonthlyReportContent content = m_monthlyReportContentDao.findByPK(id, MonthlyReportContentEntity.READSET_FULL);

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

TOP

Related Classes of com.dianping.cat.home.dal.report.MonthlyReportContent

Copyright © 2018 www.massapicom. 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.