|
@@ -29,6 +29,8 @@ public class GenreSetPushController {
|
|
|
private GenreSetPushService genreSetPushService;
|
|
|
|
|
|
@GetMapping("/queryAgcValues")
|
|
|
+ @ApiOperation(value = "获取AGC信息", notes = "获取AGC信息")
|
|
|
+ @ApiImplicitParams({})
|
|
|
public AjaxResult queryAgcValuesNew() throws Exception {
|
|
|
|
|
|
AjaxResult ajax=genreSetPushService.getAgcValues();
|
|
@@ -36,6 +38,8 @@ public class GenreSetPushController {
|
|
|
return ajax;
|
|
|
}
|
|
|
@GetMapping("/queryPowerInfo")
|
|
|
+ @ApiOperation(value = "获取驾驶舱功率曲线图和电量柱状图信息", notes = "获取驾驶舱功率曲线图和电量柱状图信息")
|
|
|
+ @ApiImplicitParams({ @ApiImplicitParam(name = "id", value = "对象编号", required = true, dataType = "string", paramType = "query")})
|
|
|
public AjaxResult queryPowerInfo(@RequestParam("id") String id){
|
|
|
|
|
|
AjaxResult ajax=genreSetPushService.findPowerInfo(id);
|
|
@@ -44,6 +48,8 @@ public class GenreSetPushController {
|
|
|
}
|
|
|
|
|
|
@GetMapping("/queryBasicDataInfo")
|
|
|
+ @ApiOperation(value = "获取驾驶舱基础信息", notes = "获取驾驶舱基础信息")
|
|
|
+ @ApiImplicitParams({ @ApiImplicitParam(name = "id", value = "对象编号", required = true, dataType = "string", paramType = "query")})
|
|
|
public AjaxResult queryBasicDataInfo(@RequestParam("id") String id){
|
|
|
|
|
|
AjaxResult ajax=genreSetPushService.findBasicDataInfo(id);
|
|
@@ -52,6 +58,11 @@ public class GenreSetPushController {
|
|
|
}
|
|
|
|
|
|
@GetMapping("/queryDayInfo")
|
|
|
+ @ApiOperation(value = "获取钻取指标日信息", notes = "获取钻取指标日信息")
|
|
|
+ @ApiImplicitParams({
|
|
|
+ @ApiImplicitParam(name = "id", value = "钻取对象编号", required = true, dataType = "string", paramType = "query"),
|
|
|
+ @ApiImplicitParam(name = "targetName", value = "指标名称", required = true, dataType = "string", paramType = "query")})
|
|
|
+
|
|
|
public AjaxResult queryDayInfo(@RequestParam("id")String id,@RequestParam("targetName")String targetName){
|
|
|
|
|
|
AjaxResult ajax=genreSetPushService.findDayInfo(id,targetName);
|
|
@@ -60,6 +71,11 @@ public class GenreSetPushController {
|
|
|
}
|
|
|
|
|
|
@GetMapping("/queryMonthInfo")
|
|
|
+ @ApiOperation(value = "获取钻取指标月信息", notes = "获取钻取指标月信息")
|
|
|
+ @ApiImplicitParams({
|
|
|
+ @ApiImplicitParam(name = "id", value = "钻取对象编号", required = true, dataType = "string", paramType = "query"),
|
|
|
+ @ApiImplicitParam(name = "targetName", value = "指标名称", required = true, dataType = "string", paramType = "query")})
|
|
|
+
|
|
|
public AjaxResult queryMonthInfo(@RequestParam("id")String id,@RequestParam("targetName")String targetName){
|
|
|
|
|
|
AjaxResult ajax=genreSetPushService.findMonthInfo(id,targetName);
|
|
@@ -68,6 +84,11 @@ public class GenreSetPushController {
|
|
|
}
|
|
|
|
|
|
@GetMapping("/queryYearInfo")
|
|
|
+ @ApiOperation(value = "获取钻取指标年信息", notes = "获取钻取指标年信息")
|
|
|
+ @ApiImplicitParams({
|
|
|
+ @ApiImplicitParam(name = "id", value = "钻取对象编号", required = true, dataType = "string", paramType = "query"),
|
|
|
+ @ApiImplicitParam(name = "targetName", value = "指标名称", required = true, dataType = "string", paramType = "query")})
|
|
|
+
|
|
|
public AjaxResult queryYearInfo(@RequestParam("id")String id,@RequestParam("targetName")String targetName){
|
|
|
|
|
|
AjaxResult ajax=genreSetPushService.findYearInfo(id,targetName);
|
|
@@ -76,6 +97,10 @@ public class GenreSetPushController {
|
|
|
}
|
|
|
|
|
|
@GetMapping("/queryProjectPlanPower")
|
|
|
+ @ApiOperation(value = "获取计划发电量钻取信息", notes = "获取计划发电量钻取信息")
|
|
|
+ @ApiImplicitParams({
|
|
|
+ @ApiImplicitParam(name = "id", value = "钻取对象编号", required = true, dataType = "string", paramType = "query")})
|
|
|
+
|
|
|
public AjaxResult findProjectPlanPower(@RequestParam("id") String id){
|
|
|
|
|
|
AjaxResult ajax=genreSetPushService.findProjectPlanPower(id);
|
|
@@ -84,6 +109,11 @@ public class GenreSetPushController {
|
|
|
}
|
|
|
|
|
|
@GetMapping("/queryGLDetail")
|
|
|
+ @ApiOperation(value = "获取功率曲线钻取信息", notes = "获取功率曲线钻取信息")
|
|
|
+ @ApiImplicitParams({
|
|
|
+ @ApiImplicitParam(name = "id", value = "钻取对象编号", required = true, dataType = "string", paramType = "query"),
|
|
|
+ @ApiImplicitParam(name = "targetName", value = "指标名称", required = true, dataType = "string", paramType = "query")})
|
|
|
+
|
|
|
public AjaxResult queryGLDetail(@RequestParam("id")String id,@RequestParam("targetName")String targetName){
|
|
|
|
|
|
AjaxResult ajax=genreSetPushService.findGLDetail(id,targetName);
|
|
@@ -92,6 +122,10 @@ public class GenreSetPushController {
|
|
|
}
|
|
|
|
|
|
@GetMapping("/queryWeatherRealDay5Info")
|
|
|
+ @ApiOperation(value = "未来5天天气预报功能", notes = "未来5天天气预报功能")
|
|
|
+ @ApiImplicitParams({
|
|
|
+ @ApiImplicitParam(name = "wpId", value = "场站编号", required = true, dataType = "string", paramType = "query")})
|
|
|
+
|
|
|
public AjaxResult queryWeatherRealDay5Info(@RequestParam("wpId")String wpId){
|
|
|
|
|
|
AjaxResult ajax=genreSetPushService.getWeatherRealDay5Info(wpId);
|
|
@@ -100,6 +134,10 @@ public class GenreSetPushController {
|
|
|
}
|
|
|
|
|
|
@GetMapping("/queryForecastwindspeedInfo")
|
|
|
+ @ApiOperation(value = "预测风速电量", notes = "预测风速电量功能")
|
|
|
+ @ApiImplicitParams({
|
|
|
+ @ApiImplicitParam(name = "wpId", value = "场站编号", required = true, dataType = "string", paramType = "query")})
|
|
|
+
|
|
|
public AjaxResult queryForecastwindspeedInfo(@RequestParam("wpId")String wpId){
|
|
|
|
|
|
AjaxResult ajax=genreSetPushService.getForecastwindspeedInfo(wpId);
|