ソースを参照

fix 调整车队名称

chenbiao 1 年間 前
コミット
2b27f6c076

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

@@ -502,7 +502,7 @@ public class ChatGptAccountServiceImpl implements ChatGptAccountService {
 
         view.setStatus(view.getScore() >= 100 ? "繁忙" : "空闲"); // 或“繁忙”
 
-        if(view.getCarName().contains("T") && view.getIsPlus() == 1){
+        if(view.getCarName().contains("T")){
             view.setType("Team");
             Long team = view.getTeamClearsIn();
             if (team != 0L) {
@@ -518,7 +518,7 @@ public class ChatGptAccountServiceImpl implements ChatGptAccountService {
                 view.setStatus("部分停运");
             }
         }else {
-            view.setType(view.getIsPlus() == 1 ? "Plus" : "3.5");
+            view.setType("Plus");
             Long aLong = view.getClearsIn();
             if (aLong != 0L) {
                 view.setStatus("停运");