puzhibing
2023-12-01 ddcef762ff4a159e132c68dfec512c60a68a53e6
DriverIGOTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/smallLogistics/server/IOrderLogisticsService.java
@@ -17,7 +17,7 @@
     * @return
     * @throws Exception
     */
    Map<String, Object> queryPushOrder(Integer orderId) throws Exception;
    Map<String, Object> queryPushOrder(Integer orderId, Integer language) throws Exception;
@@ -38,7 +38,7 @@
     * @return
     * @throws Exception
     */
    Map<String, Object> queryOrderInfo(Integer orderId) throws Exception;
    Map<String, Object> queryOrderInfo(Integer language, Integer orderId) throws Exception;
@@ -79,7 +79,7 @@
     * @return
     * @throws Exception
     */
    List<Map<String, Object>> queryOrderList(Integer driverId) throws Exception;
    List<Map<String, Object>> queryOrderList(Integer driverId, Integer language) throws Exception;
@@ -90,7 +90,7 @@
     * @return
     * @throws Exception
     */
    List<Map<String, Object>> queryMyAllOrder(Integer state, Integer uid) throws Exception;
    List<Map<String, Object>> queryMyAllOrder(Integer state, Integer uid, Integer language) throws Exception;
    /**
@@ -120,4 +120,13 @@
     * @throws Exception
     */
    void sendVerificationCode(Integer orderId, Integer language) throws Exception;
    /**
     * 支付完成后的订单处理
     * @param id            订单=id
     * @param order_id      工行支付单号
     * @throws Exception
     */
    void payOrderLogisticsCallback(Integer id, String order_id, Integer language) throws Exception;
}