This commit is contained in:
zt
2025-03-13 18:55:03 +08:00
parent 324771bada
commit bbd5f4980c
2 changed files with 12 additions and 11 deletions

View File

@ -29,9 +29,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<select id="userReplacementCardRecordListPage" resultType="com.ruoyi.wgz.bo.res.WgzReplacementCardRecordRes">
SELECT
a.*,
b.username,
b.avatar_name,
c.username as userName
b.username as auditorname,
b.avatar_name as auditorHead,
c.username as userName,
c.avatar_name
FROM
wgz_reissueacard a
LEFT JOIN bgt_user b ON (a.auditor_user_id = b.user_id and b.del_flag = 0)