管道基础大数据平台系统开发-【后端】-Server
xing
2023-02-21 9ca3c6ef60688f0231b75698afaafc10b12435a7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
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();
 
 
}