|
|
|
@ -600,6 +600,12 @@ |
|
|
|
<if test = "query.inspectionTypeNo != null and query.inspectionTypeNo != ''"> |
|
|
|
AND a.inspection_type_no = #{query.inspectionTypeNo} |
|
|
|
</if> |
|
|
|
<if test = "query.inspectionTypeNos != null and query.inspectionTypeNos.size > 0"> |
|
|
|
AND a.inspection_type_no in |
|
|
|
<foreach item="item" collection="query.inspectionTypeNos" open="(" separator="," close=")"> |
|
|
|
#{item} |
|
|
|
</foreach> |
|
|
|
</if> |
|
|
|
<if test = "query.inspectionResult != null and query.inspectionResult != ''"> |
|
|
|
AND a.inspection_result = #{query.inspectionResult} |
|
|
|
</if> |
|
|
|
|