于紫祥_1901
2020-10-22 f0b5148973e9437f3651153e53f8f336c4c3c6ff
1
2
3
4
5
6
7
8
9
10
package com.moral.mapper;
 
import com.moral.entity.DeviceRoad;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
public interface DeviceRoadMapper {
    List<DeviceRoad> getData(@Param("mac") String mac, @Param("monitorPointId") int id);
}