|
|
@@ -0,0 +1,39 @@
|
|
|
+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.math.BigDecimal;
|
|
|
+import java.util.Date;
|
|
|
+
|
|
|
+@Data
|
|
|
+@TableName("family_relationship_scores")
|
|
|
+public class FamilyRelationshipScore implements Serializable {
|
|
|
+
|
|
|
+ @TableId(type = IdType.AUTO)
|
|
|
+ private Long id;
|
|
|
+
|
|
|
+ private Long familyId;
|
|
|
+
|
|
|
+ /** 分数持有方(A对B的行) */
|
|
|
+ private Long fromMemberId;
|
|
|
+
|
|
|
+ /** 分数对象方 */
|
|
|
+ private Long toMemberId;
|
|
|
+
|
|
|
+ /** A对B的信任 */
|
|
|
+ private BigDecimal trustScore;
|
|
|
+
|
|
|
+ /** A对B的亲近 */
|
|
|
+ private BigDecimal intimacyScore;
|
|
|
+
|
|
|
+ /** A对B的沟通 */
|
|
|
+ private BigDecimal communicationScore;
|
|
|
+
|
|
|
+ private Date createdAt;
|
|
|
+
|
|
|
+ private Date updatedAt;
|
|
|
+}
|