| @@ -26,7 +26,7 @@ public class CockpitScreenController extends BaseController { | |||||
| @ApiVersion(group = SwaggerConstant.V_1_0_0) | @ApiVersion(group = SwaggerConstant.V_1_0_0) | ||||
| @TenantIgnore | @TenantIgnore | ||||
| @ApiOperation("驾驶舱大屏-统计会员性别") | |||||
| @ApiOperation("驾驶舱大屏-统计会员性别信息") | |||||
| @GetMapping("/countUserGender") | @GetMapping("/countUserGender") | ||||
| public ResultData countUserGender() { | public ResultData countUserGender() { | ||||
| return new ResultData(cockpitScreenService.countUserGender(getTenantInfo())); | return new ResultData(cockpitScreenService.countUserGender(getTenantInfo())); | ||||
| @@ -34,7 +34,7 @@ public class CockpitScreenController extends BaseController { | |||||
| @ApiVersion(group = SwaggerConstant.V_1_0_0) | @ApiVersion(group = SwaggerConstant.V_1_0_0) | ||||
| @TenantIgnore | @TenantIgnore | ||||
| @ApiOperation("驾驶舱大屏-统计商铺") | |||||
| @ApiOperation("驾驶舱大屏-统计商铺信息") | |||||
| @GetMapping("/countShop") | @GetMapping("/countShop") | ||||
| public ResultData countShop() { | public ResultData countShop() { | ||||
| return new ResultData(cockpitScreenService.countShop(getTenantInfo())); | return new ResultData(cockpitScreenService.countShop(getTenantInfo())); | ||||
| @@ -42,7 +42,7 @@ public class CockpitScreenController extends BaseController { | |||||
| @ApiVersion(group = SwaggerConstant.V_1_0_0) | @ApiVersion(group = SwaggerConstant.V_1_0_0) | ||||
| @TenantIgnore | @TenantIgnore | ||||
| @ApiOperation("驾驶舱大屏-统计会员") | |||||
| @ApiOperation("驾驶舱大屏-统计会员信息") | |||||
| @GetMapping("/countUser") | @GetMapping("/countUser") | ||||
| public ResultData countUser(@RequestParam("years") List<Integer> years) { | public ResultData countUser(@RequestParam("years") List<Integer> years) { | ||||
| return new ResultData(cockpitScreenService.countUser(getTenantInfo(), years)); | return new ResultData(cockpitScreenService.countUser(getTenantInfo(), years)); | ||||
| @@ -50,7 +50,7 @@ public class CockpitScreenController extends BaseController { | |||||
| @ApiVersion(group = SwaggerConstant.V_1_0_0) | @ApiVersion(group = SwaggerConstant.V_1_0_0) | ||||
| @TenantIgnore | @TenantIgnore | ||||
| @ApiOperation("驾驶舱大屏-统计触达用户") | |||||
| @ApiOperation("驾驶舱大屏-统计触达用户信息") | |||||
| @GetMapping("/countReachUser") | @GetMapping("/countReachUser") | ||||
| public ResultData countReachUser(@RequestParam("years") List<Integer> years) { | public ResultData countReachUser(@RequestParam("years") List<Integer> years) { | ||||
| return new ResultData(cockpitScreenService.countReachUser(getTenantInfo(), years)); | return new ResultData(cockpitScreenService.countReachUser(getTenantInfo(), years)); | ||||
| @@ -58,7 +58,7 @@ public class CockpitScreenController extends BaseController { | |||||
| @ApiVersion(group = SwaggerConstant.V_1_0_0) | @ApiVersion(group = SwaggerConstant.V_1_0_0) | ||||
| @TenantIgnore | @TenantIgnore | ||||
| @ApiOperation("驾驶舱大屏-车辆数量信息") | |||||
| @ApiOperation("驾驶舱大屏-统计车辆数量信息") | |||||
| @GetMapping("/countCar") | @GetMapping("/countCar") | ||||
| public ResultData countCar(@RequestParam("years") List<Integer> years) { | public ResultData countCar(@RequestParam("years") List<Integer> years) { | ||||
| return new ResultData(cockpitScreenService.countCar(getTenantInfo(), years)); | return new ResultData(cockpitScreenService.countCar(getTenantInfo(), years)); | ||||
| @@ -66,7 +66,7 @@ public class CockpitScreenController extends BaseController { | |||||
| @ApiVersion(group = SwaggerConstant.V_1_0_0) | @ApiVersion(group = SwaggerConstant.V_1_0_0) | ||||
| @TenantIgnore | @TenantIgnore | ||||
| @ApiOperation("驾驶舱大屏-订单趋势") | |||||
| @ApiOperation("驾驶舱大屏-统计订单趋势信息") | |||||
| @GetMapping("/countOrderTrend") | @GetMapping("/countOrderTrend") | ||||
| public ResultData countOrderTrend(@RequestParam("year") Integer year) { | public ResultData countOrderTrend(@RequestParam("year") Integer year) { | ||||
| return new ResultData(cockpitScreenService.countOrderTrend(getTenantInfo(), year)); | return new ResultData(cockpitScreenService.countOrderTrend(getTenantInfo(), year)); | ||||
| @@ -74,7 +74,7 @@ public class CockpitScreenController extends BaseController { | |||||
| @ApiVersion(group = SwaggerConstant.V_1_0_0) | @ApiVersion(group = SwaggerConstant.V_1_0_0) | ||||
| @TenantIgnore | @TenantIgnore | ||||
| @ApiOperation("驾驶舱大屏-基本信息") | |||||
| @ApiOperation("驾驶舱大屏-统计基本数据信息") | |||||
| @GetMapping("/countBasic") | @GetMapping("/countBasic") | ||||
| public ResultData countBasic() { | public ResultData countBasic() { | ||||
| return new ResultData(cockpitScreenService.countBasic()); | return new ResultData(cockpitScreenService.countBasic()); | ||||