From 5143b11ed01f3a14eef7b821080116016c05a201 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=A2=A8=E5=A4=A7=E5=8F=94?= <494979559@qq.com> Date: Fri, 13 Sep 2024 15:42:48 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8F=90=E7=8E=B0=E9=99=90=E5=88=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/ruoyi/common/core/domain/entity/SmUser.java | 12 ++++++++++++ .../service/impl/TransactionBillServiceImpl.java | 1 + .../java/com/ruoyi/ss/user/mapper/SmUserMapper.xml | 9 +++++++++ 3 files changed, 22 insertions(+) diff --git a/smart-switch-ruoyi/smart-switch-common/src/main/java/com/ruoyi/common/core/domain/entity/SmUser.java b/smart-switch-ruoyi/smart-switch-common/src/main/java/com/ruoyi/common/core/domain/entity/SmUser.java index d0759f0e..9326d081 100644 --- a/smart-switch-ruoyi/smart-switch-common/src/main/java/com/ruoyi/common/core/domain/entity/SmUser.java +++ b/smart-switch-ruoyi/smart-switch-common/src/main/java/com/ruoyi/common/core/domain/entity/SmUser.java @@ -17,6 +17,7 @@ import com.ruoyi.common.core.domain.BaseEntity; import org.springframework.format.annotation.DateTimeFormat; import javax.validation.constraints.NotNull; +import javax.validation.constraints.Size; /** * 普通用户信息对象 sm_user @@ -166,4 +167,15 @@ public class SmUser extends BaseEntity @ApiModelProperty("是否已经实名认证") @JsonView(JsonViewProfile.App.class) private Boolean isReal; + + @Excel(name = "是否限制提现") + @ApiModelProperty("是否限制提现") + @JsonView(JsonViewProfile.App.class) + private Boolean limitWithdraw; + + @Excel(name = "限制提现原因") + @ApiModelProperty("限制提现原因") + @JsonView(JsonViewProfile.App.class) + @Size(max = 200, message = "限制提现原因长度不能超过200个字符") + private String limitWithdrawReason; } diff --git a/smart-switch-service/src/main/java/com/ruoyi/ss/transactionBill/service/impl/TransactionBillServiceImpl.java b/smart-switch-service/src/main/java/com/ruoyi/ss/transactionBill/service/impl/TransactionBillServiceImpl.java index 3f75ed0a..c9647833 100644 --- a/smart-switch-service/src/main/java/com/ruoyi/ss/transactionBill/service/impl/TransactionBillServiceImpl.java +++ b/smart-switch-service/src/main/java/com/ruoyi/ss/transactionBill/service/impl/TransactionBillServiceImpl.java @@ -410,6 +410,7 @@ public class TransactionBillServiceImpl implements TransactionBillService, After ServiceUtil.assertion(user == null, "用户不存在"); ServiceUtil.assertion(user.getIsReal() == null || !user.getIsReal(), "用户未实名认证,无法提现"); + ServiceUtil.assertion(user.getLimitWithdraw() != null && user.getLimitWithdraw(), "您被限制提现:" + user.getLimitWithdrawReason()); // 判断今天提现成功和正在审核中的提现是否超过限额 String dailyLimitStr = sysConfigService.selectConfigByKey(ConfigKey.DAILY_WITHDRAW_AMOUNT.getKey()); diff --git a/smart-switch-service/src/main/java/com/ruoyi/ss/user/mapper/SmUserMapper.xml b/smart-switch-service/src/main/java/com/ruoyi/ss/user/mapper/SmUserMapper.xml index c695ddd5..88aed127 100644 --- a/smart-switch-service/src/main/java/com/ruoyi/ss/user/mapper/SmUserMapper.xml +++ b/smart-switch-service/src/main/java/com/ruoyi/ss/user/mapper/SmUserMapper.xml @@ -45,6 +45,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" su.real_id_card, su.real_phone, su.is_real, + su.limit_withdraw, + su.limit_withdraw_reason, (select sum(stb.money) from sm_transaction_bill stb where stb.user_id = su.user_id and stb.type = '1' and stb.status = '2') as recharge_amount, (select sum(stb.arrival_amount) from sm_transaction_bill stb where stb.user_id = su.user_id and stb.type = '2' and stb.status = '14') as with_drawl_amount, (select sum(stb.arrival_amount) from sm_transaction_bill stb where stb.mch_id = su.user_id and stb.type = '1' and stb.status = '2') as total_income @@ -66,6 +68,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" and su.remark like concat('%', #{remark}, '%') and withdraw_service_type = #{withdrawServiceType} and service_type = #{serviceType} + and limit_withdraw = #{limitWithdraw} and su.user_id in ( select sdt.tenant_id @@ -159,6 +162,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" real_id_card, real_phone, is_real, + limit_withdraw, + limit_withdraw_reason, #{userName}, @@ -192,6 +197,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" #{realIdCard}, #{realPhone}, #{isReal}, + #{limitWithdraw}, + #{limitWithdrawReason}, @@ -235,6 +242,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" real_id_card = #{realIdCard}, real_phone = #{realPhone}, is_real = #{isReal}, + limit_withdraw = #{limitWithdraw}, + limit_withdraw_reason = #{limitWithdrawReason}, where user_id = #{userId}