|
@@ -235,4 +235,14 @@ public class GenreSetPushController {
|
|
|
return ajax;
|
|
|
}
|
|
|
|
|
|
+ @GetMapping(value = "/Stationinformation")
|
|
|
+ @ApiOperation(value = "首页各场站信息", notes = "首页各场站信息")
|
|
|
+ @ApiImplicitParams({
|
|
|
+ @ApiImplicitParam(name = "wpId", value = "场站编号", required = true, dataType = "string", paramType = "query")})
|
|
|
+ @ResponseBody
|
|
|
+ public AjaxResult getinformation(@RequestParam("wpId") String wpId) {
|
|
|
+ AjaxResult ajax= genreSetPushService.Stationinformation(wpId);
|
|
|
+ return ajax;
|
|
|
+ }
|
|
|
+
|
|
|
}
|