package com.stylefeng.guns.modular.system.service;
|
|
import com.stylefeng.guns.modular.system.util.ResultUtil;
|
import com.stylefeng.guns.modular.system.warpper.EndPushWarpper;
|
import com.stylefeng.guns.modular.system.warpper.OrderServerWarpper;
|
import com.stylefeng.guns.modular.system.warpper.OrderStatusWarpper;
|
|
import java.util.List;
|
|
public interface INettyService {
|
|
|
/**
|
* 获取下单推送完后没有司机下单的提醒
|
* @param uid
|
* @return
|
* @throws Exception
|
*/
|
ResultUtil<EndPushWarpper> queryEndPush(Integer orderId, Integer orderType, Integer uid) throws Exception;
|
|
|
|
/**
|
* 获取服务中的订单数据
|
* @param uid
|
* @return
|
* @throws Exception
|
*/
|
ResultUtil<OrderServerWarpper> queryOrderServer(Integer orderId, Integer orderType, Integer uid) throws Exception;
|
}
|