|
|
@@ -0,0 +1,26 @@
|
|
|
+package com.etotem.cfc.entity;
|
|
|
+
|
|
|
+import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
+import lombok.Data;
|
|
|
+
|
|
|
+import java.io.Serializable;
|
|
|
+import java.util.Date;
|
|
|
+
|
|
|
+@Data
|
|
|
+@TableName("profile_snapshot")
|
|
|
+public class ProfileSnapshot implements Serializable {
|
|
|
+ @TableId(type = IdType.AUTO)
|
|
|
+ private Long id;
|
|
|
+ private Long memberId;
|
|
|
+ private String dimensionScores;
|
|
|
+ private String bodyMetrics;
|
|
|
+ private String mindMetrics;
|
|
|
+ private String wisdomMetrics;
|
|
|
+ private String actionMetrics;
|
|
|
+ private String wealthMetrics;
|
|
|
+ private String problemDomains;
|
|
|
+ private Date computedAt;
|
|
|
+ private Date updatedAt;
|
|
|
+}
|