lizijie
2020-12-17 b8a05e777e760e1937258544da1494b2d93055d0
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.moral.mapper;
 
 
import com.moral.entity.DeviceAdjustValueTiming;
import com.moral.entity.PollutionSourcePoint;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
import java.util.Map;
 
public interface PollutionSourcPointMapper {
    PollutionSourcePoint selectByMonitorPointId(@Param("monitorPointId") Integer monitorPointId);
}