自动化立体仓库 - WMS系统
LSH
2023-07-17 af176761d49e903714e8ebea8faf0e4bb6d6b519
src/main/java/com/zy/asrs/mapper/ReportQueryMapper.java
@@ -64,6 +64,15 @@
   //饼状图
   @Select("select * from asr_loc_use_view")
   public LocChartPie getLocUseRate();
   //立库数据
   @Select("select * from asr_loc_use_view_L")
   public LocChartPie getLocUseRateL();
   //平库数据
   @Select("select * from asr_loc_use_view_P")
   public LocChartPie getLocUseRateP();
   //曲线图
   @Select("select ymd,SUM(sto_qty) inqty,SUM(ret_qty) outqty from asr_sta_inout_view "
         + "where ymd>CONVERT(char(10), DATEADD(DAY,-12,GETDATE()), 120) group by ymd order by ymd")