| | |
| | | import com.lf.server.controller.all.BaseController; |
| | | import com.lf.server.entity.all.ResponseMsg; |
| | | import com.lf.server.entity.bs.MpipelineEntity; |
| | | import com.lf.server.entity.show.OneMapEntity; |
| | | import com.lf.server.service.show.OneMapService; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiOperation; |
| | |
| | | List<String> resList = aMapOfPipelineService.dataStorageCount(); |
| | | return success(resList); |
| | | } |
| | | |
| | | /** |
| | | * 数据大类统计 |
| | | * Statistics of large categories of data |
| | | */ |
| | | @SysLog() |
| | | @ApiOperation(value = "数据大类统计") |
| | | @GetMapping("/countLargeCategories") |
| | | public ResponseMsg<Object> statisticalDataCategories() { |
| | | List<String> resList = aMapOfPipelineService.statisticalDataCategories(); |
| | | return success(resList); |
| | | } |
| | | |
| | | /** |
| | | * 数据服务类型统计 |
| | | * Data service type statistics |
| | | * */ |
| | | @SysLog() |
| | | @ApiOperation(value = "数据服务类型统计") |
| | | @GetMapping("/countDataServiceType") |
| | | public ResponseMsg<Object> statisticalDataServiceType() { |
| | | List<String> resList = aMapOfPipelineService.statisticalDataServiceType(); |
| | | return success(resList); |
| | | } |
| | | |
| | | /** |
| | | * 登录次数统计 |
| | | * Number of logins |
| | | * */ |
| | | @SysLog() |
| | | @ApiOperation(value = "登录次数统计") |
| | | @GetMapping("/countLoginNumber") |
| | | public ResponseMsg<Object> loginNumberStatistics() { |
| | | List<String> resList = aMapOfPipelineService.loginNumberStatistics(); |
| | | return success(resList); |
| | | } |
| | | |
| | | |
| | | /** |
| | | * 数据统计 |
| | |
| | | @SysLog() |
| | | @ApiOperation(value = "工程项目目录") |
| | | @GetMapping("/selectProjectType") |
| | | public ResponseMsg<Object> selectProjectType1() { |
| | | List<String> resList = aMapOfPipelineService.selectProjectType1(); |
| | | public ResponseMsg<Object> selectProjectType() { |
| | | List<OneMapEntity> resList = aMapOfPipelineService.selectProjectType1(); |
| | | return success(resList); |
| | | } |
| | | |