chenjiahe
2023-04-01 510678fe2f81501914ea4905fb7026b9c7be414f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.hx.phip.dao.mapper;
 
import com.hx.mybatisTool.SqlSentence;
import com.hx.phip.vo.order.payment.PayMethodVo;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
public interface RefundMapper {
    /**总支付方式记录返回-支付编号求和*/
    List<PayMethodVo> selectConsumePayList(@Param("orderId") String orderId);
    /**一级支付方式记录返回-支付编号求和*/
    List<PayMethodVo> selectConsumePayOneList(@Param("typeId") String typeId);
    /**二级支付方式记录返回-支付编号求和*/
    List<PayMethodVo> selectConsumePayTwoList(@Param("typeId") String typeId);
}