大模型分析结果保存

This commit is contained in:
spllzh
2025-09-21 10:01:00 +08:00
parent e83d803e70
commit a68f9a87bb
28 changed files with 964 additions and 15 deletions

View File

@@ -39,3 +39,6 @@ public interface ICustomerProfileAnalysisService extends IService<CustomerProfil

View File

@@ -22,9 +22,12 @@ public class CustomerProfileAnalysisServiceImpl extends ServiceImpl<CustomerProf
@Override
public boolean saveCustomerProfileAnalysis(CustomerProfileAnalysis analysis) {
try {
log.info("保存客户画像分析结果开始,参数:{}", analysis);
boolean result = this.save(analysis);
if (result) {
log.info("客户画像分析结果保存成功ID: {}", analysis.getId());
CustomerProfileAnalysis ai17583471414673961 = this.getByProfileAnalysisRecordId(analysis.getProfileAnalysisRecordId());
log.info("获取AI_1758347141467_3961结果{}", ai17583471414673961);
} else {
log.error("客户画像分析结果保存失败");
}
@@ -71,3 +74,6 @@ public class CustomerProfileAnalysisServiceImpl extends ServiceImpl<CustomerProf

View File

@@ -37,6 +37,9 @@ public interface IMenuService extends IService<Menu> {

View File

@@ -37,6 +37,9 @@ public interface IUserRoleService extends IService<UserRole> {

View File

@@ -41,6 +41,9 @@ public class MenuServiceImpl extends ServiceImpl<MenuMapper, Menu> implements IM

View File

@@ -41,6 +41,9 @@ public class RoleServiceImpl extends ServiceImpl<RoleMapper, Role> implements IR

View File

@@ -41,6 +41,9 @@ public class UserRoleServiceImpl extends ServiceImpl<UserRoleMapper, UserRole> i