接口相关修改

master
anthonywj 1 year ago
parent 019d87cb7a
commit 065afe5e36

@ -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);
}

@ -48,5 +48,37 @@ public class StatCityCorpEntity implements Serializable {
@TableField(value = "remark")
private String remark;
/**
*
*/
@TableField(value = "manuCount")
private Integer manuCount;
/**
*
*/
@TableField(value = "hospCount")
private Integer hospCount;
/**
*
*/
@TableField(value = "supCount")
private Integer supCount;
@TableField(value = "totalCount")
private Integer totalCount;
@TableField(value = "onlineCount")
private Integer onlineCount;
@TableField(value = "offlineCount")
private Integer offlineCount;
@TableField(value = "errCount")
private Integer errCount;
private static final long serialVersionUID = 1L;
}

@ -66,5 +66,27 @@ public class StatCorpProductEntity implements Serializable {
@TableField(value = "remark")
private String remark;
/**
*
*/
@TableField(value = "cityCode")
private String cityCode;
/**
*
*/
@TableField(value = "provinceCode")
private String provinceCode;
/**
*
*/
@TableField(value = "tyshxydm")
private String tyshxydm;
private static final long serialVersionUID = 1L;
}

Loading…
Cancel
Save