| | |
| | | real_flow_layer_count AS ( SELECT flow_card_id, layer, count(*) AS real_count FROM |
| | | hollow_big_storage_cage_details t WHERE state = 100 GROUP BY flow_card_id, layer ), |
| | | damage_flow_layer_count AS ( SELECT process_id AS flow_card_id, technology_number AS layer, count(*) as |
| | | damage_count FROM damage GROUP BY process_id, technology_number ), |
| | | damage_count FROM damage where type in(8,9) GROUP BY process_id, technology_number ), |
| | | lack_flow_layer_count AS ( |
| | | SELECT |
| | | t.flow_card_id, |
| | |
| | | desc |
| | | </if> |
| | | </select> |
| | | <select id="queryHollowbigStorageCageDetail" resultType="com.mes.base.entity.vo.BigStorageVO"> |
| | | SELECT SLOT, COUNT(1) AS COUNT |
| | | FROM HOLLOW_BIG_STORAGE_CAGE_DETAILS |
| | | where state in (100, 102, 103, 104) |
| | | group by SLOT |
| | | ORDER BY SLOT |
| | | </select> |
| | | <select id="querySlotMaxSequence" resultType="com.mes.hollow.entity.HollowBigStorageCageDetails"> |
| | | select max(sequence) as sequence, device_id, slot |
| | | from hollow_big_storage_cage_details |
| | | where (flow_card_id, total_layer, layer, virtual_slot) = |
| | | (#{flowCardId}, #{totalLayer}, #{layer}, #{virtualSlot}) |
| | | and state in (0, 100, 102, 103, 104) |
| | | group by device_id, slot |
| | | order by sequence |
| | | </select> |
| | | </mapper> |