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