|
|
@@ -27,7 +27,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<include refid="selectSysDeptConfigLogVo"/>
|
|
|
<where>
|
|
|
<if test="deptId != null "> and dept_id = #{deptId}</if>
|
|
|
- <if test="logType != null "> and log_type = #{logType}</if>
|
|
|
+ <if test="logType != null and logType > 0"> and log_type = #{logType}</if>
|
|
|
+ <if test="logType != null and logType == 0"> and log_type in (0,2)</if>
|
|
|
<if test="operateType != null "> and operate_type = #{operateType}</if>
|
|
|
<if test="num != null "> and num = #{num}</if>
|
|
|
<if test="firstNum != null "> and first_num = #{firstNum}</if>
|