From df51a79a9e09e0273cc50d966ad136efe8b99100 Mon Sep 17 00:00:00 2001 From: xiaoyong931011 <15274802129@163.com> Date: Tue, 01 Mar 2022 10:46:32 +0800 Subject: [PATCH] Merge branch 'bea' of http://120.27.238.55:7000/r/exchange into bea --- src/main/java/com/xcong/excoin/modules/coin/entity/ZhiYaTeam.java | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 48 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/xcong/excoin/modules/coin/entity/ZhiYaTeam.java b/src/main/java/com/xcong/excoin/modules/coin/entity/ZhiYaTeam.java new file mode 100644 index 0000000..2c4dc23 --- /dev/null +++ b/src/main/java/com/xcong/excoin/modules/coin/entity/ZhiYaTeam.java @@ -0,0 +1,48 @@ +package com.xcong.excoin.modules.coin.entity; + +import com.baomidou.mybatisplus.annotation.TableName; +import com.xcong.excoin.common.system.base.BaseEntity; +import lombok.Data; + +import java.math.BigDecimal; + +@Data +@TableName("zhiya_Team") +public class ZhiYaTeam extends BaseEntity { + /** + * + */ + private static final long serialVersionUID = 1L; + + /** + * 会员ID + */ + private Long memberId; + + /** + * 是否是代理 1:是 0:否 + */ + private Integer isAgent; + + /** + * 上级 + */ + private String refererId; + + /** + * 上级链 + */ + private String refererIds; + + /** + * 团队委托总量(不包含自己质押的算力) + */ + private BigDecimal zhiyaCnt; + + /** + * 团队总收益(不包含自己质押的算力) + */ + private BigDecimal rewardCnt; + + +} -- Gitblit v1.9.1