package com.javaweb.geo.mapper;
|
|
import com.javaweb.geo.domain.CollectStatistics;
|
import java.util.List;
|
|
/**
|
* 统计汇总Mapper接口
|
*
|
* @author cxy
|
* @date 2022-12-26
|
*/
|
public interface CollectStatisticsMapper
|
{
|
/**
|
* 查询统计汇总
|
*
|
* @param ids 统计汇总ID
|
* @return 统计汇总
|
*/
|
public CollectStatistics selectCollectStatisticsById(String ids);
|
|
/**
|
* 查询统计汇总列表
|
*
|
* @param collectStatistics 统计汇总
|
* @return 统计汇总集合
|
*/
|
public List<CollectStatistics> selectCollectStatisticsList(CollectStatistics collectStatistics);
|
|
/**
|
* 新增统计汇总
|
*
|
* @param collectStatistics 统计汇总
|
* @return 结果
|
*/
|
public int insertCollectStatistics(CollectStatistics collectStatistics);
|
|
/**
|
* 修改统计汇总
|
*
|
* @param collectStatistics 统计汇总
|
* @return 结果
|
*/
|
public int updateCollectStatistics(CollectStatistics collectStatistics);
|
|
/**
|
* 删除统计汇总
|
*
|
* @param ids 统计汇总ID
|
* @return 结果
|
*/
|
public int deleteCollectStatisticsById(String ids);
|
|
/**
|
* 批量删除统计汇总
|
*
|
* @param idss 需要删除的数据ID
|
* @return 结果
|
*/
|
public int deleteCollectStatisticsByIds(String[] idss);
|
|
/**
|
* 删除表中所有数据
|
*/
|
void emptyTable();
|
|
/**
|
* 统计汇总,企业名称、项目数量、勘探点数量、异常项目、异常数量、进尺总量
|
* @return
|
*/
|
List<CollectStatistics> selectCollectStatistic();
|
}
|