This commit is contained in:
wuchunlei
2025-06-06 09:21:04 +08:00
parent 11c2fd858e
commit 1e07466d21
3 changed files with 12 additions and 10 deletions

View File

@@ -69,14 +69,14 @@ public class AiVipController {
flag = 2;//是vip不可升级
}
}
}else {
List<AiChatContent> quankeContentList = aiChatContentService.list(new LambdaQueryWrapper<AiChatContent>()
.eq(AiChatContent::getUserId,ShiroUtils.getUId())
.like(AiChatContent::getChatAssistantName,"全科")
.orderByAsc(AiChatContent::getCreateTime)
.groupBy(AiChatContent::getChatId));
}
List<AiChatContent> quankeContentList = aiChatContentService.list(new LambdaQueryWrapper<AiChatContent>()
.eq(AiChatContent::getUserId,ShiroUtils.getUId())
.like(AiChatContent::getChatAssistantName,"全科")
.orderByAsc(AiChatContent::getCreateTime)
.groupBy(AiChatContent::getChatId));
if (quankeContentList.size()<3){
freeCount = 3-quankeContentList.size();
}
return R.ok().put("aiVipLog",aiVipLog)
.put("flag",flag)