| | |
| | | package com.ruoyi.iot.service; |
| | | |
| | | import com.ruoyi.common.core.domain.AjaxResult; |
| | | import com.ruoyi.iot.domain.DeviceOrderTime; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | |
| | | 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查询设备订单超时时间间隔信息 |
| | |
| | | * @return |
| | | * @throws Exception |
| | | */ |
| | | public int updateDeviceOrderTimeoutById(DeviceOrderTime orderTime) throws Exception; |
| | | public AjaxResult updateDeviceOrderTimeoutById(DeviceOrderTime orderTime) throws Exception; |
| | | |
| | | |
| | | } |