修正错误的字段

This commit is contained in:
2026-02-07 22:03:59 +08:00
parent a4577a89e1
commit 6350261a55
4 changed files with 12 additions and 3 deletions

View File

@@ -64,10 +64,18 @@ public class AudioManagementStatistics implements Serializable {
@Schema(description = "销售人员录音总时长(分钟)")
@TableField("personal_total_duration")
private Long salesTotalDuration;
@Schema(description = "销售人员录音总时长统计(汇总,不映射到数据库)")
@TableField(exist = false)
private Long salesTotalDurationStatistic;
@Schema(description = "销售人员录音数量")
@TableField("personal_recording_count")
private Integer salesRecordingCount;
@Schema(description = "销售人员录音数量统计(汇总,不映射到数据库)")
@TableField(exist = false)
private Integer salesRecordingCountStatistic;
@Schema(description = "销售人员录音平均时长(分钟)")
@TableField("personal_avg_duration")