|
|
|
@ -15,6 +15,7 @@ import com.glxp.api.service.stat.StatNmapCountService;
|
|
|
|
|
import com.glxp.api.service.stat.StatProductCategoryService;
|
|
|
|
|
import com.glxp.api.util.DateUtil;
|
|
|
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
|
|
|
|
|
import javax.annotation.Resource;
|
|
|
|
|
import java.util.Date;
|
|
|
|
@ -23,6 +24,7 @@ import java.util.List;
|
|
|
|
|
/**
|
|
|
|
|
* 国家库相关
|
|
|
|
|
*/
|
|
|
|
|
@RestController
|
|
|
|
|
public class BigNmapVisController extends BaseController {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -45,7 +47,7 @@ public class BigNmapVisController extends BaseController {
|
|
|
|
|
public BaseResponse getCityCompany() {
|
|
|
|
|
|
|
|
|
|
List<StatNmapCorpEntity> statNmapCorpEntities = statNmapCorpService.list(
|
|
|
|
|
new QueryWrapper<StatNmapCorpEntity>().orderByDesc("count").last("limit 10"));
|
|
|
|
|
new QueryWrapper<StatNmapCorpEntity>().orderByDesc("count").last("limit 8"));
|
|
|
|
|
return ResultVOUtils.success(statNmapCorpEntities);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -56,17 +58,17 @@ public class BigNmapVisController extends BaseController {
|
|
|
|
|
@GetMapping("/cpt/bigVis/nmap/category")
|
|
|
|
|
public BaseResponse getnmapCategory() {
|
|
|
|
|
List<StatProductCategoryEntity> statNmapCorpEntities = statProductCategoryService.list(
|
|
|
|
|
new QueryWrapper<StatProductCategoryEntity>().orderByDesc("nmapCount").last("limit 10"));
|
|
|
|
|
new QueryWrapper<StatProductCategoryEntity>().orderByDesc("nmapCount").last("limit 8"));
|
|
|
|
|
return ResultVOUtils.success(statNmapCorpEntities);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 获取追溯产品品种次数排行
|
|
|
|
|
*/
|
|
|
|
|
@GetMapping("/cpt/bigVis/nmap/category")
|
|
|
|
|
@GetMapping("/cpt/bigVis/cpt/category")
|
|
|
|
|
public BaseResponse getCptCategory() {
|
|
|
|
|
List<StatProductCategoryEntity> statNmapCorpEntities = statProductCategoryService.list(
|
|
|
|
|
new QueryWrapper<StatProductCategoryEntity>().orderByDesc("cptCount").last("limit 10"));
|
|
|
|
|
new QueryWrapper<StatProductCategoryEntity>().orderByDesc("cptCount").last("limit 8"));
|
|
|
|
|
return ResultVOUtils.success(statNmapCorpEntities);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -104,6 +106,10 @@ public class BigNmapVisController extends BaseController {
|
|
|
|
|
/**
|
|
|
|
|
* 获取最近追溯查询统计数
|
|
|
|
|
*/
|
|
|
|
|
@GetMapping("/cpt/")
|
|
|
|
|
public BaseResponse getLastSearch() {
|
|
|
|
|
return ResultVOUtils.success();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|