|
@@ -29,10 +29,7 @@ import org.springframework.stereotype.Service;
|
|
|
import org.springframework.transaction.annotation.Transactional;
|
|
|
|
|
|
import java.math.BigDecimal;
|
|
|
-import java.util.ArrayList;
|
|
|
-import java.util.Date;
|
|
|
-import java.util.List;
|
|
|
-import java.util.Objects;
|
|
|
+import java.util.*;
|
|
|
import java.util.stream.Collectors;
|
|
|
|
|
|
/**
|
|
@@ -96,6 +93,7 @@ public class WalletReceiptsService {
|
|
|
walletReceipts.setOutTradeNo(vipUserRecord.getPlanningId());
|
|
|
walletReceipts.setTotal(rulerVo.getBaseTotal());
|
|
|
walletReceipts.setEstimatedTime(DateUtils.nextMonthDayStartTime(rulerVo.getDay()));
|
|
|
+ vipUserRecord.setId(UUID.randomUUID().toString().replaceAll("-", ""));
|
|
|
walletReceipts.setVipUserRecord(vipUserRecord);
|
|
|
walletReceipts.setRuler(rulerVo);
|
|
|
//邀请人钱包
|