Ver código fonte

根据条件分页查询角色数据修改

gao.qiang 1 ano atrás
pai
commit
356b560cbc

+ 3 - 0
base-system/src/main/resources/mapper/system/SysRoleMapper.xml

@@ -33,6 +33,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
     <select id="selectRoleList" parameterType="SysRole" resultMap="SysRoleResult">
 		<include refid="selectRoleVo"/>
 		where r.del_flag = '1'
+		<if test="status == null || status == ''">
+			AND r.status = '1'
+		</if>
 		<if test="roleId != null and roleId != 0">
 			AND r.role_id = #{roleId}
 		</if>