38 lines
1.0 KiB
Java
38 lines
1.0 KiB
Java
package com.rj.service.biz;
|
|
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
import com.rj.entity.CustomerProfileAnalysis;
|
|
|
|
/**
|
|
* 客户画像分析Service接口
|
|
*
|
|
* @author 李中华
|
|
* @date 2025/1/3
|
|
*/
|
|
public interface ICustomerProfileAnalysisService extends IService<CustomerProfileAnalysis> {
|
|
|
|
/**
|
|
* 保存客户画像分析结果
|
|
*
|
|
* @param analysis 客户画像分析结果
|
|
* @return 是否保存成功
|
|
*/
|
|
boolean saveCustomerProfileAnalysis(CustomerProfileAnalysis analysis);
|
|
|
|
/**
|
|
* 根据分析记录ID查询客户画像分析结果
|
|
*
|
|
* @param profileAnalysisRecordId 分析记录ID
|
|
* @return 客户画像分析结果
|
|
*/
|
|
CustomerProfileAnalysis getByProfileAnalysisRecordId(String profileAnalysisRecordId);
|
|
|
|
/**
|
|
* 根据业务ID查询客户画像分析结果
|
|
*
|
|
* @param businessId 业务ID
|
|
* @return 客户画像分析结果
|
|
*/
|
|
CustomerProfileAnalysis getByBusinessId(String businessId);
|
|
}
|