|
|
@@ -642,7 +642,7 @@ public class ChatGptAccountServiceImpl implements ChatGptAccountService {
|
|
|
.map((historyView) -> {
|
|
|
ChatgptCarInfoView chatgptCarInfoView = buildChatgptCarInfoView(historyView.getCarId(), historyView.getCarName(), historyView.getIsPLus(), redisService.zScore(RedisService.key.CHATGPT_CAR_SCORES.getName(), historyView.getCarId()));
|
|
|
chatgptCarInfoView.setIsHistory(true);
|
|
|
- chatgptCarInfoView.setScore(Math.min(redisService.zScore(RedisService.key.CHATGPT_CAR_SCORES.getName(), historyView.getCarId()), 100));
|
|
|
+ chatgptCarInfoView.setScore(Math.min(redisService.zScore(RedisService.key.CHATGPT_CAR_SCORES.getName(), historyView.getCarId()), 200));
|
|
|
|
|
|
return chatgptCarInfoView;
|
|
|
}).collect(Collectors.toCollection(LinkedHashSet::new));
|