瀏覽代碼

fix 新增team号

chenbiao 2 年之前
父節點
當前提交
313738ae43

+ 5 - 1
netflix-service/src/main/java/com/cyksj/service/chatgpt/impl/ChatGptAccountServiceImpl.java

@@ -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);