|
@ -24,6 +24,7 @@ import com.zc.business.service.IMiddleDatabaseService; |
|
|
import com.zc.common.core.httpclient.OkHttp; |
|
|
import com.zc.common.core.httpclient.OkHttp; |
|
|
import com.zc.common.core.httpclient.exception.HttpException; |
|
|
import com.zc.common.core.httpclient.exception.HttpException; |
|
|
import okhttp3.Response; |
|
|
import okhttp3.Response; |
|
|
|
|
|
import org.apache.ibatis.annotations.Param; |
|
|
import org.springframework.beans.factory.annotation.Value; |
|
|
import org.springframework.beans.factory.annotation.Value; |
|
|
import org.springframework.stereotype.Service; |
|
|
import org.springframework.stereotype.Service; |
|
|
import org.springframework.util.StringUtils; |
|
|
import org.springframework.util.StringUtils; |
|
@ -659,5 +660,10 @@ public class DcDeviceServiceImpl extends ServiceImpl<DcDeviceMapper, DcDevice> i |
|
|
public List<DcDevice> selectTollStationCamPile(String direction, String startMileage, String endMileage) { |
|
|
public List<DcDevice> selectTollStationCamPile(String direction, String startMileage, String endMileage) { |
|
|
return dcDeviceMapper.selectTollStationCamPile(direction, startMileage, endMileage); |
|
|
return dcDeviceMapper.selectTollStationCamPile(direction, startMileage, endMileage); |
|
|
} |
|
|
} |
|
|
|
|
|
//获取设备信息
|
|
|
|
|
|
@Override |
|
|
|
|
|
public DcDevice getDcDeviceById(String iotDeviceId) { |
|
|
|
|
|
return dcDeviceMapper.getDcDeviceById(iotDeviceId); |
|
|
|
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|