package com.moral.service.impl; import java.util.List; import javax.annotation.Resource; import org.springframework.stereotype.Service; import com.moral.entity.MonitorPoint; import com.moral.mapper.MonitorPointMapper; import com.moral.service.MonitorPointService; @Service public class MonitorPointServiceImpl implements MonitorPointService { @Resource private MonitorPointMapper monitorPointMapper; @Override public List getMonitorPointsByAreaName(String areaName) { return monitorPointMapper.getMonitorPointsByAreaName(areaName); } }