提现限制
This commit is contained in:
parent
7f9727c246
commit
5143b11ed0
|
@ -17,6 +17,7 @@ import com.ruoyi.common.core.domain.BaseEntity;
|
||||||
import org.springframework.format.annotation.DateTimeFormat;
|
import org.springframework.format.annotation.DateTimeFormat;
|
||||||
|
|
||||||
import javax.validation.constraints.NotNull;
|
import javax.validation.constraints.NotNull;
|
||||||
|
import javax.validation.constraints.Size;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 普通用户信息对象 sm_user
|
* 普通用户信息对象 sm_user
|
||||||
|
@ -166,4 +167,15 @@ public class SmUser extends BaseEntity
|
||||||
@ApiModelProperty("是否已经实名认证")
|
@ApiModelProperty("是否已经实名认证")
|
||||||
@JsonView(JsonViewProfile.App.class)
|
@JsonView(JsonViewProfile.App.class)
|
||||||
private Boolean isReal;
|
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;
|
||||||
}
|
}
|
||||||
|
|
|
@ -410,6 +410,7 @@ public class TransactionBillServiceImpl implements TransactionBillService, After
|
||||||
|
|
||||||
ServiceUtil.assertion(user == null, "用户不存在");
|
ServiceUtil.assertion(user == null, "用户不存在");
|
||||||
ServiceUtil.assertion(user.getIsReal() == null || !user.getIsReal(), "用户未实名认证,无法提现");
|
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());
|
String dailyLimitStr = sysConfigService.selectConfigByKey(ConfigKey.DAILY_WITHDRAW_AMOUNT.getKey());
|
||||||
|
|
|
@ -45,6 +45,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
su.real_id_card,
|
su.real_id_card,
|
||||||
su.real_phone,
|
su.real_phone,
|
||||||
su.is_real,
|
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.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.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
|
(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"
|
||||||
<if test="remark != null and remark != ''"> and su.remark like concat('%', #{remark}, '%')</if>
|
<if test="remark != null and remark != ''"> and su.remark like concat('%', #{remark}, '%')</if>
|
||||||
<if test="withdrawServiceType != null and withdrawServiceType != ''"> and withdraw_service_type = #{withdrawServiceType}</if>
|
<if test="withdrawServiceType != null and withdrawServiceType != ''"> and withdraw_service_type = #{withdrawServiceType}</if>
|
||||||
<if test="serviceType != null and serviceType != ''"> and service_type = #{serviceType}</if>
|
<if test="serviceType != null and serviceType != ''"> and service_type = #{serviceType}</if>
|
||||||
|
<if test="limitWithdraw != null "> and limit_withdraw = #{limitWithdraw}</if>
|
||||||
<if test="tenantDeviceId != null">
|
<if test="tenantDeviceId != null">
|
||||||
and su.user_id in (
|
and su.user_id in (
|
||||||
select sdt.tenant_id
|
select sdt.tenant_id
|
||||||
|
@ -159,6 +162,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
<if test="realIdCard != null">real_id_card,</if>
|
<if test="realIdCard != null">real_id_card,</if>
|
||||||
<if test="realPhone != null">real_phone,</if>
|
<if test="realPhone != null">real_phone,</if>
|
||||||
<if test="isReal != null">is_real,</if>
|
<if test="isReal != null">is_real,</if>
|
||||||
|
<if test="limitWithdraw != null">limit_withdraw,</if>
|
||||||
|
<if test="limitWithdrawReason != null">limit_withdraw_reason,</if>
|
||||||
</trim>
|
</trim>
|
||||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||||
<if test="userName != null and userName != ''">#{userName},</if>
|
<if test="userName != null and userName != ''">#{userName},</if>
|
||||||
|
@ -192,6 +197,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
<if test="realIdCard != null">#{realIdCard},</if>
|
<if test="realIdCard != null">#{realIdCard},</if>
|
||||||
<if test="realPhone != null">#{realPhone},</if>
|
<if test="realPhone != null">#{realPhone},</if>
|
||||||
<if test="isReal != null">#{isReal},</if>
|
<if test="isReal != null">#{isReal},</if>
|
||||||
|
<if test="limitWithdraw != null">#{limitWithdraw},</if>
|
||||||
|
<if test="limitWithdrawReason != null">#{limitWithdrawReason},</if>
|
||||||
</trim>
|
</trim>
|
||||||
</insert>
|
</insert>
|
||||||
|
|
||||||
|
@ -235,6 +242,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
<if test="realIdCard != null">real_id_card = #{realIdCard},</if>
|
<if test="realIdCard != null">real_id_card = #{realIdCard},</if>
|
||||||
<if test="realPhone != null">real_phone = #{realPhone},</if>
|
<if test="realPhone != null">real_phone = #{realPhone},</if>
|
||||||
<if test="isReal != null">is_real = #{isReal},</if>
|
<if test="isReal != null">is_real = #{isReal},</if>
|
||||||
|
<if test="limitWithdraw != null">limit_withdraw = #{limitWithdraw},</if>
|
||||||
|
<if test="limitWithdrawReason != null">limit_withdraw_reason = #{limitWithdrawReason},</if>
|
||||||
</trim>
|
</trim>
|
||||||
where user_id = #{userId}
|
where user_id = #{userId}
|
||||||
</update>
|
</update>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user