| 1234567891011121314151617181920212223242526272829 |
- package cn.com.goldenwater.dcproj.service;
- import cn.com.goldenwater.dcproj.dao.BisInspAnzeStaticsDao;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.stereotype.Service;
- import java.util.List;
- import java.util.Map;
- @Service
- public class BisInspAnzeStaticsService {
- @Autowired
- private BisInspAnzeStaticsDao bisInspAnzeStaticsDao;
- public List<Map<String, Object>> insurerUnderwritingCount(Integer year) {
- return bisInspAnzeStaticsDao.insurerUnderwritingCount(year);
- }
- public List<Map<String, Object>> anzeCompletion(Integer year) {
- return bisInspAnzeStaticsDao.anzeCompletion(year);
- }
- public List<Map<String, Object>> sixmeCompletion(Integer year) {
- Integer year2 = year + 1;
- return bisInspAnzeStaticsDao.sixmeCompletion(year, year2);
- }
- }
|