|
@@ -17,14 +17,13 @@ public class WindpowerstationPGController {
|
|
|
private WindpowerstationPGService windpowerstationPGService;
|
|
|
@GetMapping(value = "/list")
|
|
|
@ResponseBody
|
|
|
- @ApiOperation(value = "区域查询", notes = "区域查询")
|
|
|
+ @ApiOperation(value = "场站查询", notes = "场站查询")
|
|
|
@ApiImplicitParams({
|
|
|
- @ApiImplicitParam(name = "id", value = "区域编号", required = false, dataType = "string", paramType = "query"),
|
|
|
@ApiImplicitParam(name = "companyid", value = "公司编号", required = false, dataType = "string", paramType = "query"),
|
|
|
@ApiImplicitParam(name = "regionid", value = "公司编号", required = false, dataType = "string", paramType = "query")})
|
|
|
- public AjaxResult findList(@RequestParam("id") String id,String companyid, String regionid) {
|
|
|
+ public AjaxResult findList(@RequestParam("companyid") String companyid, @RequestParam("regionid") String regionid) {
|
|
|
|
|
|
- AjaxResult ajax=windpowerstationPGService.stationlsPG(id,companyid,regionid);
|
|
|
+ AjaxResult ajax=windpowerstationPGService.stationlsPG(companyid,regionid);
|
|
|
|
|
|
return ajax;
|
|
|
}
|