| | |
| | | |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.github.binarywang.wxpay.bean.ecommerce.PartnerTransactionsResult; |
| | | import com.github.binarywang.wxpay.bean.ecommerce.RefundNotifyResult; |
| | | import com.github.binarywang.wxpay.bean.profitsharingV3.ProfitSharingNotifyResult; |
| | | import com.ruoyi.order.domain.dto.*; |
| | | import com.ruoyi.order.domain.pojo.order.Order; |
| | | import com.ruoyi.order.domain.vo.*; |
| | |
| | | * @param Transaction transaction |
| | | * @return void |
| | | */ |
| | | void payBack(Transaction transaction); |
| | | void payBack(PartnerTransactionsResult transaction); |
| | | |
| | | /** |
| | | * 取消订单 |
| | |
| | | * @return void |
| | | */ |
| | | void checkOrderStatus(); |
| | | |
| | | /** |
| | | * 分账通知回调 |
| | | * @param result |
| | | */ |
| | | void profitSharingBack(ProfitSharingNotifyResult result); |
| | | |
| | | /** |
| | | * 订单退款回调 |
| | | * @param result |
| | | */ |
| | | void orderRefundBack(RefundNotifyResult result); |
| | | |
| | | /** |
| | | * @description 获取商户订单统计 |
| | | * @author jqs |
| | | * @date 2023/8/4 10:25 |
| | | * @param mgtShopAllOrderPageDto |
| | | * @return MgtShopAllOrderTotal |
| | | */ |
| | | MgtShopAllOrderTotal getMgtShopAllOrderTotal(MgtShopAllOrderPageDto mgtShopAllOrderPageDto); |
| | | |
| | | |
| | | /** |
| | | * 分页获取会员消费记录 |
| | | * @param merOrderPageDto |
| | | * @return |
| | | */ |
| | | List<MerOrderPageVo> pageMerMemberPayOrder(Page page,MerMemberNoClearOrderDto merOrderPageDto); |
| | | } |