2
0

feat: add real name column while kyc

This commit is contained in:
zhangsz
2025-01-16 11:53:44 +08:00
parent d5e3533d2d
commit 807fc6cbda
5 changed files with 8 additions and 9 deletions

View File

@@ -6,7 +6,7 @@
SELECT
k.kyc_id,
k.user_id,
u.user_name,
u.full_name,
k.birth_date,
k.id_type,
k.id_file,
@@ -24,11 +24,8 @@
<if test="item.userId != null and item.userId != ''">
AND k.user_id = #{item.userId}
</if>
<if test="item.userName != null and item.userName != ''">
AND u.user_name like concat('%', #{item.userName}, '%')
</if>
<if test="item.userName != null and item.userName != ''">
AND u.user_name like concat('%', #{item.userName}, '%')
<if test="item.fullName != null and item.fullName != ''">
AND u.full_name like concat('%', #{item.fullName}, '%')
</if>
<if test="item.status != null and item.status != ''">
AND k.`status` = #{item.status}