wumei-smart-master/springboot/wumei-iot/src/main/java/com/ruoyi/iot/service/IDeviceOrderTimeService.java
@@ -1,5 +1,6 @@
package com.ruoyi.iot.service;
import com.ruoyi.common.core.domain.AjaxResult;
import com.ruoyi.iot.domain.DeviceOrderTime;
import org.apache.ibatis.annotations.Param;
@@ -16,22 +17,13 @@
public interface IDeviceOrderTimeService {
    /**
     * 根据登录的联营商查询接单超时的时间间隔
     * 根据登录的联营商查询接单,完成的超时的时间间隔
     *
     * @param deviceOrderTime
     * @return
     * @throws Exception
     */
    public List<DeviceOrderTime> selectReceiveTimeoutById(DeviceOrderTime deviceOrderTime) throws Exception;
    /**
     * 根据登录的联营商查询接单完成的时间间隔
     *
     * @param deviceOrderTime
     * @return
     * @throws Exception
     */
    public List<DeviceOrderTime> selectFinishTimeoutById(DeviceOrderTime deviceOrderTime) throws Exception;
    public AjaxResult selectDeviceOrderTimeoutById(DeviceOrderTime deviceOrderTime) throws Exception;
    /**
     * 根据登录的用户id查询设备订单超时时间间隔信息
@@ -59,7 +51,7 @@
     * @return
     * @throws Exception
     */
    public int updateDeviceOrderTimeoutById(DeviceOrderTime orderTime) throws Exception;
    public AjaxResult updateDeviceOrderTimeoutById(DeviceOrderTime orderTime) throws Exception;
}