|
@@ -161,12 +161,9 @@ public class UserWithdrawServiceImpl extends ServiceImpl<UserWithdrawMapper, Use
|
|
userBillEntity.setUserId(userId);
|
|
userBillEntity.setUserId(userId);
|
|
userBillEntity.setTargetUserId(1L);
|
|
userBillEntity.setTargetUserId(1L);
|
|
userBillEntity.setType(1);
|
|
userBillEntity.setType(1);
|
|
- //1:微信2:支付宝
|
|
|
|
- if (req.getType()==1){
|
|
|
|
- userBillEntity.setPayType(2);
|
|
|
|
- } else {
|
|
|
|
- userBillEntity.setPayType(1);
|
|
|
|
- }
|
|
|
|
|
|
+ //1:支付宝 2:微信
|
|
|
|
+ userBillEntity.setPayType(req.getType());
|
|
|
|
+
|
|
userBillEntity.setDescr("用户提现");
|
|
userBillEntity.setDescr("用户提现");
|
|
userBillEntity.setBusinessType(5);
|
|
userBillEntity.setBusinessType(5);
|
|
//此处不记录流水号,暂时记录订单号,等审批通过,支付宝返款了,再把那个流水号给他
|
|
//此处不记录流水号,暂时记录订单号,等审批通过,支付宝返款了,再把那个流水号给他
|