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

@@ -61,8 +61,10 @@ public class AiVipLogServiceImpl extends ServiceImpl<AiVipLogDao, AiVipLog> impl
AiVipLog aiVipLog = this.getOne(new LambdaQueryWrapper<AiVipLog>()
.eq(AiVipLog::getUserId,ShiroUtils.getUId())
.eq(AiVipLog::getState,0));
if (aiVipLog.getSurplusCount()>0&&new Date().getTime()<aiVipLog.getEndTime().getTime()){
return true;
if (aiVipLog!=null){
if (aiVipLog.getSurplusCount()>0&&new Date().getTime()<aiVipLog.getEndTime().getTime()){
return true;
}
}
return false;
}

View File

@@ -49,7 +49,7 @@ public class AiRecordFolderController {
String des = chatContent.get(0).getContent();
recordFolderChat.setDescription(des);
recordFolderChat.setChatAssistantName(chatContent.get(0).getChatAssistantName());
recordFolderChat.setDiagnosis(des.contains("诊断:")?des.substring(des.indexOf("诊断:")+3,des.indexOf("病情为")):des);
recordFolderChat.setDiagnosis(des.contains("诊断:")?des.substring(des.indexOf("诊断:")+3,des.indexOf("主要病史")):des);
}
}
return R.ok().put("list",list);

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)