家居大模型联调,分析sop执行情况

This commit is contained in:
ZLI263
2025-11-23 10:58:19 +08:00
parent 23fe2e70b1
commit 64fb90c381
9 changed files with 313 additions and 10 deletions

View File

@@ -112,6 +112,18 @@ public class AudioTextAnalysisFurniture implements Serializable {
@TableField("customer_id")
private String customerId;
@Schema(description = "总结1")
@TableField("summary1")
private String summary1;
@Schema(description = "总结2")
@TableField("summary2")
private String summary2;
@Schema(description = "总结3")
@TableField("summary3")
private String summary3;
@Schema(description = "录音文本")
@TableField(exist = false)
private String recordingText;

View File

@@ -53,6 +53,10 @@ public class TodoItem implements Serializable {
@TableField("owner_phone")
private String ownerPhone;
@Schema(description = "待处理日期")
@TableField("pending_date")
private LocalDateTime pendingDate;
@Schema(description = "创建时间")
@TableField("create_time")
private LocalDateTime createTime;