<select id="selectCliUserList" parameterType="CliUser" resultMap="CliUserResult"> select u.cli_user_id, u.dept_id, u.cli_user_name, u.cli_account, u.email, u.avatar, u.phonenumber, u.sex, u.status, u.del_flag, u.user_ip, u.user_mac, u.login_date, u.create_by, u.create_time, u.remark, d.dept_name, d.leader from cli_user u left join sys_dept d on u.dept_id = d.dept_id where u.del_flag = '0' <if test="cliUserId != null and cliUserId != 0"> AND u.cli_user_id = #{cliUserId} </if> <if test="cliAccount != null and cliAccount != ''"> AND u.cli_account like concat('%', #{cliAccount}, '%') </if> <if test="status != null and status != ''"> AND u.status = #{status} </if> <if test="phonenumber != null and phonenumber != ''"> AND u.phonenumber like concat('%', #{phonenumber}, '%') </if> <if test="params.beginTime != null and params.beginTime != ''"><!-- 开始时间检索 --> AND date_format(u.create_time,'%y%m%d') >= date_format(#{params.beginTime},'%y%m%d') </if> <if test="params.endTime != null and params.endTime != ''"><!-- 结束时间检索 --> AND date_format(u.create_time,'%y%m%d') <= date_format(#{params.endTime},'%y%m%d') </if> <if test="deptId != null and deptId != 0"> AND (u.dept_id = #{deptId} OR u.dept_id IN ( SELECT t.dept_id FROM sys_dept t WHERE find_in_set(#{deptId}, ancestors) )) </if> <!-- 数据范围过滤 --> ${params.dataScope} </select>详细解释代码意思
时间: 2024-04-15 21:32:03 浏览: 201
MyBatis学习-映射文件标签篇(select、resultMap).rar_alikeett_blueaod_mybatis
这段代码是一个查询语句,用于从数据库中获取用户列表信息。以下是对代码的详细解释:
1. 查询语句的主体部分:
```
select u.cli_user_id, u.dept_id, u.cli_user_name, u.cli_account, u.email, u.avatar, u.phonenumber, u.sex, u.status, u.del_flag, u.user_ip, u.user_mac, u.login_date, u.create_by, u.create_time, u.remark, d.dept_name, d.leader
from cli_user u
left join sys_dept d on u.dept_id = d.dept_id
where u.del_flag = '0'
```
这部分代码定义了要查询的字段,从 `cli_user` 表和 `sys_dept` 表中获取数据。使用左连接 (`left join`) 将这两个表关联起来,条件是 `u.dept_id = d.dept_id`。查询条件 `u.del_flag = '0'` 表示只查询 `del_flag` 字段等于 '0' 的数据。
2. 条件判断部分:
```
<if test="cliUserId != null and cliUserId != 0">
AND u.cli_user_id = #{cliUserId}
</if>
<if test="cliAccount != null and cliAccount != ''">
AND u.cli_account like concat('%', #{cliAccount}, '%')
</if>
<if test="status != null and status != ''">
AND u.status = #{status}
</if>
<if test="phonenumber != null and phonenumber != ''">
AND u.phonenumber like concat('%', #{phonenumber}, '%')
</if>
<if test="params.beginTime != null and params.beginTime != ''"><!-- 开始时间检索 -->
AND date_format(u.create_time,'%y%m%d') >= date_format(#{params.beginTime},'%y%m%d')
</if>
<if test="params.endTime != null and params.endTime != ''"><!-- 结束时间检索 -->
AND date_format(u.create_time,'%y%m%d') <= date_format(#{params.endTime},'%y%m%d')
</if>
<if test="deptId != null and deptId != 0">
AND (u.dept_id = #{deptId} OR u.dept_id IN ( SELECT t.dept_id FROM sys_dept t WHERE find_in_set(#{deptId}, ancestors) ))
</if>
```
这部分代码根据输入的参数进行条件判断,动态地生成查询语句的条件部分。根据不同的条件,会添加不同的筛选条件到查询语句中。例如,如果 `cliUserId` 参数不为 null 且不为 0,则添加 `AND u.cli_user_id = #{cliUserId}` 到查询语句中,以此类推。
3. 数据范围过滤:
```
${params.dataScope}
```
这部分代码是一个占位符,表示动态插入一个数据范围过滤条件。具体的数据范围过滤逻辑可以在 `${params.dataScope}` 处进行替换。
希望以上解释能够帮助到你!如果还有其他问题,请随时提问。
阅读全文