管道基础大数据平台系统开发-【后端】-Server
13693261870
2024-02-28 7185f65d9e4087fef18567365ea621845fe2659e
src/main/java/com/lf/server/mapper/sys/ReportMapper.java
@@ -1,5 +1,6 @@
package com.lf.server.mapper.sys;
import com.lf.server.entity.ctrl.CoordinateEntity;
import com.lf.server.entity.ctrl.CountEntity;
import com.lf.server.entity.sys.ReportEntity;
import org.apache.ibatis.annotations.Mapper;
@@ -105,6 +106,13 @@
    public List<CountEntity> countSizes();
    /**
     * 按文件类型统计
     *
     * @return
     */
    public List<CountEntity> countSizesByType();
    /**
     * 服务调用量统计
     *
     * @return
@@ -117,4 +125,26 @@
     * @return
     */
    public List<CountEntity> countOperates();
    /**
     * 按项目统计数据
     *
     * @return
     */
    public List<CountEntity> countSizesByPrj();
    /**
     * 按项目统计钻孔数据
     *
     * @return
     */
    public List<CountEntity> countExplorationPoints();
    /**
     * 根据项目编码查询钻孔数据坐标点
     *
     * @return
     * @date
     */
    public List<CoordinateEntity> selectExplorationPoints(String code);
}