yubin 4 өдөр өмнө
parent
commit
2513e23907

+ 2 - 0
cif-service/src/main/java/com/txz/cif/dubbo/impl/AccountDubboServiceImpl.java

@@ -94,6 +94,7 @@ public class AccountDubboServiceImpl implements AccountDubboService {
         // BizTypeEnum 类型 1001充值 2001提现  3001开团支付 3002参团支付  4001未成团退款 4002成团退款 5001开团红包收益 5002参团红包收益 5003签到红包收益 5004下级红包佣金 5005下下级红包佣金
         Result result = flowService.pay(PayParam.builder().bizNo(param.getBizNo())
                 .amount(param.getAmount())
+                .userId(param.getUserId())
                 .bizId(param.getBizId())
                 .transTime(param.getTransTime())
                 .bizType(BizTypeEnum.OPEN_GROUP_PAY.getKey())
@@ -109,6 +110,7 @@ public class AccountDubboServiceImpl implements AccountDubboService {
         Result result = flowService.pay(PayParam.builder().bizNo(param.getBizNo())
                 .amount(param.getAmount())
                 .bizId(param.getBizId())
+                        .userId(param.getUserId())
                 .transTime(param.getTransTime())
                 .bizType(BizTypeEnum.JOIN_GROUP_PAY.getKey())
                 .build());