This commit is contained in:
2025-09-09 11:13:36 +08:00
parent cf50a9f1fa
commit fcd35c78e5
60 changed files with 2753 additions and 2196 deletions
@@ -28,6 +28,24 @@ public class UserStats extends BaseEntity {
@TableField("user_id")
private String userId;
/**
* 统计类型
*/
@TableField("stats_type")
private String statsType;
/**
* 统计值
*/
@TableField("value")
private Double value;
/**
* 周期
*/
@TableField("period")
private String period;
/**
* 总对话数
*/
@@ -105,4 +123,4 @@ public class UserStats extends BaseEntity {
*/
@TableField("social_interactions")
private Integer socialInteractions;
}
}