|
@ -64,9 +64,6 @@ public class EsStatisticsController extends BaseController {
|
|
|
* 指标按间隔统计 增量
|
|
|
* 按年度统计是根据前端传的 startDate
|
|
|
*
|
|
|
* 备注:注解为Deprecated是因为前端代码全局搜索没有,并且本地代码没有调用该方法
|
|
|
* 视为无效(2017-11-21)
|
|
|
*
|
|
|
* @param startDate 起始日期
|
|
|
* @param endDate 结束时间
|
|
|
* @param interval 时间间隔
|
|
@ -77,7 +74,6 @@ public class EsStatisticsController extends BaseController {
|
|
|
*/
|
|
|
@RequestMapping(value = "/interval")
|
|
|
@ResponseBody
|
|
|
@Deprecated
|
|
|
public String indexInterval(@RequestParam(required = true) String startDate,
|
|
|
@RequestParam(required = true) String endDate,
|
|
|
@RequestParam(required = true) String interval,
|
|
@ -108,9 +104,6 @@ public class EsStatisticsController extends BaseController {
|
|
|
/**
|
|
|
* 指标期间 增长量
|
|
|
*
|
|
|
* 备注:注解为Deprecated是因为前端代码全局搜索没有,并且本地代码没有调用该方法
|
|
|
* 视为无效(2017-11-21)
|
|
|
*
|
|
|
* @param startDate
|
|
|
* @param endDate
|
|
|
* @param area
|
|
@ -120,7 +113,6 @@ public class EsStatisticsController extends BaseController {
|
|
|
*/
|
|
|
@RequestMapping("/increment")
|
|
|
@ResponseBody
|
|
|
@Deprecated
|
|
|
public String getIndexIncrement(@RequestParam(required = true) String startDate,
|
|
|
@RequestParam(required = true) String endDate,
|
|
|
@RequestParam(required = true) String area,
|
|
@ -148,9 +140,6 @@ public class EsStatisticsController extends BaseController {
|
|
|
/**
|
|
|
* 指标截止日期累积量 增量的累加接口
|
|
|
*
|
|
|
* 备注:注解为Deprecated是因为前端代码全局搜索没有,并且本地代码没有调用该方法
|
|
|
* 视为无效(2017-11-21)
|
|
|
*
|
|
|
* @param startDate 开始时间
|
|
|
* @param endDate 结束时间 1
|
|
|
* @param area 父code
|
|
@ -161,7 +150,6 @@ public class EsStatisticsController extends BaseController {
|
|
|
*/
|
|
|
@RequestMapping("/total")
|
|
|
@ResponseBody
|
|
|
@Deprecated
|
|
|
public String getIndexTotal(
|
|
|
@RequestParam(required = true) String startDate,
|
|
|
@RequestParam(required = true) String endDate,
|