| | |
| | | package cn.lili.modules.order.order.service; |
| | | |
| | | import cn.lili.common.vo.ResultMessage; |
| | | import cn.lili.modules.lmk.domain.vo.OrderCountVO; |
| | | import cn.lili.modules.member.entity.dto.MemberAddressDTO; |
| | | import cn.lili.modules.order.cart.entity.dto.TradeDTO; |
| | | import cn.lili.modules.order.order.entity.dos.Order; |
| | |
| | | */ |
| | | Order getBySn(String orderSn); |
| | | |
| | | /** |
| | | * 统计用户的总金额以及订单已完成数 |
| | | * |
| | | * @param id 会员id |
| | | * @return |
| | | */ |
| | | OrderCountVO countByIdOrder(String id); |
| | | |
| | | /** |
| | | * 订单查询 |
| | |
| | | * @param orderSearchParams 查询参数 |
| | | * @return 简短订单分页 |
| | | */ |
| | | IPage<OrderSimpleVO> queryByParams(OrderSearchParams orderSearchParams); |
| | | IPage<OrderSimpleVO> queryByParams(OrderSearchParams orderSearchParams,Boolean needHide); |
| | | /** |
| | | * 订单查询 |
| | | * |
| | |
| | | * @return 订单 |
| | | */ |
| | | Order updateSellerRemark(String orderSn, String sellerRemark); |
| | | |
| | | |
| | | } |