|
|
|
@ -62,11 +62,11 @@ public class BigVisController extends BaseController {
|
|
|
|
|
* 企业维护UDI产品数量查询
|
|
|
|
|
*/
|
|
|
|
|
@GetMapping("/cpt/bigVis/company/product/list")
|
|
|
|
|
public BaseResponse companyProduct(FilterReplicateRequest filterReplicateRequest) {
|
|
|
|
|
|
|
|
|
|
public BaseResponse companyProduct(StatCityCorpRequest statCityCorpRequest) {
|
|
|
|
|
|
|
|
|
|
List<StatCorpProductEntity> statCorpProductEntities = statCorpProductService.list(
|
|
|
|
|
new QueryWrapper<StatCorpProductEntity>()
|
|
|
|
|
.eq(StrUtil.isNotEmpty(statCityCorpRequest.getRegionCode()), "cityCode", statCityCorpRequest.getRegionCode())
|
|
|
|
|
.orderByDesc("productCount").last("limit 10"));
|
|
|
|
|
return ResultVOUtils.success(statCorpProductEntities);
|
|
|
|
|
}
|
|
|
|
@ -76,10 +76,19 @@ public class BigVisController extends BaseController {
|
|
|
|
|
* 企业分类
|
|
|
|
|
*/
|
|
|
|
|
@GetMapping("/cpt/bigVis/company/type/list")
|
|
|
|
|
public BaseResponse companyTypeList(FilterReplicateRequest filterReplicateRequest) {
|
|
|
|
|
public BaseResponse companyTypeList(StatCityCorpRequest statCityCorpRequest) {
|
|
|
|
|
|
|
|
|
|
if (StrUtil.isEmpty(statCityCorpRequest.getRegionCode()) || !statCityCorpRequest.getRegionCode().equals("350000")) {
|
|
|
|
|
StatCityCorpEntity statCityCorpEntity = statCityCorpService.getOne(
|
|
|
|
|
new QueryWrapper<StatCityCorpEntity>()
|
|
|
|
|
.eq(StrUtil.isNotEmpty(statCityCorpRequest.getRegionCode()), "cityCode", statCityCorpRequest.getRegionCode())
|
|
|
|
|
.last("limit 1"));
|
|
|
|
|
return ResultVOUtils.success(statCityCorpEntity);
|
|
|
|
|
} else {
|
|
|
|
|
StatCorpTypeEntity statCorpTypeEntity = statCorpTypeService.getOne(new QueryWrapper<StatCorpTypeEntity>().last("limit 1"));
|
|
|
|
|
return ResultVOUtils.success(statCorpTypeEntity);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
StatCorpTypeEntity statCorpTypeEntity = statCorpTypeService.getOne(new QueryWrapper<StatCorpTypeEntity>().last("limit 1"));
|
|
|
|
|
return ResultVOUtils.success(statCorpTypeEntity);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -87,10 +96,19 @@ public class BigVisController extends BaseController {
|
|
|
|
|
* 企业在线统计
|
|
|
|
|
*/
|
|
|
|
|
@GetMapping("/cpt/bigVis/company/online/list")
|
|
|
|
|
public BaseResponse companyOnLineList(FilterReplicateRequest filterReplicateRequest) {
|
|
|
|
|
public BaseResponse companyOnLineList(StatCityCorpRequest statCityCorpRequest) {
|
|
|
|
|
|
|
|
|
|
if (StrUtil.isEmpty(statCityCorpRequest.getRegionCode()) || !statCityCorpRequest.getRegionCode().equals("350000")) {
|
|
|
|
|
StatCityCorpEntity statCityCorpEntity = statCityCorpService.getOne(
|
|
|
|
|
new QueryWrapper<StatCityCorpEntity>()
|
|
|
|
|
.eq(StrUtil.isNotEmpty(statCityCorpRequest.getRegionCode()), "cityCode", statCityCorpRequest.getRegionCode())
|
|
|
|
|
.last("limit 1"));
|
|
|
|
|
return ResultVOUtils.success(statCityCorpEntity);
|
|
|
|
|
} else {
|
|
|
|
|
StatCorpCountEntity statCorpCountEntity = statCorpCountService.getOne(new QueryWrapper<StatCorpCountEntity>().last("limit 1"));
|
|
|
|
|
return ResultVOUtils.success(statCorpCountEntity);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
StatCorpCountEntity statCorpCountEntity = statCorpCountService.getOne(new QueryWrapper<StatCorpCountEntity>().last("limit 1"));
|
|
|
|
|
return ResultVOUtils.success(statCorpCountEntity);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|