| | |
| | | <if test="user.account!=null and user.account != ''"> |
| | | and account like concat('%',#{user.account},'%') |
| | | </if> |
| | | <if test="user.jurisdiction!=null and user.jurisdiction != ''"> |
| | | and jurisdiction like concat('%',#{user.jurisdiction},'%') |
| | | </if> |
| | | <if test="user.realName!=null and user.realName != ''"> |
| | | and real_name like concat('%',#{user.real_name},'%') |
| | | and real_name like concat('%',#{user.realName},'%') |
| | | </if> |
| | | <if test="user.userType!=null and user.userType != ''"> |
| | | and user_type = #{user.userType} |
| | |
| | | </foreach> |
| | | ) |
| | | </if> |
| | | ORDER BY id |
| | | ORDER BY id desc |
| | | </select> |
| | | |
| | | <select id="selectUserPagetxl" resultMap="userResultMaps"> |