dos hace 4 meses
padre
commit
42aa669a72

+ 2 - 2
game-business/src/main/java/com/game/business/service/impl/FinTranRecordServiceImpl.java

@@ -212,7 +212,7 @@ public class FinTranRecordServiceImpl extends ServiceImpl<FinTranRecordMapper, F
         tran.setAfterDiamondCoin(appUser.getDiamondCoin() + transfer.getMoney());
         tran.setCurrencyType(TranCurrencyType.Balance.getType());
         tran.setRemarks("团队转账");
-        finTranRecordService.insertFinTranRecord(tran);
+//        finTranRecordService.insertFinTranRecord(tran);
         appUserService.updateUserAmount(tran);
 
         //受益用户增加余额
@@ -231,7 +231,7 @@ public class FinTranRecordServiceImpl extends ServiceImpl<FinTranRecordMapper, F
         toTran.setCurrencyType(TranCurrencyType.Balance.getType());
         toTran.setFromUid(appUser.getUserid());
         tran.setRemarks("团队转账");
-        finTranRecordService.insertFinTranRecord(toTran);
+//        finTranRecordService.insertFinTranRecord(toTran);
         appUserService.updateUserAmount(toTran);
         //清除用户缓存
         redisCache.deleteObject("U:UserInfo:".concat(String.valueOf(appUser.getUserid())));