| 12345678910111213141516171819202122232425262728293031323334 |
- package com.goafanti.residentIntegration.service.impl;
- import java.util.List;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.stereotype.Service;
- import com.goafanti.common.dao.AchievementMapper;
- import com.goafanti.residentIntegration.bo.ResidentIntegrationBo;
- import com.goafanti.residentIntegration.service.ResidentIntegrationService;
- @Service
- public class ResidentIntegrationServiceImpl implements ResidentIntegrationService {
- @Autowired
- private AchievementMapper achievementMapper;
- @Override
- public List<ResidentIntegrationBo> selectJmrhAchievement() {
- // TODO Auto-generated method stub
- return achievementMapper.selectJmrhAchievement();
- }
- @Override
- public List<ResidentIntegrationBo> selectJmrTechnology() {
- // TODO Auto-generated method stub
- return achievementMapper.selectJmrTechnology();
- }
- @Override
- public List<ResidentIntegrationBo> selectJmrProject() {
- // TODO Auto-generated method stub
- return achievementMapper.selectJmrProject();
- }
- }
|