From 699d88f5e4b4b8a00a023013fa543a86dae3cd74 Mon Sep 17 00:00:00 2001
From: xiaoyong931011 <15274802129@163.com>
Date: Thu, 11 Mar 2021 15:05:16 +0800
Subject: [PATCH] 20210311 审核时跟新一个审核时间字段

---
 src/main/java/com/xcong/excoin/modules/documentary/service/impl/DocumentaryServiceImpl.java |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/src/main/java/com/xcong/excoin/modules/documentary/service/impl/DocumentaryServiceImpl.java b/src/main/java/com/xcong/excoin/modules/documentary/service/impl/DocumentaryServiceImpl.java
index e80d3e9..5872b91 100644
--- a/src/main/java/com/xcong/excoin/modules/documentary/service/impl/DocumentaryServiceImpl.java
+++ b/src/main/java/com/xcong/excoin/modules/documentary/service/impl/DocumentaryServiceImpl.java
@@ -158,6 +158,7 @@
 			memberMapper.updateById(memberEntity);
 			//更新【交易员信息表】数据
 			selectById.setProfitRatio(profitRatio);
+			selectById.setEntryTime(new Date());
 			selectById.setVerifyStatus(FollowTraderInfoEntity.VERIFYSTATUS_Y);
 			followTraderInfoMapper.updateById(selectById);
 			//新增【交易员收益信息 】数据
@@ -180,6 +181,7 @@
 			redisUtils.set("app_" + token, JSONObject.toJSONString(memberEntity), 36000);
 		}else {
 			//更新【交易员信息表】数据
+			selectById.setEntryTime(new Date());
 			selectById.setVerifyStatus(FollowTraderInfoEntity.VERIFYSTATUS_N);
 			followTraderInfoMapper.updateById(selectById);
 		}

--
Gitblit v1.9.1