| | |
| | | /** |
| | | * 下载量统计 |
| | | * Download statistics |
| | | * <p>type类型:1-Shp文件,2-专题图,3-源数据,4-业务数据,5-管道分析,6-统计报告<p/> |
| | | * <p>type类型:1-Shp文件,2-专题图,3-元数据,4-业务数据,5-管道分析,6-统计报告<p/> |
| | | */ |
| | | @SysLog() |
| | | @ApiOperation(value = "下载量统计") |
| | |
| | | List<String> resList = aMapOfPipelineService.selectProjectInfo(projectName); |
| | | return success(resList); |
| | | } |
| | | /** |
| | | * 项目文件列表查询 |
| | | * Project file list query |
| | | */ |
| | | @SysLog() |
| | | @ApiOperation(value = "项目文件列表查询") |
| | | @GetMapping("/selectProjectFileList") |
| | | public ResponseMsg<Object> selectProjectFileList() { |
| | | List<String> resList = aMapOfPipelineService.selectProjectFileList(); |
| | | return success(resList); |
| | | } |
| | | |
| | | /** |
| | | * 单个项目存储量 |
| | | * |
| | | * @param projectCode 项目代码 |
| | | * @return {@link ResponseMsg}<{@link Object}> |
| | | */ |
| | | @SysLog() |
| | | @ApiOperation(value = "单个项目存储量") |
| | | @GetMapping("/countProjectStorage") |
| | | public ResponseMsg<Object> countProjectStorage(@RequestParam("projectCode") String projectCode) { |
| | | List<String> resList = aMapOfPipelineService.countProjectStorage(projectCode); |
| | | return success(resList); |
| | | } |
| | | |
| | | |
| | | |
| | | |
| | | } |