From 647bb58f12704efd0472e4703645453b7712704f Mon Sep 17 00:00:00 2001
From: zj <1772600164@qq.com>
Date: Thu, 16 May 2024 15:55:45 +0800
Subject: [PATCH] 1
---
target/classes/mapper/SitePayMapper.xml | 6 +++---
src/main/java/com/nq/service/impl/UserWithdrawServiceImpl.java | 2 +-
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/main/java/com/nq/service/impl/UserWithdrawServiceImpl.java b/src/main/java/com/nq/service/impl/UserWithdrawServiceImpl.java
index 64192e0..0db100b 100644
--- a/src/main/java/com/nq/service/impl/UserWithdrawServiceImpl.java
+++ b/src/main/java/com/nq/service/impl/UserWithdrawServiceImpl.java
@@ -114,7 +114,7 @@
}
SiteSetting siteSetting = this.iSiteSettingService.getSiteSetting();
if ((new BigDecimal(amt)).compareTo(new BigDecimal(siteSetting.getWithMinAmt().intValue())) == -1) {
- return ServerResponse.createByErrorMsg("Analog users cannot withdraw funds" + siteSetting.getWithMinAmt(),request);
+ return ServerResponse.createByErrorMsg("最低提款金额:" + siteSetting.getWithMinAmt(),request);
}
int with_time_begin = siteSetting.getWithTimeBegin().intValue();
int with_time_end = siteSetting.getWithTimeEnd().intValue();
diff --git a/target/classes/mapper/SitePayMapper.xml b/target/classes/mapper/SitePayMapper.xml
index 40d6c7b..ec85606 100644
--- a/target/classes/mapper/SitePayMapper.xml
+++ b/target/classes/mapper/SitePayMapper.xml
@@ -18,7 +18,7 @@
<result column="is_lock" property="isLock"/>
<result column="total_price" property="totalPrice"/>
<result column="assets_type" property="assetsType"/>
-
+ <result column="bank_number" property="bankNumber"/>
</resultMap>
@@ -219,7 +219,7 @@
<select id="listByAdmin" parameterType="string" resultMap="BaseResultMap">
SELECT
- <include refid="Base_Column_List"/>
+ *
FROM site_pay
<where>
<if test="channelType != null and channelType != '' ">
@@ -232,7 +232,7 @@
<select id="getPayInfo" resultMap="BaseResultMap">
SELECT
- <include refid="Base_Column_List"/>
+ *
FROM site_pay WHERE is_show = 0
</select>
--
Gitblit v1.9.3