lizijie
2020-12-02 842148f960e3d5dc995c49ef42a6ce2b8f1d4e34
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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;
    }
}