|
|
@@ -745,7 +745,11 @@ public class ChatGptAccountServiceImpl implements ChatGptAccountService {
|
|
|
view.setScore(Math.min(score, 200));
|
|
|
view.setStatus(score >= 50 ? "繁忙" : "空闲"); // 或“繁忙”
|
|
|
|
|
|
- view.setType(isPlus == 1 ? "plus" : "3.5");
|
|
|
+ if(carName.contains("T")){
|
|
|
+ view.setType("Team");
|
|
|
+ }else {
|
|
|
+ view.setType(isPlus == 1 ? "Plus" : "3.5");
|
|
|
+ }
|
|
|
int use = getCarConversationCount(carId, 3L).intValue();
|
|
|
view.setUse(use);
|
|
|
Long aLong = carOaiLimit(carId);
|