| | |
| | | return CommonResult.success(statisticService.useEverydayStatic(companyId)); |
| | | } |
| | | |
| | | |
| | | @ApiOperation(value = "大屏一天使用量统计") |
| | | @ApiImplicitParams({ |
| | | @ApiImplicitParam(paramType = "query",name = "companyId",dataType = "long",required = false,value = "企业ID") |
| | | }) |
| | | @GetMapping("/dayUseStatistic") |
| | | @Anonymous |
| | | public CommonResult dayUseStatistic(Long companyId){ |
| | | return CommonResult.success(statisticService.dayUseStatistic(companyId)); |
| | | } |
| | | |
| | | @ApiOperation(value = "大屏企业统计") |
| | | @ApiImplicitParams({ |
| | | @ApiImplicitParam(paramType = "query",name = "type",dataType = "long",required = false,value = "企业类型") |
| | | }) |
| | | @GetMapping("/companyMessage") |
| | | public CommonResult companyMessage(Long type){ |
| | | return CommonResult.success(statisticService.companyMessage(type)); |
| | | } |
| | | |
| | | |
| | | @ApiOperation(value = "一周使用频繁的危化品数量统计") |
| | | @ApiImplicitParams({ |
| | | @ApiImplicitParam(paramType = "query",name = "companyId",dataType ="long",required = false,value = "公司id") |