1.增加账号实名认证接口

2.去除自动提现
This commit is contained in:
张松
2025-01-02 14:27:33 +08:00
parent a1ba6d9e76
commit 2accd47a9c
9 changed files with 216 additions and 18 deletions

View File

@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.sqx.modules.app.mapper.UserInfoMapper">
<resultMap id="BaseResultMap" type="com.sqx.modules.app.entity.UserInfo">
<id property="id" column="id" jdbcType="BIGINT"/>
<result property="userId" column="user_id" jdbcType="BIGINT"/>
<result property="certName" column="cert_name" jdbcType="VARCHAR"/>
<result property="certNo" column="cert_no" jdbcType="VARCHAR"/>
<result property="updateTime" column="update_time" jdbcType="TIMESTAMP"/>
</resultMap>
<sql id="Base_Column_List">
id,user_id,cert_name,
cert_no,update_time
</sql>
</mapper>