package com.moral.service.impl; import com.moral.entity.PollutionSourcePoint; import com.moral.mapper.PollutionSourcPointMapper; import com.moral.service.PollutioSourcePointService; import org.springframework.stereotype.Service; import javax.annotation.Resource; @Service public class PollutioSourcePointServiceImpl implements PollutioSourcePointService { @Resource private PollutionSourcPointMapper pollutionSourcPointMapper; @Override public PollutionSourcePoint selectByMonitorPointId(Integer monitorPointId) { PollutionSourcePoint result = pollutionSourcPointMapper.selectByMonitorPointId(monitorPointId); return result; } }