Commit 719a6cde authored by yaobaizheng's avatar yaobaizheng

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

parent c365aa6b
......@@ -107,5 +107,13 @@ public class DevelopmentInfoController extends BaseController {
return developmentInfoSerivce.getDevelopmentSaveInfo(id,getUserInfo().getUserId());
}
@GetMapping("/deleteDevelopmentInfo/{id}")
@ResponseBody
@ApiOperation(value = "开发区删除接口",notes = "rest风格传参,将参数拼接在url上")
@ApiImplicitParam(name = "id", value = "开发区id", type = "Integer")
public boolean deleteDevelopmentInfo(Integer id){
return developmentInfoSerivce.removeById(id);
}
}
......@@ -119,4 +119,13 @@ public class ParkInfoController extends BaseController {
public ParkInfoAllSaveVO parkSaveInfo(@PathVariable Integer id) {
return parkInfoService.getParkSaveInfo(id);
}
@GetMapping("/deleteParkInfo/{id}")
@ResponseBody
@ApiOperation(value = "园区删除接口",notes = "rest风格传参,将参数拼接在url上")
@ApiImplicitParam(name = "id", value = "园区id", type = "Integer")
public boolean deleteParkInfo(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