Browse Source

修改问题列表状态字段查询问题

tags/v1.0.0^2
wanjing 1 year ago
parent
commit
2d0558ce19
1 changed files with 9 additions and 2 deletions
  1. +9
    -2
      tuoheng-service/tuoheng-admin/src/main/resources/mapper/InspectionFileMapper.xml

+ 9
- 2
tuoheng-service/tuoheng-admin/src/main/resources/mapper/InspectionFileMapper.xml View File

@@ -163,7 +163,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<select id="selectListByInspectIdList" resultType="list" resultMap="InspectionFileResult">
select <include refid="Base_Column_List"/>
from th_inspection_file
where mark = 1 and status in(20,25) and
where mark = 1 and status in(15, 20, 25) and
inspection_id in
<foreach collection="list" item="inspectionId" separator="," open="(" close=")">
#{inspectionId}
@@ -177,7 +177,14 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="1 == 1"> and mark = 1 </if>
<if test="request.inspectionId != null and request.inspectionId != ''"> and inspection_id = #{request.inspectionId} </if>
<if test="request.questionCode != null and request.questionCode != ''"> and question_Code = #{request.questionCode} </if>
<if test="request.status != null and request.status != 0"> and status = #{request.status} </if>
<choose>
<when test="request.status != null and request.status != 0">
and status = #{request.status}
</when>
<otherwise>
and status in (15, 20, 25)
</otherwise>
</choose>
</where>
order by create_time desc
</select>

Loading…
Cancel
Save