Browse Source

居民认证添加完善居民信息状态标识

master
wanggongfeng 3 years ago
parent
commit
d2320add1a
  1. 2
      epdc-cloud-user/src/main/resources/mapper/UserDao.xml

2
epdc-cloud-user/src/main/resources/mapper/UserDao.xml

@ -662,7 +662,7 @@ WHERE 1 = 1
epdc_user u
where
u.del_flag = '0'
and (u.IDENTITY_NO is null or u.IDENTITY_NO = '')
and ((u.IDENTITY_NO is null or u.IDENTITY_NO = '') or u.status = '1')
<if test="startTime != '' and endTime != ''">and u.CREATED_TIME between #{startTime} and #{endTime}</if>
<if test="state != '' and state != null">and u.state = #{state}</if>
<if test="realName != '' and realName != null">and u.real_name like '%${realName}%'</if>

Loading…
Cancel
Save