This commit is contained in:
linfso 2024-09-03 16:48:28 +08:00
parent ffd413917f
commit 03fbe14f19

View File

@ -500,10 +500,6 @@
and a.create_time <![CDATA[ <= ]]> #{params.endCreateTime}
</if>
<if test="params.expireNotSign != null and params.expireNotSign == 1">
and a.estimate_date <![CDATA[ < ]]> now() and bl_sign!='1'
</if>
</where>
@ -561,11 +557,14 @@
a.owner_site_code AS ownerSiteCode,
b.site_name AS ownerSiteName
FROM
sys_user a,emis_site b
WHERE a.del_flag='0' and b.del_flag='0' and a.bl_open='1' and a.owner_site_code=b.site_code
sys_user a,emis_site b,sys_user_post c
WHERE a.del_flag='0' and b.del_flag='0' and a.bl_open='1'
and a.owner_site_code=b.site_code and a.user_id=c.user_id and c.post_id=5
<if test="searchValue != null and searchValue != ''">
and (a.emp_code=#{searchValue} or a.phonenumber=#{searchValue})
</if>
</select>