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 selectConsumePayList(@Param("orderId") String orderId); /**一级支付方式记录返回-支付编号求和*/ List selectConsumePayOneList(@Param("typeId") String typeId); /**二级支付方式记录返回-支付编号求和*/ List selectConsumePayTwoList(@Param("typeId") String typeId); }