#
luxiaotao1123
2020-11-17 4eea87e9d12f148f6a43f6c9e70f2b1f372d4c64
src/main/java/com/zy/asrs/mapper/ReportQueryMapper.java
@@ -1,5 +1,6 @@
package com.zy.asrs.mapper;
import com.zy.asrs.domain.vo.LocChartPie;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Select;
import org.springframework.stereotype.Repository;
@@ -23,4 +24,13 @@
            "order by Min(wm.io_time) asc\n")
    List<Map<String, Object>> queryPakinRep();
    @Select("select * from asr_loc_use_view")
    LocChartPie getLocUseRate();
    @Select("select count(1) as totalWrk from asr_wrk_mast_log where crn_no = #{crnNo}")
    Integer getTotalWrkByCrnId(Integer crnNo);
    @Select("select count(1) as totalLoc from asr_loc_mast")
    Integer getTotalLocByCrnId();
}