From f38671e64e9d8983668f7626ba5cb5c2ff8e8883 Mon Sep 17 00:00:00 2001
From: Administrator <15274802129@163.com>
Date: Tue, 09 Dec 2025 17:16:57 +0800
Subject: [PATCH] feat(config): 切换默认配置为生产环境
---
src/main/java/com/xcong/excoin/modules/documentary/dao/FollowFollowerProfitDao.java | 7 +++++++
1 files changed, 7 insertions(+), 0 deletions(-)
diff --git a/src/main/java/com/xcong/excoin/modules/documentary/dao/FollowFollowerProfitDao.java b/src/main/java/com/xcong/excoin/modules/documentary/dao/FollowFollowerProfitDao.java
index 188da7f..eca6dc4 100644
--- a/src/main/java/com/xcong/excoin/modules/documentary/dao/FollowFollowerProfitDao.java
+++ b/src/main/java/com/xcong/excoin/modules/documentary/dao/FollowFollowerProfitDao.java
@@ -1,5 +1,6 @@
package com.xcong.excoin.modules.documentary.dao;
+import java.math.BigDecimal;
import java.util.List;
import org.apache.ibatis.annotations.Param;
@@ -35,5 +36,11 @@
IPage<FollowFollowerProfitEntity> selectTradeFollowerProfitEntitys(Page<FollowFollowerProfitEntity> page,
@Param("memberId")Long memberId);
+
+ int updateFollowerProfitByTradeMemberId(@Param("principal") BigDecimal principal, @Param("profit") BigDecimal profit, @Param("tradeMemberId") Long tradeMemberId, @Param("memberId") Long memberId);
+
+ int selectFollowerCntByTradeMemberId(@Param("tradeMemberId") Long tradeMemberId);
+
+ BigDecimal selectAllFollowerProfit(@Param("tradeMemberId") Long tradeMemberId);
}
--
Gitblit v1.9.1