From 3da86330472b0170385427c4ff63204f8d5a2fff Mon Sep 17 00:00:00 2001 From: xiaoyong931011 <15274802129@163.com> Date: Mon, 22 Mar 2021 15:53:57 +0800 Subject: [PATCH] 20210319 平仓加载中 --- src/main/java/com/xcong/excoin/modules/documentary/entity/FollowTraderInfoEntity.java | 7 +++++++ 1 files changed, 7 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 bc8bb17..18d30c9 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 @@ -1,9 +1,11 @@ package com.xcong.excoin.modules.documentary.entity; import java.math.BigDecimal; +import java.util.Date; import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableName; +import com.fasterxml.jackson.annotation.JsonFormat; import com.xcong.excoin.common.entity.BaseEntity; import lombok.Data; @@ -19,6 +21,8 @@ */ private static final long serialVersionUID = 1L; + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") + private Date entryTime; /** * 会员ID */ @@ -92,6 +96,9 @@ private double agentNum; @TableField(exist = false) private String isok; + //当前跟随人数 + @TableField(exist = false) + private String followNumNow; } -- Gitblit v1.9.1