554644cc6a9fa75e533e7bae6c893b3885161580.svn-base 941 B

1234567891011121314151617181920212223242526272829303132
  1. package cn.com.goldenwater.dcproj.service;
  2. import cn.com.goldenwater.dcproj.dao.BisInspAnzeStaticsDao;
  3. import org.springframework.beans.factory.annotation.Autowired;
  4. import org.springframework.stereotype.Service;
  5. import java.util.List;
  6. import java.util.Map;
  7. @Service
  8. public class BisInspAnzeStaticsService {
  9. @Autowired
  10. private BisInspAnzeStaticsDao bisInspAnzeStaticsDao;
  11. public List<Map<String, Object>> insurerUnderwritingCount(Integer year) {
  12. Integer year2 = year + 1;
  13. return bisInspAnzeStaticsDao.insurerUnderwritingCount(year, year2);
  14. }
  15. //
  16. public List<Map<String, Object>> anzeCompletion(Integer year) {
  17. Integer year2 = year + 1;
  18. return bisInspAnzeStaticsDao.anzeCompletion(year, year2);
  19. }
  20. public List<Map<String, Object>> sixmeCompletion(Integer year) {
  21. Integer year2 = year + 1;
  22. return bisInspAnzeStaticsDao.sixmeCompletion(year, year2);
  23. }
  24. }