public List<BetReport> betReportByMonth(Integer year, Integer month) {
   return betReportDao.betReportByMonth(year, month);
 }
 public List<BetReport> betReportDetail(Integer year, Integer month) {
   return betReportDao.betReportDetail(year, month);
 }
 @Override
 public void insertBetReport() {
   betReportDao.insertBetReport();
 }