#
Junjie
2025-02-14 ac4341ea6b66ae02427d39d35f41d42d78b2eb2e
zy-asrs-wms/src/main/resources/mapper/asrs/TaskDetlLogMapper.xml
@@ -7,4 +7,20 @@
        where detl_id = #{detlId}
    </select>
    <select id="getInformationTopIn" resultType="com.zy.asrs.wms.asrs.entity.statistics.InformationTop">
        select matnr,maktx,sum(anfme) count from view_today_task_detl_log
        where task_sts = 100
        group by matnr,anfme,maktx
        order by count desc
        limit 0,#{top}
    </select>
    <select id="getInformationTopOut" resultType="com.zy.asrs.wms.asrs.entity.statistics.InformationTop">
        select matnr,maktx,sum(anfme) count from view_today_task_detl_log
        where task_sts = 200
        group by matnr,anfme,maktx
        order by count desc
        limit 0,#{top}
    </select>
</mapper>