|
@ -32,7 +32,7 @@ import java.util.TreeMap;
|
|
|
* Created by chenweida on 2017/10/13
|
|
|
*/
|
|
|
@Controller
|
|
|
@RequestMapping(value = "/esstatistics", produces = MediaType.APPLICATION_JSON_UTF8_VALUE, method = {RequestMethod.GET, RequestMethod.POST})
|
|
|
@RequestMapping(value = "/statistics", produces = MediaType.APPLICATION_JSON_UTF8_VALUE, method = {RequestMethod.GET, RequestMethod.POST})
|
|
|
@Api(description = "ES统计查询")
|
|
|
public class EsStatisticsController extends BaseController {
|
|
|
|
|
@ -1720,6 +1720,14 @@ public class EsStatisticsController extends BaseController {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 业务要求:这个接口要是实时的接口
|
|
|
* @param level
|
|
|
* @param area
|
|
|
* @param disease
|
|
|
* @param type
|
|
|
* @return
|
|
|
*/
|
|
|
@RequestMapping("/getPrescriptionTotalHistogram")
|
|
|
@ResponseBody
|
|
|
@ApiOperation("订单统计-中部树状图获取")
|
|
@ -1728,7 +1736,9 @@ public class EsStatisticsController extends BaseController {
|
|
|
@ApiParam(name="disease", value="疾病类型") @RequestParam(required = false)String disease,
|
|
|
@ApiParam(name="type", value="类型1.总量,2.已完成,3.居民取消,4.审核不通过,5.进行中,6.其他原因取消") @RequestParam(required = true)String type){
|
|
|
try{
|
|
|
return write(200, "查询成功", "data", statisticsESService.getPrescriptionTotalHistogram(elasticsearchUtil.changeLevel(Integer.valueOf(level)),area,disease,type));
|
|
|
|
|
|
return write(200, "查询成功", "data", statisticsService.getPrescriptionTotalHistogram(level,area,disease,type));
|
|
|
// return write(200, "查询成功", "data", statisticsESService.getPrescriptionTotalHistogram(elasticsearchUtil.changeLevel(Integer.valueOf(level)),area,disease,type));
|
|
|
} catch (Exception e) {
|
|
|
error(e);
|
|
|
return error(-1, "查询失败");
|