管道基础大数据平台系统开发-【后端】-Server
13693261870
2024-03-21 e55b5aaddc111abc8ae61260eb20fddf6b089c07
src/main/java/com/lf/server/mapper/sys/ReportMapper.java
@@ -147,4 +147,148 @@
     * @date
     */
    public List<CoordinateEntity> selectExplorationPoints(String code);
    /**
     * 按项目统计数字高程模型面积
     *
     * @return
     */
    public List<CountEntity> countDemAreaByPrj();
    /**
     * 按项目统计三维地形模型面积
     *
     * @return
     */
    public List<CountEntity> countMptAreaByPrj();
    /**
     * 按项目统计倾斜摄影模型面积
     *
     * @return
     */
    public List<CountEntity> countOsgbAreaByPrj();
    /**
     * 按项目统计激光点云模型面积
     *
     * @return
     */
    public List<CountEntity> countLasAreaByPrj();
    /**
     * 按项目统计勘察工点个数
     *
     * @return
     */
    public List<CountEntity> countSurveyWorksiteByPrj();
    /**
     * 按项目统计勘察报告个数
     *
     * @return
     */
    public List<CountEntity> countExplorationReportByPrj();
    /**
     * 按项目统计崩塌个数
     *
     * @return
     */
    public List<CountEntity> countCollapseByPrj();
    /**
     * 按项目统计泥石流个数
     *
     * @return
     */
    public List<CountEntity> countDebrisFlowByPrj();
    /**
     * 按项目统计地面塌陷个数
     *
     * @return
     */
    public List<CountEntity> countGroundCollapseByPrj();
    /**
     * 按项目统计高陡边坡个数
     *
     * @return
     */
    public List<CountEntity> countHighSteepSlopeByPrj();
    /**
     * 按项目统计滑坡个数
     *
     * @return
     */
    public List<CountEntity> countLandSlideByPrj();
    /**
     * 按项目统计不稳定斜坡个数
     *
     * @return
     */
    public List<CountEntity> countUnstableSlopeByPrj();
    /**
     * 按项目统计水毁个数
     *
     * @return
     */
    public List<CountEntity> countWaterDamageByPrj();
    /**
     * 统计数字线划图面积
     *
     * @return
     */
    public List<CountEntity> countDlgAreaByPrj();
    /**
     * 按项目统计数字正射影像图面积
     *
     * @return
     */
    public List<CountEntity> countDomAreaByPrj();
    /**
     * 按项目统计管线长度
     *
     * @return
     */
    public List<CountEntity> countLineLength();
    /**
     * 按项目统计勘探点个数
     *
     * @return
     */
    public List<CountEntity> countExplorationPointByPrj();
    /**
     * 按项目统计三维地质模型面积
     *
     * @return
     */
    public List<CountEntity> countGeoModelAreaByPrj();
    /**
     * 按项目统计地灾点个数
     *
     * @return
     */
    public List<CountEntity> countGeologicHazardByPrj();
    /**
     * 项目数据分类统计
     *
     * @param code
     * @return
     */
    public List<CountEntity> countVariousDataByPrj(String code);
}