|
|
|
@ -1,12 +1,8 @@
|
|
|
|
|
package cn.iocoder.yudao.module.system.controller.admin.bigviewdata; |
|
|
|
|
|
|
|
|
|
import cn.iocoder.yudao.module.system.controller.admin.bigviewdata.vo.BigViewEnterpriseCountGroup; |
|
|
|
|
import cn.iocoder.yudao.module.system.controller.admin.bigviewdata.vo.StatusCountVO; |
|
|
|
|
import cn.iocoder.yudao.module.system.controller.admin.home.vo.HomeCountResVO; |
|
|
|
|
import cn.iocoder.yudao.module.system.controller.admin.home.vo.HomeGroupCountVO; |
|
|
|
|
import cn.iocoder.yudao.framework.common.pojo.CommonResult; |
|
|
|
|
import cn.iocoder.yudao.module.system.controller.admin.home.vo.HomeSelectVO; |
|
|
|
|
import cn.iocoder.yudao.module.system.service.bigviewdata.BigViewDataService; |
|
|
|
|
import cn.iocoder.yudao.module.system.service.home.HomeService; |
|
|
|
|
import io.swagger.v3.oas.annotations.Operation; |
|
|
|
|
import io.swagger.v3.oas.annotations.tags.Tag; |
|
|
|
|
import lombok.extern.slf4j.Slf4j; |
|
|
|
|
import org.springframework.validation.annotation.Validated; |
|
|
|
@ -15,8 +11,17 @@ import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
|
|
import org.springframework.web.bind.annotation.RestController; |
|
|
|
|
|
|
|
|
|
import javax.annotation.Resource; |
|
|
|
|
|
|
|
|
|
import java.util.List; |
|
|
|
|
|
|
|
|
|
import static cn.iocoder.yudao.framework.common.pojo.CommonResult.success; |
|
|
|
|
|
|
|
|
|
import cn.iocoder.yudao.module.system.controller.admin.bigviewdata.vo.BigViewEnterpriseCountGroup; |
|
|
|
|
import cn.iocoder.yudao.module.system.controller.admin.bigviewdata.vo.NameCountVO; |
|
|
|
|
import cn.iocoder.yudao.module.system.controller.admin.bigviewdata.vo.StatusCountVO; |
|
|
|
|
import cn.iocoder.yudao.module.system.controller.admin.home.vo.HomeGroupCountVO; |
|
|
|
|
import cn.iocoder.yudao.module.system.service.bigviewdata.BigViewDataService; |
|
|
|
|
|
|
|
|
|
@Tag(name = "管理后台 - app首页统计") |
|
|
|
|
@RestController |
|
|
|
|
@RequestMapping("/system/big-view-data") |
|
|
|
@ -26,36 +31,41 @@ public class BigViewDataController {
|
|
|
|
|
|
|
|
|
|
@Resource |
|
|
|
|
private BigViewDataService bigViewDataService; |
|
|
|
|
@Resource |
|
|
|
|
private HomeService homeService; |
|
|
|
|
|
|
|
|
|
@GetMapping("/getLeftFirst") |
|
|
|
|
private HomeCountResVO leftFirst(HomeSelectVO homeSelectVO) { |
|
|
|
|
return homeService.appCount1(homeSelectVO); |
|
|
|
|
@Operation(summary = "大屏左一数据") |
|
|
|
|
public CommonResult<List<NameCountVO>> leftFirst(HomeSelectVO homeSelectVO) { |
|
|
|
|
return success(bigViewDataService.getLeftFirst(homeSelectVO)); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@GetMapping("/getLeftSecond") |
|
|
|
|
private BigViewEnterpriseCountGroup getLeftSecond(HomeSelectVO homeSelectVO) { |
|
|
|
|
@Operation(summary = "大屏左二数据") |
|
|
|
|
public BigViewEnterpriseCountGroup getLeftSecond(HomeSelectVO homeSelectVO) { |
|
|
|
|
return bigViewDataService.getLeftSecond(homeSelectVO); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@GetMapping("/getLeftThird") |
|
|
|
|
private List<HomeGroupCountVO> getLeftThird(HomeSelectVO homeSelectVO) { |
|
|
|
|
@Operation(summary = "大屏左三数据") |
|
|
|
|
public List<HomeGroupCountVO> getLeftThird(HomeSelectVO homeSelectVO) { |
|
|
|
|
return bigViewDataService.getLeftThird(homeSelectVO); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@GetMapping("/getRightFist") |
|
|
|
|
private List<HomeGroupCountVO> getRightFist(HomeSelectVO homeSelectVO) { |
|
|
|
|
@Operation(summary = "大屏右一数据") |
|
|
|
|
public List<HomeGroupCountVO> getRightFist(HomeSelectVO homeSelectVO) { |
|
|
|
|
return bigViewDataService.getRightFist(homeSelectVO); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@GetMapping("/getRightSecond") |
|
|
|
|
private List<StatusCountVO> getRightSecond(HomeSelectVO homeSelectVO) { |
|
|
|
|
@Operation(summary = "大屏右二数据") |
|
|
|
|
public List<StatusCountVO> getRightSecond(HomeSelectVO homeSelectVO) { |
|
|
|
|
return bigViewDataService.getRightSecond(homeSelectVO); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@GetMapping("/getRightThird") |
|
|
|
|
private List<HomeGroupCountVO> getRightThird(HomeSelectVO homeSelectVO) { |
|
|
|
|
@Operation(summary = "大屏右三数据") |
|
|
|
|
public List<HomeGroupCountVO> getRightThird(HomeSelectVO homeSelectVO) { |
|
|
|
|
return bigViewDataService.getRightThird(homeSelectVO); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|