package com.lf.server.mapper.show;
|
|
|
import org.apache.ibatis.annotations.Mapper;
|
import org.springframework.stereotype.Repository;
|
|
import java.util.List;
|
|
@Mapper
|
@Repository
|
public interface OneMapMapper {
|
|
|
/**
|
* 项目类别conut
|
*
|
* @return {@link List}<{@link String}>
|
*/
|
public List<String> projectCategoryCount();
|
|
/**
|
* 项目位置conut
|
*
|
* @return {@link List}<{@link String}>
|
*/
|
public List<String> projectLocationCount();
|
|
/**
|
* 国家维度conut
|
*
|
* @return {@link List}<{@link String}>
|
*/
|
public List<String> countryDimensionCount();
|
|
/**
|
* 省维conut
|
*
|
* @return {@link List}<{@link String}>
|
*/
|
public List<String> provinceDimensionCount();
|
|
/**
|
* 数据存储conut
|
*
|
* @return {@link List}<{@link String}>
|
*/
|
public List<String> dataStorageCount();
|
|
/**
|
* 文件格式conut
|
*
|
* @return {@link List}<{@link String}>
|
*/
|
public List<String> fileFormatCount();
|
|
/**
|
* 数据申请conut
|
*
|
* @return {@link List}<{@link String}>
|
*/
|
public List<String> dataApplyCount();
|
|
/**
|
* 数据访问conut
|
*
|
* @return {@link List}<{@link String}>
|
*/
|
public List<String> dataVisitCount();
|
|
|
}
|