其他分享
首页 > 其他分享> > echarts后台

echarts后台

作者:互联网

@ApiOperation(value = "直属线路变电数量", notes = "")
    @RequestMapping(value = {"/getEchartsZSXLBDSLData"}, method = RequestMethod.POST)
    @Log(operationType = "查询", operationName = "直属线路变电数量")
    public ResultMsg getEchartsZSXLBDSLData(HttpServletRequest request) {
    	JSONObject json  = substationDao.getEchartsZSXLBDSLData(request);
    	return new ResultMsgFactory().produce(json);
    }
    
    @ApiOperation(value = "电网运行事件统计", notes = "")
    @RequestMapping(value = {"/getEchartsDWYXSJTJData"}, method = RequestMethod.POST)
    @Log(operationType = "查询", operationName = "电网运行事件统计")
    public ResultMsg getEchartsDWYXSJTJData(HttpServletRequest request) {
    	JSONObject json  = substationDao.getEchartsDWYXSJTJData(request);
    	return new ResultMsgFactory().produce(json);
    }
    
    @ApiOperation(value 

标签:getEchartsZSXLBDSLData,request,value,ApiOperation,json,getEchartsDWYXSJTJData,后台
来源: https://blog.csdn.net/lhw244/article/details/115242660