| | |
| | | import com.stylefeng.guns.modular.system.util.ResultUtil; |
| | | import com.stylefeng.guns.modular.system.warpper.BaseWarpper; |
| | | |
| | | import java.util.Map; |
| | | |
| | | public interface IOrderService { |
| | | |
| | | |
| | |
| | | * @return |
| | | * @throws Exception |
| | | */ |
| | | ResultUtil<BaseWarpper> queryExpectedTime(Double slon, Double slat, Double elon, Double elat) throws Exception; |
| | | ResultUtil<BaseWarpper> queryExpectedTime(Integer uid, Double slon, Double slat, Double elon, Double elat) throws Exception; |
| | | |
| | | |
| | | /** |
| | |
| | | * @throws Exception |
| | | */ |
| | | ResultUtil weChatPay(Integer orderId, Integer orderType, Integer type, Integer userType, Integer uid, String content, Integer language) throws Exception; |
| | | |
| | | |
| | | /** |
| | | * 获取订单车牌信息 |
| | | * @param orderType |
| | | * @param orderId |
| | | * @return |
| | | */ |
| | | Map<String, Object> queryOrderLicensePlate(Integer orderType, Integer orderId); |
| | | } |