|
@ -0,0 +1,16 @@
|
|
|
|
package com.yihu.wlyy.web.statistic;
|
|
|
|
|
|
|
|
import io.swagger.annotations.Api;
|
|
|
|
import org.springframework.http.MediaType;
|
|
|
|
import org.springframework.stereotype.Controller;
|
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
|
import org.springframework.web.bind.annotation.RequestMethod;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Created by chenweida on 2017/10/13.
|
|
|
|
*/
|
|
|
|
@Controller
|
|
|
|
@RequestMapping(value = "/esstatistics", produces = MediaType.APPLICATION_JSON_UTF8_VALUE,method = {RequestMethod.GET,RequestMethod.POST})
|
|
|
|
@Api(description = "ES统计查询")
|
|
|
|
public class EsStatisticsController {
|
|
|
|
}
|