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