From fd6cc95849a1ba9bcea316ed9d6c6aaad97979d2 Mon Sep 17 00:00:00 2001 From: xuhy <3313886187@qq.com> Date: 星期三, 21 六月 2023 10:33:57 +0800 Subject: [PATCH] 地图修改 --- user/guns-admin/src/main/java/com/supersavedriving/user/modular/system/service/IOrderService.java | 22 ++++++++++++++++++++++ 1 files changed, 22 insertions(+), 0 deletions(-) diff --git a/user/guns-admin/src/main/java/com/supersavedriving/user/modular/system/service/IOrderService.java b/user/guns-admin/src/main/java/com/supersavedriving/user/modular/system/service/IOrderService.java index bd8a81e..50486e7 100644 --- a/user/guns-admin/src/main/java/com/supersavedriving/user/modular/system/service/IOrderService.java +++ b/user/guns-admin/src/main/java/com/supersavedriving/user/modular/system/service/IOrderService.java @@ -129,4 +129,26 @@ * @throws Exception */ ResultUtil orderAppraise(Integer uid, Long orderId, Integer score, String content) throws Exception; + + + /** + * 获取用户行程记录 + * @param uid + * @param pageNum + * @param pageSize + * @return + * @throws Exception + */ + List<OrderListWarpper> queryMyOrder(Integer uid, Integer pageNum, Integer pageSize) throws Exception; + + + /** + * 获取未开票订单 + * @param uid + * @return + * @throws Exception + */ + List<OrderListWarpper> queryNotInvoiceOrder(Integer uid, NotInvoiceOrder notInvoiceOrder) throws Exception; + + } -- Gitblit v1.7.1