更新
This commit is contained in:
parent
c770cbbea1
commit
cd806c9ac0
@ -656,6 +656,7 @@ FROM
|
||||
/*WHEN ((ii.status = 0 OR ii.status = 2) AND has_status_1 OR has_status_0_or_null)THEN '检测中'*/
|
||||
WHEN ((ii.status = 0 OR ii.status = 2))THEN '检测中'
|
||||
WHEN (ii.status = 0 OR ii.status = 2) AND COALESCE(max_iwn_status, 0) = 0 THEN '待检测'
|
||||
WHEN (ii.status = 1 ) AND ii.is_pass = 0 THEN '退办理'
|
||||
ELSE '未知状态'
|
||||
END AS status,
|
||||
ii.is_pass,
|
||||
@ -711,6 +712,9 @@ FROM
|
||||
<when test="query.chooseStatus == '3'.toString()">
|
||||
t.status = '已完成'
|
||||
</when>
|
||||
<when test="query.chooseStatus == '4'.toString()">
|
||||
t.status = '退办理'
|
||||
</when>
|
||||
</choose>
|
||||
</where>
|
||||
ORDER BY t.create_time DESC;
|
||||
|
Loading…
Reference in New Issue
Block a user