yanghb
2023-04-24 981a04a92cbdf6fbd7b54ff9eec7b9c4e0896354
DriverTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/system/service/IOrderService.java
@@ -2,7 +2,6 @@
import com.stylefeng.guns.modular.system.model.OrderPosition;
import com.stylefeng.guns.modular.system.util.ResultUtil;
import com.stylefeng.guns.modular.system.warpper.BaseWarpper;
import com.stylefeng.guns.modular.system.warpper.OrderListWarpper;
import java.util.Date;
@@ -114,7 +113,7 @@
     * @return
     * @throws Exception
     */
    ResultUtil process(Integer orderId, Integer orderType, Integer state, Integer uid, Double lon, Double lat, String driverImg) throws Exception;
    ResultUtil process(Integer orderId, Integer orderType, Integer state, Integer uid, Double lon, Double lat) throws Exception;
    /**
@@ -129,20 +128,6 @@
     * @throws Exception
     */
    ResultUtil confirmFees(Integer orderId, Integer orderType, Integer type, Double travelFee, Double parkingFee, Double crossingFee) throws Exception;
    ResultUtil cancleOrder(Integer orderId, Integer orderType) throws Exception;
    ResultUtil updatePeopleNum(Integer orderId, Integer peopleNum) throws Exception;
    /**
     * 确认费用操作
     * @param orderId
     * @param orderType
     * @param type
     * @param travelFee
     * @return
     * @throws Exception
     */
    ResultUtil confirmFees1(Integer orderId, Integer orderType, Integer type, Double travelFee, String additionalFee) throws Exception;
    /**
@@ -254,14 +239,4 @@
     * @throws Exception
     */
    Map<String, Object> queryMoneyInfo(Integer orderId, Integer orderType) throws Exception;
    /**
     * 获取附加费配置
     * @param orderType
     * @param orderId
     * @return
     * @throws Exception
     */
    List<BaseWarpper> queryAdditionalFee(Integer orderType, Integer orderId, Integer uid) throws Exception;
}