| | |
| | | package com.ruoyi.order.mapper; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import model.RefundPassRefundPass; |
| | | import com.ruoyi.common.core.web.page.PageInfo; |
| | | import com.ruoyi.order.model.RefundPass; |
| | | import com.ruoyi.order.vo.OrderRefundPassList; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | * @since 2024-11-21 |
| | | */ |
| | | public interface RefundPassMapper extends BaseMapper<RefundPass> { |
| | | |
| | | |
| | | /** |
| | | * 管理后台获取售后管理列表数据 |
| | | * @param code 订单号 |
| | | * @param appUserIds 下单用户id |
| | | * @param refundMethod 售后类型 |
| | | * @param status 售后状态 |
| | | * @return |
| | | */ |
| | | List<OrderRefundPassList> getOrderRefundPassList(PageInfo<OrderRefundPassList> pageInfo, @Param("code") String code, @Param("appUserIds") List<Long> appUserIds, |
| | | @Param("shopId") Integer shopId, @Param("refundMethod") Integer refundMethod, |
| | | @Param("status") Integer status); |
| | | |
| | | } |