Procházet zdrojové kódy

feat(pearl): ResourceItem 实体新增社会连接字段

Sisyphus Agent před 1 týdnem
rodič
revize
40ec689680

+ 15 - 0
cfc-backend/src/main/java/com/etotem/cfc/entity/ResourceItem.java

@@ -30,5 +30,20 @@ public class ResourceItem implements Serializable {
     /** 关联联系人ID(可选) */
     private Long contactId;
 
+    /** 连接类型枚举名(ConnectionType),空串=历史资源 */
+    private String connectionType;
+
+    /** 优先级: 1=高 2=中 3=低(手动覆盖用) */
+    private Integer priority;
+
+    /** 价值分 0-100(自动计算,可手动覆盖) */
+    private Integer valueScore;
+
+    /** 最近互动时间 */
+    private Date lastInteractionAt;
+
+    /** 互动总次数 */
+    private Integer interactionCount;
+
     private Date createdAt;
 }