|  |  | 
 |  |  |    //饼状图 | 
 |  |  |    @Select("select * from asr_loc_use_view") | 
 |  |  |    public LocChartPie getLocUseRate(); | 
 |  |  |    @Select("select * from asr_loc_A_use_view") | 
 |  |  |    public LocChartPie getLocUseRateA(); | 
 |  |  |    @Select("select * from asr_loc_B_use_view") | 
 |  |  |    public LocChartPie getLocUseRateB(); | 
 |  |  |    @Select("select * from asr_loc_C_use_view") | 
 |  |  |    public LocChartPie getLocUseRateC(); | 
 |  |  |    @Select("select * from asr_loc_D_use_view") | 
 |  |  |    public LocChartPie getLocUseRateD(); | 
 |  |  |    @Select("select * from asr_loc_E_use_view") | 
 |  |  |    public LocChartPie getLocUseRateE(); | 
 |  |  |  | 
 |  |  |    //立库数据 | 
 |  |  |    @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") |