From e7599b419fcb22f19e074c9f58e3ed3a96840c5d Mon Sep 17 00:00:00 2001 From: xiaoyong931011 <15274802129@163.com> Date: Fri, 05 Mar 2021 10:19:10 +0800 Subject: [PATCH] 20210304 跟单只允许跟一个交易员 --- src/main/java/com/xcong/excoin/modules/documentary/entity/FollowTraderInfoEntity.java | 6 ++++++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/xcong/excoin/modules/documentary/entity/FollowTraderInfoEntity.java b/src/main/java/com/xcong/excoin/modules/documentary/entity/FollowTraderInfoEntity.java index 6efd833..6db2e7a 100644 --- a/src/main/java/com/xcong/excoin/modules/documentary/entity/FollowTraderInfoEntity.java +++ b/src/main/java/com/xcong/excoin/modules/documentary/entity/FollowTraderInfoEntity.java @@ -21,6 +21,8 @@ private static final long serialVersionUID = 1L; public static final String DECLARATION_DEFAULT = "正忙着赚钱,什么也没写"; + + public static final Integer FOLLOWNUM_DEFAULT = 500; /** * 会员ID */ @@ -76,6 +78,10 @@ private Integer isOpen; public static final Integer ISOPEN_Y = 1; public static final Integer ISOPEN_N = 2; + /** + * 最大跟随人数 + */ + private Integer followNum; } -- Gitblit v1.9.1