chenjiahe
2023-04-02 2a45d42cebd76d0f0add392c0e06d2cbbb36c63f
phi_platform_common/src/main/java/com/hx/phip/dao/mapper/RefundMapper.java
@@ -1,6 +1,5 @@
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;
@@ -8,9 +7,13 @@
public interface RefundMapper {
    /**总支付方式记录返回-支付编号求和*/
    List<PayMethodVo> selectConsumePayList(@Param("orderId") String orderId);
    List<PayMethodVo> getConsumePayGroupByNumberNo(@Param("orderId") String orderId);
    /**一级支付方式记录返回-支付编号求和*/
    List<PayMethodVo> selectConsumePayOneList(@Param("typeId") String typeId);
    List<PayMethodVo> getConsumePayOneGroupByNumberNo(@Param("typeId") String typeId);
    /**二级支付方式记录返回-支付编号求和*/
    List<PayMethodVo> getConsumePayTwoGroupByNumberNo(@Param("typeId") String typeId);
    /**一级支付方式记录返回*/
    List<PayMethodVo> selectConsumePayOneList(@Param("typeId") String typeId);
    /**二级支付方式记录返回*/
    List<PayMethodVo> selectConsumePayTwoList(@Param("typeId") String typeId);
}