| | |
| | | <if test="rolename!=null and rolename!=''"> |
| | | and party.role_name=#{rolename} |
| | | </if> |
| | | <if test="usernameParent!=null and usernameParent!=''"> |
| | | and ur.user_name like CONCAT('%', #{usernameParent}, '%') |
| | | </if> |
| | | <if test="symbolType!=null and symbolType!=''"> |
| | | and item.type=#{symbolType} |
| | | </if> |
| | | <if test="userName!=null and userName!=''"> |
| | | and party.user_name=#{userName} or party.user_code=#{userName} |
| | | and (party.user_name=#{userName} or party.user_code=#{userName}) |
| | | </if> |
| | | <if test="userCode!=null and userCode!=''"> |
| | | and party.user_code=#{userCode} |