|
@@ -0,0 +1,40 @@
|
|
|
|
|
+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("user_platform_balance")
|
|
|
|
|
+public class UserPlatformBalance implements Serializable {
|
|
|
|
|
+
|
|
|
|
|
+ @TableId(type = IdType.AUTO)
|
|
|
|
|
+ private Long id;
|
|
|
|
|
+
|
|
|
|
|
+ private Long userId;
|
|
|
|
|
+
|
|
|
|
|
+ private Long familyId;
|
|
|
|
|
+
|
|
|
|
|
+ /** 累计获得 */
|
|
|
|
|
+ private Integer totalEarned;
|
|
|
|
|
+
|
|
|
|
|
+ /** 可用余额(可提现/可兑换) */
|
|
|
|
|
+ private Integer available;
|
|
|
|
|
+
|
|
|
|
|
+ /** 冻结(提现审核中) */
|
|
|
|
|
+ private Integer frozen;
|
|
|
|
|
+
|
|
|
|
|
+ /** 已提现 */
|
|
|
|
|
+ private Integer withdrawn;
|
|
|
|
|
+
|
|
|
|
|
+ /** 已兑换 */
|
|
|
|
|
+ private Integer exchanged;
|
|
|
|
|
+
|
|
|
|
|
+ private Date updatedAt;
|
|
|
|
|
+
|
|
|
|
|
+ private Date createdAt;
|
|
|
|
|
+}
|