瀏覽代碼

修改问题列表查询条件

tags/v1.0.0^2
wanjing 1 年之前
父節點
當前提交
9f48b73977
共有 1 個檔案被更改,包括 8 行新增10 行删除
  1. +8
    -10
      tuoheng-service/tuoheng-admin/src/main/resources/mapper/InspectionFileMapper.xml

+ 8
- 10
tuoheng-service/tuoheng-admin/src/main/resources/mapper/InspectionFileMapper.xml 查看文件

@@ -197,16 +197,14 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="1 == 1"> and tif.mark = 1 </if>
<if test="request.key != null and request.key != ''"> and (ti.code like concat('%', #{request.key}, '%') or ti.name like concat('%', #{request.key}, '%')) </if>
<if test="request.questionCode != null and request.questionCode != ''"> and tif.question_Code = #{request.questionCode} </if>
<if test="request.status != null">
<choose>
<when test="request.status != 0">
and tif.status = #{request.status}
</when>
<otherwise>
and tif.status in (15, 20, 25)
</otherwise>
</choose>
</if>
<choose>
<when test="request.status != null and request.status != 0">
and tif.status = #{request.status}
</when>
<otherwise>
and tif.status in (15, 20, 25)
</otherwise>
</choose>
<if test="request.deptIdList != null and request.deptIdList.size() > 0">
and ti.dept_id in
<foreach item="deptId" collection="request.deptIdList" open="(" separator="," close=")">

Loading…
取消
儲存