Przeglądaj źródła

修改问题列表查询条件

tags/v1.0.0^2
wanjing 1 rok temu
rodzic
commit
9f48b73977
1 zmienionych plików z 8 dodań i 10 usunięć
  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 Wyświetl plik

@@ -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=")">

Ładowanie…
Anuluj
Zapisz