| | |
| | | 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> |