Commit 4b06de02 authored by yaobaizheng's avatar yaobaizheng

园区字典开发区新增保存、提交

parent 719a6cde
......@@ -111,7 +111,7 @@ public class DevelopmentInfoController extends BaseController {
@ResponseBody
@ApiOperation(value = "开发区删除接口",notes = "rest风格传参,将参数拼接在url上")
@ApiImplicitParam(name = "id", value = "开发区id", type = "Integer")
public boolean deleteDevelopmentInfo(Integer id){
public boolean deleteDevelopmentInfo(@PathVariable Integer id){
return developmentInfoSerivce.removeById(id);
}
......
......@@ -125,7 +125,7 @@ public class ParkInfoController extends BaseController {
@ResponseBody
@ApiOperation(value = "园区删除接口",notes = "rest风格传参,将参数拼接在url上")
@ApiImplicitParam(name = "id", value = "园区id", type = "Integer")
public boolean deleteParkInfo(Integer id){
public boolean deleteParkInfo(@PathVariable Integer id){
return parkInfoService.removeById(id);
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment