2
0

fix: kyc issue

This commit is contained in:
zhangsz
2025-01-17 17:27:00 +08:00
parent bbb9542433
commit c54a9684d7

View File

@@ -6,7 +6,7 @@
SELECT
k.kyc_id,
k.user_id,
u.full_name,
u.full_name as real_name,
k.birth_date,
k.id_type,
k.id_file,
@@ -24,9 +24,6 @@
<if test="item.userId != null and item.userId != ''">
AND k.user_id = #{item.userId}
</if>
<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}
</if>