#
Junjie
2024-09-26 ac45194a5ff830a0f355a76a202e1d4f1d15a35b
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>