修改时间格式化
This commit is contained in:
@@ -0,0 +1,51 @@
|
||||
package com.volvo.ai.analytic.center.dto.corpus;
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Builder;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
|
||||
/**
|
||||
* @description 语料解析报告
|
||||
* @author BEJSON
|
||||
* @date 2025-03-11
|
||||
*/
|
||||
@Data
|
||||
@Builder
|
||||
@AllArgsConstructor
|
||||
@NoArgsConstructor
|
||||
public class CorpusReportDTO {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
|
||||
/**
|
||||
* 语料Id
|
||||
*/
|
||||
private String aiAnalysisRequestId;
|
||||
|
||||
/**
|
||||
* 语料类型【1:企业微信,2:电话】
|
||||
*/
|
||||
private Long analysisScene;
|
||||
|
||||
/**
|
||||
* corpus_time
|
||||
*/
|
||||
private String corpusTime;
|
||||
|
||||
/**
|
||||
* union_id
|
||||
*/
|
||||
private String unionId;
|
||||
|
||||
/**
|
||||
* user_id
|
||||
*/
|
||||
private String userId;
|
||||
|
||||
private String recordId;
|
||||
|
||||
|
||||
|
||||
}
|
||||
@@ -8,4 +8,6 @@ public class DiFyReq {
|
||||
private String user;
|
||||
private String flowId;
|
||||
private Object inputs;
|
||||
|
||||
private Object businessData;
|
||||
}
|
||||
|
||||
@@ -16,6 +16,9 @@ public class AiAnalysisErrors extends BaseEntity {
|
||||
@TableField("ai_analysis_request_id")
|
||||
private String aiAnalysisRequestId;
|
||||
|
||||
@TableField("ai_analysis_request_type")
|
||||
private String aiAnalysisRequestType;
|
||||
|
||||
@TableField("dify_response")
|
||||
private String difyResponse; // JSON 字符串
|
||||
|
||||
|
||||
Reference in New Issue
Block a user