Commit bb10ffac authored by yaobaizheng's avatar yaobaizheng

立业人接口路径

parent 95be58db
...@@ -176,10 +176,10 @@ public class ApiController extends BaseController { ...@@ -176,10 +176,10 @@ public class ApiController extends BaseController {
return getDataTable(carrierPageVos); return getDataTable(carrierPageVos);
} }
@GetMapping("/detail/{id}") @GetMapping("/land/detail/{id}")
@ApiOperation(value = "土地详情信息", notes = "rest风格传参,将参数拼接在url上") @ApiOperation(value = "土地详情信息", notes = "rest风格传参,将参数拼接在url上")
@ApiImplicitParam(name = "id", value = "土地id", type = "Integer") @ApiImplicitParam(name = "id", value = "土地id", type = "Integer")
public LandDetailVo detail(@PathVariable Integer id) { public LandDetailVo landDetail(@PathVariable Integer id) {
return landInfoService.detail(id); return landInfoService.detail(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