7132e626969460dac557fdcb31408d525fba3a1a.svn-base 852 B

1234567891011121314151617181920212223242526272829
  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. return bisInspAnzeStaticsDao.insurerUnderwritingCount(year);
  13. }
  14. public List<Map<String, Object>> anzeCompletion(Integer year) {
  15. return bisInspAnzeStaticsDao.anzeCompletion(year);
  16. }
  17. public List<Map<String, Object>> sixmeCompletion(Integer year) {
  18. Integer year2 = year + 1;
  19. return bisInspAnzeStaticsDao.sixmeCompletion(year, year2);
  20. }
  21. }