11
This commit is contained in:
@@ -75,7 +75,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||||||
f.review_status, f.review_remark, f.review_by, f.review_time,
|
f.review_status, f.review_remark, f.review_by, f.review_time,
|
||||||
u.name as user_name, u.is_company_user as user_type, u.phone as user_phone
|
u.name as user_name, u.is_company_user as user_type, u.phone as user_phone
|
||||||
from file f
|
from file f
|
||||||
left join app_user u on f.bussinessid = u.user_id
|
left join sys_user su on su.user_id = f.bussinessid and su.del_flag = '0'
|
||||||
|
left join app_user u on u.user_id = COALESCE(su.app_user_id, f.bussinessid)
|
||||||
<where>
|
<where>
|
||||||
f.del_flag = '0'
|
f.del_flag = '0'
|
||||||
<if test="reviewStatus != null and reviewStatus != ''"> and f.review_status = #{reviewStatus}</if>
|
<if test="reviewStatus != null and reviewStatus != ''"> and f.review_status = #{reviewStatus}</if>
|
||||||
|
|||||||
Reference in New Issue
Block a user